:root{
  --ink:#0f1218;
  --ink-2:#161a22;
  --ink-3:#1e2430;
  --paper:#ffffff;
  --muted:#aeb6c4;
  --blue:#2aa8ff;
  --blue-2:#54baff;
  --shadow:0 10px 30px rgba(0,0,0,.25);

  /* polish helpers */
  --ring: rgba(255,255,255,.10);
  --ring2: rgba(255,255,255,.16);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--paper);
  background:var(--ink);
  font-family:'Roboto',system-ui,-apple-system,Segoe UI,Helvetica,Arial,sans-serif;
  line-height:1.6;
  letter-spacing:.2px;
}
a{color:var(--blue); text-decoration:none}
a:hover{color:var(--blue-2)}

/* Header / Nav */
header{
  position:fixed; top:0; left:0; right:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 24px;
  transition: box-shadow .25s, background .25s;
  background:linear-gradient(to bottom, rgba(15,18,24,.9), rgba(15,18,24,.6));
  backdrop-filter:saturate(160%) blur(6px);
}
header.scrolled{ box-shadow: var(--shadow); background:rgba(15,18,24,.95) }
.brand{display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.8px}
.brand .logo{
  width:44px; height:44px; border-radius:10px;
  background:radial-gradient(80% 100% at 50% 0%, var(--blue) 0%, #0b6bb3 60%, #083a66 100%);
  display:grid; place-items:center;
  box-shadow:inset 0 0 0 2px rgba(255,255,255,.08);
  font-family:Montserrat,sans-serif;
  font-weight:800; font-size:18px;
}
nav ul{display:flex; gap:24px; list-style:none; margin:0; padding:0}
nav a{color:#e7edf6; font-weight:600}
nav a:hover{color:#fff}
.cta{margin-left:20px; background:var(--blue); color:#00111e; padding:10px 16px; border-radius:12px; font-weight:800}
.cta:hover{background:var(--blue-2)}
.menu-btn{display:none}

/* Hero Slider */
.hero{
  position:relative;
  height:92vh;
  min-height:540px;
  display:grid;
  place-items:center;
  overflow:hidden;
  padding:0;
}
.hero-slider{ position:absolute; inset:0; z-index:0; }
.hero-slide{
  position:absolute; inset:0;
  opacity:0;
  transform:scale(1.02);
  transition: opacity .6s ease, transform 1.2s ease;
}
.hero-slide.active{ opacity:1; transform:scale(1.0); }
.hero-slide::before{
  content:""; position:absolute; inset:0;
  background: var(--bg) center/cover no-repeat;
  filter:saturate(85%);
}
.hero-slide::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.35), rgba(15,18,24,.70));
  pointer-events:none;
}
.hero-inner{ position:relative; max-width:1200px; padding:0 24px; text-align:center; z-index:2 }
.eyebrow{ font-family:Montserrat,sans-serif; text-transform:uppercase; letter-spacing:3px; color:#e2f3ff; opacity:.85 }
.hero h1{
  margin:.45em 0 .35em;
  font-family:Montserrat,sans-serif;
  font-weight:800;
  line-height:1.05;
  font-size:clamp(36px,5vw,56px);
  text-shadow:0 6px 22px rgba(0,0,0,.45);
}
.hero p{
  color:#d4deea;
  max-width:860px;
  margin:0 auto 26px;
  font-size:clamp(16px,1.4vw,20px);
}
.hero-meta{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin:10px 0 0 }
.tag{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  color:#e9f4ff;
  background:rgba(0,0,0,.18);
  font-weight:700; font-size:14px;
}
.btns{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:18px }
.btn{
  display:inline-block;
  padding:14px 18px;
  border-radius:14px;
  font-weight:800;
  box-shadow:0 10px 22px rgba(0,0,0,.22);
}
.btn.primary{
  background:var(--blue);
  color:#00111e;
  box-shadow:0 14px 30px rgba(42,168,255,.18), 0 10px 22px rgba(0,0,0,.25);
}
.btn.primary:hover{ background:var(--blue-2) }
.btn.ghost{
  border:1px solid rgba(255,255,255,.2);
  color:#ecf5ff;
  background:rgba(0,0,0,.12);
}
.btn.ghost:hover{ border-color:rgba(255,255,255,.5) }

/* Slider controls */
.hero-controls{
  position:absolute; left:0; right:0; bottom:22px; z-index:3;
  display:flex; align-items:center; justify-content:center;
  gap:12px; padding:0 24px;
}
.dots{ display:flex; gap:10px; align-items:center }
.dot{
  width:10px; height:10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.45);
  background:rgba(255,255,255,.15);
  cursor:pointer;
}
.dot.active{ background:var(--blue); border-color:transparent; transform:scale(1.15) }
.arrow{
  width:44px; height:44px; border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(15,18,24,.45);
  color:#eef6ff; cursor:pointer;
  display:grid; place-items:center;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  backdrop-filter:saturate(160%) blur(6px);
}
.arrow:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.35);
  background:rgba(15,18,24,.65);
}

