:root{
  --bg-dark:#09080f;
  --bg-section:#0d0b18;
  --bg-card:#161329;
  --card-border:#2a2447;
  --gold:#d8b06c;
  --gold-soft:#c79f5c;
  --lavender:#a49ac9;
  --text-white:#f7f6fb;
  --text-body:#c3bfd8;
  --text-muted:#8d87ab;
  --radius:16px;
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',sans-serif;
  background:var(--bg-dark);
  color:var(--text-white);
  line-height:1.6;
  overflow-x:hidden;
}
h1,h2,h3,.logo,.nav-links a{font-family:'Space Grotesk',sans-serif;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
img,svg{display:block;}
.container{
  max-width:1180px;
  margin:0 auto;
  padding:0 32px;
}
.eyebrow{
  font-family:'Inter',sans-serif;
  font-size:13px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
}
.eyebrow.lavender{color:var(--lavender);}
.eyebrow.gold{color:var(--gold);}

/* ---------- NAV ---------- */
header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:100;
  padding:22px 0;
  background:rgba(9,8,15,0.75);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo{
  font-size:20px;
  font-weight:700;
  color:#fff;
  letter-spacing:-0.5px;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
}
.nav-links a{
  font-size:15px;
  font-weight:500;
  color:rgba(255,255,255,0.85);
  transition:color .2s ease;
}
.nav-links a:hover, .nav-links a.active{color:var(--gold);}
.nav-links a.btn-outline{
  border:1px solid rgba(255,255,255,0.35);
  padding:9px 20px;
  border-radius:100px;
  color:#fff;
}
.nav-links a.btn-outline:hover{
  border-color:var(--gold);
  color:var(--gold);
}
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  z-index:110;
}
.nav-toggle span{
  width:24px;
  height:2px;
  background:#fff;
  display:block;
}

