:root{
  --bg:#0b111c;
  --panel:#111927;
  --panel2:#151f31;
  --text:#eef3ff;
  --muted:#aeb8cc;
  --line:rgba(255,255,255,.12);
  --line2:rgba(214,178,103,.24);
  --accent:#d6b267;
  --accent2:#b88a3a;
  --accent3:#f3d78f;
  --good:#70e0b2;
  --shadow: 0 22px 70px rgba(0,0,0,.48);
  --radius:20px;
  --max:1120px;
}

*{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  padding:0;
  scroll-behavior:smooth;
}

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 800px at 18% -10%, rgba(214,178,103,.18), transparent 58%),
    radial-gradient(900px 700px at 92% 4%, rgba(84,111,160,.22), transparent 56%),
    linear-gradient(180deg, #0b111c 0%, #0d1422 45%, #080d15 100%);
  color:var(--text);
  line-height:1.55;
}

a{
  color:inherit;
}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:28px 18px;
}

/* NAVIGATION */

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:1px solid var(--line);
  background:rgba(14,22,36,.78);
  backdrop-filter: blur(12px);
  padding:14px 16px;
  border-radius:999px;
  box-shadow:var(--shadow);
  position:sticky;
  top:14px;
  z-index:50;
}

.brand{
  display:flex;
  gap:12px;
  align-items:center;
  text-decoration:none;
}

.logo{
  width:38px;
  height:38px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(214,178,103,.98), rgba(243,215,143,.82));
  color:#0b111c;
  font-size:11px;
  letter-spacing:.06em;
  font-weight:900;
  box-shadow:0 12px 28px rgba(214,178,103,.18);
}

.brand b{
  font-size:14px;
  letter-spacing:.2px;
}

.brand span{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin-top:1px;
}

.nav .links{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

/* BUTTONS */

.pill{
  text-decoration:none;
  border:1px solid var(--line);
  padding:10px 12px;
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:.18s ease;
}

.pill:hover,
.pill.strong{
  border-color:rgba(214,178,103,.45);
  color:var(--text);
  background:rgba(214,178,103,.06);
}

.cta{
  text-decoration:none;
  background:linear-gradient(135deg, var(--accent), var(--accent3));
  color:#0b0f17;
  padding:10px 15px;
  border-radius:999px;
  font-weight:800;
  border:0;
  box-shadow:0 14px 34px rgba(214,178,103,.16);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:.18s ease;
}

.cta:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 42px rgba(214,178,103,.22);
}

.full{
  width:100%;
  margin-top:12px;
}

/* HERO BASIS */

.hero{
  padding:76px 0 34px;
  display:grid;
  grid-template-columns:1.18fr .82fr;
  gap:22px;
  align-items:start;
}

.hero-copy{
  min-width:0;
}

.eyebrow{
  color:var(--accent3);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:12px;
  font-weight:800;
  margin-bottom:14px;
}

.h1{
  font-size:48px;
  line-height:1.06;
  margin:0 0 16px;
  letter-spacing:-.8px;
}

.sub{
  color:var(--muted);
  font-size:17px;
  margin:0 0 20px;
  max-width:68ch;
}

.sub b,
.card b{
  color:var(--text);
}

.hero-points{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--muted);
  max-width:76ch;
}

.hero-points li{
  margin:9px 0;
}

.hero-points b{
  color:var(--text);
}

.hero-cta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:20px;
}

/* KPI PILLS */

.kpis{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:22px 0 0;
}

.kpi{
  border:1px solid var(--line);
  background:rgba(17,25,39,.66);
  padding:10px 12px;
  border-radius:999px;
  font-size:13px;
  color:var(--muted);
}

.kpi b{
  color:var(--text);
}

/* CARDS */

.card{
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(17,25,39,.78), rgba(13,20,33,.72));
  border-radius:var(--radius);
  padding:20px;
  box-shadow:var(--shadow);
}

.card h3{
  margin:0 0 10px;
  font-size:17px;
  letter-spacing:.05px;
}

.card p{
  margin:0 0 10px;
  color:var(--muted);
  font-size:14px;
}

.card p:last-child{
  margin-bottom:0;
}

.card ul{
  margin:12px 0 0;
  padding-left:18px;
  color:var(--muted);
}

.card li{
  margin:7px 0;
}

.hero-card{
  border-color:rgba(214,178,103,.22);
}

/* TRUST PILLS */

.trust-row{
  display:flex !important;
  flex-direction:row !important;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
  align-items:center;
}

.trust-pill{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line);
  border-radius:999px;
  padding:9px 12px;
  font-size:13px;
  line-height:1;
  color:var(--muted);
  background:rgba(255,255,255,.03);
  white-space:nowrap;
  width:auto !important;
  max-width:max-content;
}

.trust-pill:hover{
  border-color:rgba(214,178,103,.38);
  color:var(--text);
  background:rgba(214,178,103,.06);
}

/* STATUS / CHECKLIST */

.status-dot{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--accent3);
  font-size:12px;
  margin-bottom:14px;
}

.status-dot:before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--good);
  box-shadow:0 0 0 5px rgba(112,224,178,.08);
}

.check-list{
  list-style:none;
  padding-left:0!important;
}

.check-list li{
  position:relative;
  padding-left:24px;
}