/* Spacer for fixed header */
.hero-spacer{ height:72px; }

/* Sections */
section{ padding:92px 24px; position:relative; }
section::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  opacity:.6;
}
.wrap{ max-width:1200px; margin:0 auto }
.section-title{
  font-family:Montserrat,sans-serif;
  font-weight:800;
  font-size:clamp(26px,3vw,36px);
  margin:0 0 10px;
  letter-spacing:-0.4px;
}
.section-kicker{
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:2px;
  font-weight:700;
  margin-bottom:8px;
}
.section-sub{ color:#d1d8e5; max-width:860px; margin:8px 0 0 }
p{ margin:0 0 12px; }
p:last-child{ margin-bottom:0; }

/* About */
.about{ background:var(--ink) }
.about-grid{ display:grid; grid-template-columns:1.15fr .85fr; gap:36px; align-items:start }
.about-card{
  background:var(--ink-2);
  border:1px solid var(--ring);
  padding:26px;
  border-radius:18px;
  box-shadow:var(--shadow);
}
.about-quote{
  font-size:18px;
  color:#e8f3ff;
  border-left:4px solid var(--blue);
  padding-left:14px;
  margin:0 0 16px;
}
.lede{ color:#d1d8e5; max-width:860px }

/* Expand blocks */
details.expand{
  background:rgba(22,26,34,.45);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:14px 16px;
  margin-top:14px;
}
details.expand summary{
  cursor:pointer;
  list-style:none;
  font-weight:800;
  color:#eaf3ff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
details.expand summary::-webkit-details-marker{ display:none }
.chev{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.18);
  transition:transform .15s ease;
}
details[open] .chev{ transform:rotate(180deg) }
.expand .body{ color:#d7dfec; padding:10px 2px 2px }

/* Founder feature */
.founder{ display:grid; grid-template-columns:1.1fr .9fr; gap:26px; margin-top:18px; align-items:center }
.founder-card{
  background:var(--ink-2);
  border:1px solid var(--ring);
  border-radius:18px;
  padding:22px;
  box-shadow:var(--shadow);
}
.founder-title{ font-family:Montserrat,sans-serif; font-weight:800; font-size:22px; margin:0 0 8px }
.founder-card p{ color:#d7dfec }
.avatar{
  width:100%;
  max-width:320px;
  aspect-ratio:1/1;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:radial-gradient(60% 60% at 50% 25%, rgba(42,168,255,.22), rgba(0,0,0,0)),
             linear-gradient(135deg, #1b2432, #0d1420);
  overflow:hidden;
  box-shadow:0 18px 50px rgba(0,0,0,.35);
  margin-left:auto;
  display:grid; place-items:center;
  color:#a7bdd8; font-weight:800; letter-spacing:.5px;
  background-image:url(http://naw.industries/nic.jpg);
  
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.avatar small{ font-weight:700; opacity:.85 }

/* Timeline */
.timeline{ background:linear-gradient(180deg, var(--ink), var(--ink-2)) }
.tline{ margin-top:24px; display:grid; gap:18px }
.trow{ display:grid; grid-template-columns:140px 1fr; gap:16px; align-items:start }
.twhen{
  color:#9fb2ce;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
  font-size:12px;
  padding-top:12px;
  position:relative;
}
.twhen::after{
  content:"";
  position:absolute;
  left:6px;
  top:36px;
  bottom:-14px;
  width:2px;
  background: linear-gradient(to bottom, rgba(42,168,255,.35), rgba(255,255,255,0));
  opacity:.55;
}
.tcard{
  background:var(--ink-3);
  border:1px solid var(--ring);
  border-radius:18px;
  padding:18px 18px 16px;
  box-shadow: 0 16px 55px rgba(0,0,0,.22);
}
.tcard h3{ margin:0 0 6px; font-family:Montserrat,sans-serif; font-weight:800; font-size:18px }
.tcard p{ margin:0; color:#d7dfec }
.tchips{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px }
.tchip{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.12);
  color:#dbe6f6;
  font-weight:800;
  font-size:13px;
}

/* Services */
.services{ background:var(--ink-2) }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:26px }
.card{
  background:var(--ink-3);
  border:1px solid var(--ring);
  padding:22px;
  border-radius:18px;
  transition:transform .18s ease, box-shadow .2s ease, border-color .18s ease;
}
.card:hover{ transform:translateY(-5px); box-shadow:var(--shadow); border-color:var(--ring2) }
.card h3{ font-family:Montserrat,sans-serif; font-size:20px; margin:6px 0 8px }
.card p{ color:#cfd7e6; font-size:15.5px; margin:0 }
.card .mini{ margin-top:10px; color:#aeb6c4; font-size:13.5px; font-weight:700 }
.grid-4 .card{ min-height:168px }

.services-list{ margin-top:26px; display:grid; grid-template-columns:repeat(3,1fr); gap:18px }
.sbox{
  background:rgba(15,18,24,.55);
  border:1px solid var(--ring);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 14px 46px rgba(0,0,0,.20);
}
.sbox h3{ margin:0 0 6px; font-family:Montserrat,sans-serif; font-weight:900; font-size:18px }
.sbox p{ margin:0; color:#d7dfec }
.sbox .price{ margin-top:10px; color:#aeb6c4; font-weight:900; font-size:13.5px }

/* Flagship tools */
.flagship{ margin-top:34px }
.stack{ display:grid; gap:14px; margin-top:16px }
.tool{
  display:grid;
  grid-template-columns:220px 1fr auto;
  gap:16px;
  align-items:center;
  background:rgba(15,18,24,.55);
  border:1px solid var(--ring);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 14px 40px rgba(0,0,0,.28);
  transition: transform .18s ease, border-color .18s ease, box-shadow .2s ease;
}
.tool:hover{
  transform: translateY(-4px);
  border-color: var(--ring2);
  box-shadow:0 18px 65px rgba(0,0,0,.30);
}
.tool .shot{
  height:140px;
  background:linear-gradient(135deg,#1b2432,#0d1420);
  display:grid; place-items:center;
  color:#8aa4c3;
  font-weight:800;
  letter-spacing:.5px;
  border-right:1px solid rgba(255,255,255,.06);
  position:relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.badge{
  position:absolute;
  left:12px; bottom:12px;
  background-color:#26a9ff;
  border:1px solid rgba(42,168,255,.35);
  color:#eaf6ff;
  padding:6px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  letter-spacing:.6px;
  text-transform:uppercase;
  
}
.tool .info{ padding:16px 0 }
.tool .info h3{ margin:0 0 6px; font-family:Montserrat,sans-serif; font-weight:900 }
.tool .info p{ margin:0; color:#d7dfec; max-width:860px }
.tool .link{ padding:0 18px 0 0 }
.tool .link a{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px; border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  color:#eaf3ff; background:rgba(0,0,0,.18);
  font-weight:900;
  white-space:nowrap;
}
.tool .link a:hover{ border-color:rgba(255,255,255,.35); background:rgba(0,0,0,.28) }

/* Creations */
.creations{ background:linear-gradient(180deg, var(--ink-2), var(--ink-3)) }
.tabs{
  margin-top:20px;
  padding:10px;
  border-radius:999px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
  display:inline-flex;
  gap:10px;
  flex-wrap:wrap;
}
.tab{
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  color:#e9f4ff;
  cursor:pointer;
  user-select:none;
  font-weight:900;
  transition: transform .12s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.tab:hover{ transform: translateY(-1px); }
.tab.active{ background:var(--blue); color:#00111e; border-color:transparent }

.panel{ display:none; margin-top:16px; }
.panel.active{ display:block }

.featured{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:16px }
.feature-card{
  background:rgba(15,18,24,.55);
  border:1px solid var(--ring);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 18px 55px rgba(0,0,0,.30);
  transition: transform .18s ease, box-shadow .22s ease, border-color .18s ease;
}
.feature-card:hover{
  transform: translateY(-4px);
  border-color: var(--ring2);
  box-shadow:0 22px 70px rgba(0,0,0,.35);
}
.feature-top{ padding:18px 18px 0 }
.feature-top h3{ margin:0 0 6px; font-family:Montserrat,sans-serif; font-weight:900; font-size:22px }
.feature-top p{ margin:0; color:#d7dfec }
.feature-shot{
  height:300px;
  background:linear-gradient(135deg,#1b2432,#0d1420);
  display:grid; place-items:center;
  color:#8aa4c3; font-weight:900; letter-spacing:.6px;
  border-top:1px solid rgba(255,255,255,.06);
  position:relative;
  
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.feature-shot::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(500px 220px at 50% 0%, rgba(42,168,255,.18), transparent 60%);
  pointer-events:none;
}
.feature-actions{ padding:16px 18px 18px; display:flex; gap:10px; flex-wrap:wrap }

.sites{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:18px }
.site{
  background:rgba(15,18,24,.55);
  border:1px solid var(--ring);
  border-radius:18px;
  overflow:hidden;
  transition: transform .18s ease, box-shadow .22s ease, border-color .18s ease;
}
.site:hover{
  transform: translateY(-4px);
  border-color: var(--ring2);
  box-shadow:0 18px 65px rgba(0,0,0,.30);
}
.site .img{
  height:250px;
  background:linear-gradient(135deg,#1b2432,#0d1420);
  display:grid; place-items:center;
  color:#8aa4c3; font-weight:900;
  position:relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.site .img::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.35));
  pointer-events:none;
}
.site .body{ padding:16px }
.site h3{ margin:0 0 6px; font-family:Montserrat,sans-serif; font-weight:900; font-size:18px }
.site p{ margin:0 0 12px; color:#d7dfec; font-size:14.5px }

.gallery{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:18px }
.gitem{
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--ring);
  background:rgba(15,18,24,.55);
  transition: transform .18s ease, box-shadow .22s ease, border-color .18s ease;
}
.gitem:hover{
  transform: translateY(-4px);
  border-color: var(--ring2);
  box-shadow:0 18px 65px rgba(0,0,0,.30);
}
.gthumb{
  aspect-ratio:16/10;
  background:linear-gradient(135deg,#1b2432,#0d1420);
  display:grid; place-items:center;
  color:#8aa4c3; font-weight:900;
  position:relative;
  
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.gthumb::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(420px 200px at 50% 10%, rgba(42,168,255,.18), transparent 70%);
  pointer-events:none;
}
.gcap{ padding:12px 12px 14px; font-weight:900; color:#eaf3ff; font-size:14px }

/* Testimonials */
.testimonials{
  background: radial-gradient(900px 420px at 50% 0%, rgba(42,168,255,.16), transparent 60%), var(--ink);
}
.quotes{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:22px }
.quote{
  background:var(--ink-2);
  border:1px solid var(--ring);
  padding:22px;
  border-radius:18px;
  position:relative;
  box-shadow: 0 14px 46px rgba(0,0,0,.22);
}
.quote::before{
  content:"";
  position:absolute;
  left: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: rgba(42,168,255,.12);
  border: 1px solid rgba(42,168,255,.25);
  opacity:.9;
}
.quote p{ margin:42px 0 10px; color:#d7dfec; font-size:15.5px; line-height:1.7 }
.quote .who{ color:#9fb2ce; font-weight:700 }

/* CTA Band */
.cta-band{
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(42,168,255,.22), rgba(0,0,0,0)),
    linear-gradient(180deg, rgba(22,26,34,1), rgba(15,18,24,1));
  text-align:center;
  padding:72px 24px;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 1px, transparent 120px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 1px, transparent 120px);
  opacity:.22;
  pointer-events:none;
  mask-image: radial-gradient(60% 55% at 50% 12%, black 0%, transparent 72%);
}
.cta-box{
  max-width:980px;
  margin:0 auto;
  padding:34px 26px;
  border-radius:22px;
  background:rgba(22,26,34,.55);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 16px 50px rgba(0,0,0,.35);
  backdrop-filter:saturate(160%) blur(10px);
  position:relative;
  z-index:1;
}
.cta-actions{ display:flex; justify-content:center; gap:14px; flex-wrap:wrap; margin-top:16px; }
.cta-points{ display:flex; gap:10px; flex-wrap:wrap; justify-content:center; margin-top:14px; }
.cta-point{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.12);
  color:#dbe6f6;
  font-weight:700;
  font-size:14px;
}

/* Footer */
footer{
  background:#0a0d12;
  color:#bcc7d8;
  padding:36px 24px;
  border-top:1px solid rgba(255,255,255,.06);
}
footer a{ color:#d7e6ff; }
footer a:hover{ color:#fff; }
.foot{ display:grid; grid-template-columns:2fr 1fr 1fr; gap:22px; max-width:1200px; margin:0 auto }
footer h4{ margin:0 0 8px; font-family:Montserrat,sans-serif }
footer ul{ list-style:none; padding:0; margin:0 }
footer li{ margin:8px 0 }
.copyright{ text-align:center; color:#8ea3bf; margin-top:20px; font-size:14px }

/* Utility pill (for labels) */
.pill{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:#26a9ff;
  margin-right:10px;
  font-weight:900;
  font-size:12px;
  color:#eaf3ff;
}
    .naw{
	background-image:url(https://i.imgur.com/S2lQbY4.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
	width:120px;
	height:100px;
    }
/* Responsive */
@media (max-width:1024px){
  .about-grid{ grid-template-columns:1fr }
  .founder{ grid-template-columns:1fr }
  .avatar{ margin:0 auto }
  .trow{ grid-template-columns:120px 1fr }
  .grid-4{ grid-template-columns:repeat(2,1fr) }
  .services-list{ grid-template-columns:1fr }
  .tool{ grid-template-columns:200px 1fr }
  .featured{ grid-template-columns:1fr }
  .sites{ grid-template-columns:repeat(2,1fr) }
  .gallery{ grid-template-columns:repeat(2,1fr) }
  .quotes{ grid-template-columns:1fr 1fr }
  .foot{ grid-template-columns:1fr 1fr }
}
@media (max-width:900px){
  .tabs{ width:100%; justify-content:center; }
  .tab{ flex:1; text-align:center; }
}
@media (max-width:640px){
 nav ul{ display:none }
  .menu-btn{ display:block; background:none; border:1px solid rgba(255,255,255,.25); color:#fff; padding:8px 10px; border-radius:10px }
    .grid-4{ grid-template-columns:1fr }
  .quotes{ grid-template-columns:1fr }
  .foot{ grid-template-columns:1fr }
  .trow{ grid-template-columns:1fr }
  .tool{ grid-template-columns:1fr }
  .tool .shot{ border-right:none; border-bottom:1px solid rgba(255,255,255,.06) }
  .tool .link{ padding:0 16px 16px }
  .sites{ grid-template-columns:1fr }
  .gallery{ grid-template-columns:1fr }
}
/* ---------- Premium polish + stability ---------- */

:root{
  --ring: rgba(255,255,255,.10);
  --ring2: rgba(255,255,255,.16);
}

/* Better selection */
::selection{ background: rgba(42,168,255,.25); }

/* Consistent paragraph rhythm */
p{ margin:0 0 12px; }
p:last-child{ margin-bottom:0; }

/* Cleaner fixed header spacing + better anchor scroll offset */
html{ scroll-padding-top: 90px; }

/* Section separators (subtle) */
section{
  position:relative;
}
section::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  opacity:.65;
}

/* Make wrap feel more centered on huge screens */
.wrap{
  width:min(1200px, calc(100% - 48px));
}

/* Buttons feel more tactile */
.btn{
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

/* Better cards */
.card, .sbox, .tool, .feature-card, .site, .gitem, .quote, .about-card, .founder-card{
  border-color: var(--ring);
}
.card:hover, .feature-card:hover, .site:hover, .gitem:hover, .tool:hover{
  border-color: var(--ring2);
}

/* Keyboard accessibility (huge "pro site" cue) */
a:focus-visible,
button:focus-visible,
summary:focus-visible{
  outline: 2px solid rgba(42,168,255,.65);
  outline-offset: 3px;
  border-radius: 12px;
}

/* Tabs as buttons (better UX) */
.tabs{
  padding:10px;
  border-radius:999px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
  display:inline-flex;
  gap:10px;
  flex-wrap:wrap;
}
.tab{
  background:transparent;
  border:1px solid rgba(255,255,255,.18);
}
.tab.active{
  background: var(--blue);
}

/* Footer blurb class */
.foot-blurb{
  margin:0;
  color:#aeb6c4;
  max-width:520px;
}

/* Mobile nav (no inline styles needed) */
.menu-btn{
  display:none;
}
@media (max-width:640px){
  .menu-btn{ display:inline-flex; align-items:center; justify-content:center; }
  .nav-list{
    display:none;
  }
  body.nav-open .nav-list{
    display:flex;
    flex-direction:column;
    gap:14px;
    position:absolute;
    top:64px;
    right:16px;
    padding:14px;
    border-radius:14px;
    background:rgba(15,18,24,.95);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 18px 55px rgba(0,0,0,.35);
    min-width: 220px;
  }
  body.nav-open .nav-list .cta{ margin-left:0; text-align:center; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; scroll-behavior:auto !important; }
}
/* Bundle Offer */
.bundle{
  background: radial-gradient(900px 420px at 50% 0%, rgba(42,168,255,.14), transparent 60%),
              linear-gradient(180deg, var(--ink-2), var(--ink));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.bundle-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  margin-top:22px;
}

.bundle-card{
  background: rgba(15,18,24,.55);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 18px 60px rgba(0,0,0,.30);
}

.bundle-card.alt{
  background: rgba(22,26,34,.50);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 16px 48px rgba(0,0,0,.24);
}

.bundle-top h3{
  margin: 8px 0 8px;
  font-family: Montserrat,sans-serif;
  font-weight: 900;
  font-size: 22px;
}

.bundle-top p{
  margin: 0;
  color: #d7dfec;
}

.bundle-badge{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(42,168,255,.16);
  border: 1px solid rgba(42,168,255,.35);
  color: #eaf6ff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.bundle-badge.subtle{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: #eaf3ff;
}

.bundle-points{
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display:grid;
  gap:10px;
}

.bundle-points li{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  color: #dbe6f6;
}

.bundle-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 16px;
}

.bundle-note{
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13.5px;
}

.bundle-foot{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  margin-top:18px;
}

.bundle-foot-card{
  background: rgba(15,18,24,.40);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 18px;
}

.bundle-foot-card h3{
  margin:0 0 8px;
  font-family: Montserrat,sans-serif;
  font-weight: 900;
  font-size: 18px;
}

.bundle-foot-card p{
  margin:0 0 12px;
  color:#d7dfec;
}

/* Responsive */
@media (max-width:1024px){
  .bundle-grid{ grid-template-columns: 1fr; }
  .bundle-foot{ grid-template-columns: 1fr; }
}