/* ---------- HERO (home page only, full screen, real gradient asset + real sized text) ---------- */
.hero{
  height:100vh;
  min-height:640px;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  position:relative;
  overflow:hidden;
  background-color:#2a1a63;
  background-image:url('assets/bg-full-blur.jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.hero-content{position:relative;z-index:2;padding:0 24px;}
.hero-mark{display:flex;align-items:center;justify-content:center;gap:12px;margin-bottom:26px;}
.hero-mark-icon{width:clamp(61px,10.6vw,109px);height:clamp(61px,10.6vw,109px);border-radius:22%;object-fit:cover;}
.hero-logo-text{
  font-size:clamp(85px,15.4vw,162px);
  font-weight:700;
  letter-spacing:-4px;
  background:linear-gradient(180deg,#ffffff 0%, #d8ceff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-tagline{font-size:clamp(40px,6.1vw,61px);font-weight:600;color:#fff;max-width:820px;margin:0 auto 16px;}
.hero-sub{font-size:32px;font-weight:500;color:rgba(255,255,255,0.82);}
.hero-line{position:absolute;bottom:0;left:0;width:100%;height:1px;background:rgba(255,255,255,0.12);}
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* ---------- PAGE HERO (sub pages) ---------- */
.page-hero{
  padding:190px 0 70px;
  text-align:center;
  position:relative;
  overflow:hidden;
  background-color:#2a1a63;
  background-image:url('assets/bg-full-blur.jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.page-hero .eyebrow{display:block;margin-bottom:16px;color:rgba(255,255,255,0.75);}
.page-hero h1{
  font-size:clamp(32px,5vw,52px);
  font-weight:700;
  color:#fff;
  margin-bottom:16px;
}
.page-hero p{
  font-size:18px;
  color:rgba(255,255,255,0.82);
  max-width:600px;
  margin:0 auto;
}

/* ---------- TRUSTED BY ---------- */
.trusted{background:var(--bg-section);padding:64px 0;border-bottom:1px solid rgba(255,255,255,0.05);}
.trusted .eyebrow{display:block;text-align:center;margin-bottom:36px;}
.logo-row{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:48px;}
.logo-row span{font-size:19px;font-weight:600;color:var(--text-muted);opacity:0.75;transition:opacity .2s ease, color .2s ease;}
.logo-row span:hover{opacity:1;color:var(--text-white);}

/* ---------- SECTION SHELL ---------- */
.section{background:var(--bg-dark);padding:110px 0;}
.section-alt{background:var(--bg-section);}
.section-head{max-width:680px;margin:0 auto 56px;text-align:center;}
.section-head .eyebrow{display:block;margin-bottom:16px;}
.section-head h2{font-size:clamp(28px,4.2vw,42px);font-weight:700;line-height:1.25;color:var(--text-white);margin-bottom:16px;}
.section-head p{font-size:18px;color:var(--text-body);}

/* ---------- BRING / CLOSE ---------- */
.bring-close{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-bottom:64px;}
.bc-card{background:var(--bg-card);border:1px solid var(--card-border);border-radius:var(--radius);padding:32px;}
.bc-card.you{border-left:3px solid var(--lavender);}
.bc-card.we{border-left:3px solid var(--gold);}
.bc-card .eyebrow{display:block;margin-bottom:14px;}
.bc-card p{font-size:17px;color:var(--text-white);font-weight:500;line-height:1.55;}

/* ---------- FUNCTION CARDS ---------- */
.functions-head{font-size:14px;font-weight:600;letter-spacing:1px;text-transform:uppercase;color:var(--lavender);margin-bottom:24px;}
.function-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-bottom:70px;}
.function-card{background:var(--bg-card);border:1px solid var(--card-border);border-radius:var(--radius);padding:32px;}
.function-card .icon{width:42px;height:42px;border-radius:10px;background:rgba(216,176,108,0.12);display:flex;align-items:center;justify-content:center;margin-bottom:18px;}
.function-card .icon svg{width:20px;height:20px;}
.function-card .tag{font-size:13px;font-weight:600;letter-spacing:1px;text-transform:uppercase;color:var(--text-muted);margin-bottom:12px;display:block;}
.function-card p{font-size:16px;color:var(--text-body);margin-bottom:18px;}
.channel-group{margin-bottom:14px;}
.channel-group:last-child{margin-bottom:0;}
.channel-label{font-size:13px;font-weight:600;color:var(--gold);margin-bottom:10px;display:block;}
.pill-row{display:flex;flex-wrap:wrap;gap:10px;}
.pill{
  display:inline-block;
  padding:8px 16px;
  border-radius:100px;
  font-size:14px;
  font-weight:600;
  background:var(--bg-section);
  border:1px solid var(--card-border);
  color:var(--text-white);
}

/* ---------- OPERATING SEQUENCE ---------- */
.sequence-wrap{border-top:1px solid rgba(255,255,255,0.08);padding-top:56px;}
.sequence-chain{display:flex;flex-wrap:wrap;align-items:center;gap:12px;margin-bottom:32px;}
.seq-pill{
  padding:10px 20px;
  border-radius:100px;
  font-size:14px;
  font-weight:600;
  white-space:nowrap;
}
.seq-pill.on{background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.5);color:#fff;}
.seq-pill.off{background:transparent;border:1px solid var(--card-border);color:var(--gold-soft);}
.seq-arrow{color:var(--gold-soft);font-size:16px;}
.sequence-note{font-size:17px;color:var(--text-body);max-width:640px;}

/* ---------- SOLUTIONS / SEGMENTS ---------- */
.segment-list{display:flex;flex-direction:column;gap:24px;}
.segment-card{
  background:var(--bg-card);
  border:1px solid var(--card-border);
  border-radius:var(--radius);
  padding:40px;
  display:grid;
  grid-template-columns:280px 1fr;
  gap:36px;
}
.segment-card .tag{font-size:22px;font-weight:700;color:var(--text-white);margin-bottom:8px;font-family:'Space Grotesk',sans-serif;}
.segment-card .who{font-size:14px;color:var(--text-muted);}
.segment-card h3{font-size:22px;font-weight:700;color:var(--text-white);margin-bottom:12px;line-height:1.35;}
.segment-card p{font-size:16px;color:var(--text-body);margin-bottom:20px;}
.segment-card .btn-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:15px;
  font-weight:600;
  color:var(--gold);
}
.segment-card .btn-link:hover{color:var(--text-white);}

/* ---------- WHY MADNAV ---------- */
.check-list{display:flex;flex-direction:column;gap:18px;max-width:640px;margin:0 auto;}
.check-item{display:flex;align-items:flex-start;gap:14px;}
.check-item .mark{
  width:24px;height:24px;
  border-radius:50%;
  background:rgba(216,176,108,0.15);
  color:var(--gold);
  display:flex;align-items:center;justify-content:center;
  font-size:13px;font-weight:700;
  flex-shrink:0;
  margin-top:2px;
}
.check-item p{font-size:17px;font-weight:500;color:var(--text-white);}

.stat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin:64px 0;text-align:center;}
.stat-card .num{font-size:clamp(28px,4vw,40px);font-weight:700;color:var(--gold);font-family:'Space Grotesk',sans-serif;}
.stat-card .label{font-size:14px;color:var(--text-muted);margin-top:6px;}

.compare-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:20px;}
.compare-card{background:var(--bg-card);border:1px solid var(--card-border);border-radius:var(--radius);padding:32px;}
.compare-card h4{font-size:16px;font-weight:700;margin-bottom:6px;color:var(--text-white);}
.compare-card .time{font-size:28px;font-weight:700;color:var(--gold);font-family:'Space Grotesk',sans-serif;margin-bottom:18px;}
.compare-steps{display:flex;flex-direction:column;gap:10px;}
.compare-steps span{font-size:14px;color:var(--text-body);padding-left:20px;position:relative;}
.compare-steps span::before{content:"";position:absolute;left:0;top:8px;width:6px;height:6px;border-radius:50%;background:var(--text-muted);}

.cost-table{width:100%;border-collapse:collapse;margin-top:20px;}
.cost-table th{text-align:left;font-size:13px;letter-spacing:1px;text-transform:uppercase;color:var(--text-muted);padding:14px 16px;border-bottom:1px solid var(--card-border);}
.cost-table td{padding:16px;font-size:15px;color:var(--text-body);border-bottom:1px solid var(--card-border);}
.cost-table tr:last-child td{border-bottom:none;font-weight:700;color:var(--text-white);}
.cost-table td.included{color:var(--gold);font-weight:600;}

/* ---------- CONTACT ---------- */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;}
.contact-form{display:flex;flex-direction:column;gap:16px;}
.contact-form label{font-size:13px;font-weight:600;color:var(--text-muted);text-transform:uppercase;letter-spacing:1px;}
.contact-form input, .contact-form textarea{
  width:100%;
  background:var(--bg-card);
  border:1px solid var(--card-border);
  border-radius:10px;
  padding:14px 16px;
  color:var(--text-white);
  font-family:'Inter',sans-serif;
  font-size:15px;
}
.contact-form input:focus, .contact-form textarea:focus{outline:1px solid var(--gold);}
.contact-form textarea{min-height:130px;resize:vertical;}
.contact-info h3{font-size:20px;font-weight:700;margin-bottom:14px;}
.contact-info p{font-size:16px;color:var(--text-body);margin-bottom:24px;}
.contact-info .item{margin-bottom:20px;}
.contact-info .item .label{font-size:13px;color:var(--text-muted);text-transform:uppercase;letter-spacing:1px;margin-bottom:6px;}
.contact-info .item .value{font-size:16px;color:var(--text-white);font-weight:500;}

/* ---------- CTA ---------- */
.cta{position:relative;padding:110px 0;text-align:center;background:var(--bg-section);overflow:hidden;}
.cta-glow{position:absolute;top:-200px;left:50%;transform:translateX(-50%);width:700px;height:400px;background:radial-gradient(circle, #6b3fd6 0%, transparent 70%);opacity:0.35;filter:blur(60px);pointer-events:none;}
.cta-inner{position:relative;z-index:2;}
.cta h2{font-size:clamp(28px,4.5vw,42px);font-weight:700;margin-bottom:16px;}
.cta p{font-size:18px;color:var(--text-body);margin-bottom:36px;}
.btn-primary{display:inline-block;background:var(--gold);color:#1c1327;font-weight:700;font-size:16px;padding:16px 38px;border-radius:100px;transition:transform .2s ease, box-shadow .2s ease;border:none;cursor:pointer;font-family:'Inter',sans-serif;}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 30px rgba(216,176,108,0.35);}

/* ---------- TRUST NOTE ---------- */
.trust-note{
  font-size:14px;
  color:var(--text-muted);
  margin-top:16px;
}

/* ---------- STICKY CTA ---------- */
.sticky-cta{
  position:fixed;
  bottom:24px;
  right:24px;
  z-index:90;
  background:var(--gold);
  color:#1c1327;
  font-family:'Inter',sans-serif;
  font-weight:700;
  font-size:14px;
  padding:14px 24px;
  border-radius:100px;
  box-shadow:0 8px 24px rgba(0,0,0,0.35);
  opacity:0;
  transform:translateY(16px);
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}
.sticky-cta.show{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
@media(max-width:600px){
  .sticky-cta{bottom:16px;right:16px;left:16px;text-align:center;}
}

/* ---------- NEWSLETTER (footer) ---------- */
.footer-newsletter h4{
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--text-muted);
  margin-bottom:12px;
  font-weight:600;
}
.footer-newsletter p{
  font-size:14px;
  color:var(--text-body);
  margin-bottom:16px;
  max-width:260px;
}
.newsletter-form{
  display:flex;
  gap:8px;
  max-width:320px;
}
.newsletter-form input{
  flex:1;
  min-width:0;
  background:var(--bg-card);
  border:1px solid var(--card-border);
  border-radius:10px;
  padding:11px 14px;
  color:var(--text-white);
  font-family:'Inter',sans-serif;
  font-size:14px;
}
.newsletter-form input:focus{outline:1px solid var(--gold);}
.newsletter-form button{
  background:var(--gold);
  color:#1c1327;
  border:none;
  border-radius:10px;
  padding:11px 18px;
  font-weight:700;
  font-size:14px;
  font-family:'Inter',sans-serif;
  cursor:pointer;
  white-space:nowrap;
}
.newsletter-form button:hover{background:var(--gold-soft);}
.newsletter-note{font-size:12px;color:var(--text-muted);margin-top:10px;}

/* ---------- FOOTER ---------- */
footer{background:var(--bg-dark);padding:64px 0 32px;border-top:1px solid rgba(255,255,255,0.06);}
.footer-top{display:flex;flex-wrap:wrap;justify-content:space-between;gap:40px;margin-bottom:48px;}
.footer-brand .logo{font-size:16px;margin-bottom:12px;}
.footer-brand p{font-size:14px;color:var(--text-muted);max-width:280px;}
.footer-links{display:flex;gap:60px;flex-wrap:wrap;}
.footer-col h4{font-size:13px;letter-spacing:1px;text-transform:uppercase;color:var(--text-muted);margin-bottom:16px;font-weight:600;}
.footer-col a{display:block;font-size:14px;color:var(--text-body);margin-bottom:12px;}
.footer-col a:hover{color:var(--gold);}
.footer-bottom{display:flex;flex-wrap:wrap;justify-content:space-between;gap:16px;padding-top:28px;border-top:1px solid rgba(255,255,255,0.06);font-size:13px;color:var(--text-muted);}

/* ---------- RESPONSIVE ---------- */
@media(max-width:900px){
  .bring-close, .function-grid, .compare-grid, .contact-grid{grid-template-columns:1fr;}
  .stat-grid{grid-template-columns:repeat(2,1fr);}
  .segment-card{grid-template-columns:1fr;}
}
@media(max-width:760px){
  .nav-links{
    position:fixed;top:0;right:0;height:100vh;width:260px;
    background:#0d0b18;flex-direction:column;align-items:flex-start;
    padding:100px 32px;gap:26px;
    transform:translateX(100%);transition:transform .3s ease;
    border-left:1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open{transform:translateX(0);}
  .nav-toggle{display:flex;}
  .logo-row{gap:30px;}
  .logo-row span{font-size:16px;}
  .cost-table{display:block;overflow-x:auto;}
}