.check-list li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--accent3);
  font-weight:900;
}

/* GRIDS */

.grid3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.section{
  padding:30px 0;
}

.section h2{
  font-size:24px;
  letter-spacing:-.2px;
  margin:0 0 12px;
}

.section p{
  color:var(--muted);
  margin:0 0 14px;
  max-width:84ch;
}

/* STEPS */

.steps{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}

.step b{
  display:block;
  font-size:14px;
  margin-bottom:6px;
}

.step .num{
  width:36px;
  height:36px;
  border-radius:13px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(214,178,103,.12);
  border:1px solid rgba(214,178,103,.28);
  margin-bottom:12px;
  color:var(--accent3);
  font-weight:900;
}

/* UTILITY */

.hr{
  height:1px;
  background:var(--line);
  margin:22px 0;
}

.small{
  font-size:12px!important;
  color:var(--muted)!important;
}

.note{
  font-size:13px;
  color:var(--muted);
  border:1px dashed rgba(214,178,103,.30);
  background:rgba(214,178,103,.05);
  padding:12px 14px;
  border-radius:16px;
}

.note b{
  color:var(--text);
}

/* PRICING */

.pricing-card{
  position:relative;
  display:flex;
  flex-direction:column;
}

.pricing-head{
  margin-bottom:8px;
}

.pricing-footer{
  margin-top:auto;
}

.pricing-card .price,
.price{
  margin:0 0 6px;
  color:var(--text);
  font-size:15px;
}

.pricing-badge{
  position:absolute;
  top:14px;
  right:14px;
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(214,178,103,.38);
  background:rgba(214,178,103,.11);
  color:var(--accent3);
  letter-spacing:.2px;
  font-weight:800;
}

.pricing-card.featured{
  border-color:rgba(214,178,103,.46);
  box-shadow:0 24px 76px rgba(214,178,103,.11), var(--shadow);
}

.pricing-card.featured .hr{
  background:rgba(214,178,103,.26);
}

/* SPLIT / ABOUT / CONTACT */

.split-card{
  display:grid;
  grid-template-columns:1.5fr .5fr;
  gap:18px;
  align-items:center;
  border-color:rgba(214,178,103,.22);
}

.about-card{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}

.contact-grid{
  margin-top:18px;
}

/* FOOTER */

.footer{
  padding:24px 0 42px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:12px;
}

.footer a{
  color:var(--muted);
  text-decoration:none;
}

.footer a:hover{
  color:var(--text);
}

.badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  border:1px solid var(--line);
  padding:10px 12px;
  border-radius:999px;
}

/* MOBILE MENU */

.menu-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  border-radius:14px;
  cursor:pointer;
}

.menu-toggle .bars{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.menu-toggle .bars span{
  display:block;
  width:18px;
  height:2px;
  background:rgba(255,255,255,.9);
  border-radius:2px;
}

.drawer-backdrop{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.58);
  z-index:998;
}

.drawer-backdrop.open{
  display:block;
}

.mobile-drawer{
  position:fixed;
  inset:0;
  z-index:999;
  padding:18px 18px 22px;
  background:rgba(8,13,21,.94);
  backdrop-filter:blur(14px);
  opacity:0;
  transform:translateY(-8px);
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
}

.mobile-drawer.open{
  opacity:1;
  transform:none;
  pointer-events:auto;
}

.drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:4px 2px 14px;
}

.drawer-title{
  font-size:12px;
  color:var(--muted);
  letter-spacing:.14em;
  text-transform:uppercase;
}

.drawer-close{
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-size:22px;
  line-height:1;
  cursor:pointer;
}

.drawer-content{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding-top:6px;
}

.drawer-content a{
  width:100%;
  text-align:center;
  justify-content:center;
  display:flex;
}

.drawer-content .pill{
  padding:12px 14px;
  font-size:14px;
}

.drawer-content .cta{
  padding:12px 14px;
  font-size:15px;
}

/* RESPONSIVE */

@media (max-width:980px){
  .hero{
    grid-template-columns:1fr;
    padding-top:54px;
  }

  .grid3{
    grid-template-columns:1fr;
  }

  .steps{
    grid-template-columns:1fr 1fr;
  }

  .split-card{
    grid-template-columns:1fr;
  }

  .nav{
    border-radius:20px;
  }
}

@media (max-width:720px){
  .container{
    padding:0 16px 24px;
  }

  .nav .links{
    display:none;
  }

  .menu-toggle{
    display:inline-flex;
  }

  .nav{
    position:fixed;
    top:0;
    left:0;
    right:0;
    border-radius:0;
    padding:12px 14px;
    z-index:1000;
  }

  .brand span{
    font-size:11px;
  }

  .h1{
    font-size:clamp(34px, 8.4vw, 44px);
    text-wrap:balance;
  }

  .sub{
    font-size:16px;
  }

  .steps{
    grid-template-columns:1fr;
  }

  .hero{
    padding-top:64px;
  }

  .badge{
    border-radius:18px;
    flex-wrap:wrap;
  }

  .trust-row{
    gap:8px;
  }

  .trust-pill{
    font-size:12px;
    padding:8px 10px;
  }
}

@media (min-width:721px){
  .mobile-drawer,
  .drawer-backdrop{
    display:none!important;
  }
}