:root{
  --bg:#fdf4f6;
  --surface:#fffafb;
  --surface-2:#fff1f3;
  --text:#333232;
  --muted:#756b6c;
  --line:#f5c9cf;
  --accent:#ff7780;
  --accent-strong:#ff6670;
  --accent-soft:#ffd5da;
  --chip:#ffe5e8;
  --white:#ffffff;
  --shadow:0 18px 44px rgba(51,50,50,.09);
  --shadow-soft:0 12px 28px rgba(255,119,128,.18);
  --radius:24px;
  --control:#fff6f7;
  --hero:
    radial-gradient(circle at 12% 12%, rgba(255,119,128,.25), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(255,102,112,.16), transparent 30%),
    linear-gradient(135deg, #fffafa 0%, #fff1f3 55%, #fdf4f6 100%);
}

.dark{
  --bg:#1f1f1f;
  --surface:#2b2b2b;
  --surface-2:#333232;
  --text:#fff4f5;
  --muted:#dbc9cb;
  --line:#55494c;
  --accent:#ff7780;
  --accent-strong:#ff8b93;
  --accent-soft:#5a4044;
  --chip:#45383a;
  --white:#ffffff;
  --shadow:0 18px 48px rgba(0,0,0,.28);
  --shadow-soft:0 12px 30px rgba(255,119,128,.18);
  --control:#3a3435;
  --hero:
    radial-gradient(circle at 12% 12%, rgba(255,119,128,.18), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(255,102,112,.12), transparent 30%),
    linear-gradient(135deg, #302b2c 0%, #2a2526 55%, #231f20 100%);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

html,
body{
  margin:0;
}

body{
  min-height:100dvh;
  background:var(--bg);
  color:var(--text);
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

a{
  color:inherit;
}

button,
input,
select,
textarea{
  font:inherit;
}

.page{
  min-height:100dvh;
  display:flex;
  flex-direction:column;
}

.container{
  width:min(1120px,100%);
  margin-inline:auto;
  padding-inline:clamp(16px,3vw,28px);
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(14px);
  background:color-mix(in oklab,var(--bg) 84%,transparent);
  border-bottom:1px solid color-mix(in oklab,var(--line) 84%,transparent);
}

.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width:0;
}

.brand-logo{
  width:46px;
  height:46px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg,var(--accent),var(--accent-strong));
  color:#fff;
  font-weight:800;
  box-shadow:var(--shadow-soft);
  flex:0 0 auto;
}

.brand-title{
  margin:0;
  font-size:18px;
  font-weight:800;
  letter-spacing:.01em;
}

.brand-subtitle{
  margin:2px 0 0;
  color:var(--muted);
  font-size:12px;
}

.theme-toggle{
  position:relative;
  width:68px;
  height:38px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--control);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 10px;
  overflow:hidden;
  cursor:pointer;
  box-shadow:var(--shadow);
  flex:0 0 auto;
}

.theme-toggle .icon{
  font-size:14px;
  line-height:1;
  opacity:.65;
  z-index:1;
}

.theme-toggle .thumb{
  position:absolute;
  top:4px;
  left:4px;
  width:28px;
  height:28px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 4px 12px rgba(0,0,0,.14);
  transition:transform .25s ease;
}

.theme-toggle.is-dark .thumb{
  transform:translateX(30px);
}

.hero-section{
  padding:28px 0 18px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  align-items:center;
  padding-block:26px;
}

.hero-copy{
  border-radius:32px;
  border:1px solid var(--line);
  background:var(--hero);
  box-shadow:var(--shadow);
  padding:clamp(24px,4vw,42px);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:var(--chip);
  color:var(--accent-strong);
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:14px;
}

.hero-copy h1{
  margin:0;
  font-size:clamp(32px,5vw,58px);
  line-height:1.04;
  letter-spacing:-.04em;
}

.hero-copy h1 span{
  color:var(--accent);
}

.hero-text{
  margin:16px 0 0;
  max-width:62ch;
  color:var(--muted);
  font-size:15px;
  line-height:1.8;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.btn{
  appearance:none;
  border:1px solid var(--line);
  border-radius:16px;
  min-height:48px;
  padding:12px 18px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-weight:800;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:linear-gradient(180deg,var(--accent),var(--accent-strong));
  color:#fff;
  border-color:transparent;
  box-shadow:var(--shadow-soft);
}

.btn-soft{
  background:color-mix(in oklab,var(--surface) 92%,var(--accent) 8%);
  color:var(--text);
}

.full{
  width:100%;
}

.trust-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.trust-list span{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.58);
  border:1px solid color-mix(in oklab,var(--line) 82%,transparent);
  color:var(--text);
  font-size:12px;
  font-weight:700;
}

.dark .trust-list span{
  background:rgba(255,255,255,.06);
}

.hero-card{
  position:relative;
  min-height:470px;
  display:grid;
  place-items:center;
}

.phone-mockup{
  width:min(330px,100%);
  border-radius:34px;
  padding:18px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,var(--surface),var(--surface-2));
  box-shadow:var(--shadow);
}

.phone-top{
  width:92px;
  height:8px;
  border-radius:999px;
  background:var(--line);
  margin:2px auto 22px;
}

.deal-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border-radius:20px;
  background:color-mix(in oklab,var(--surface) 90%,var(--accent) 10%);
  border:1px solid var(--line);
  margin-bottom:12px;
}

.deal-icon{
  width:46px;
  height:46px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:var(--chip);
  font-size:22px;
}

.deal-item strong{
  display:block;
  font-size:14px;
}

.deal-item span{
  display:block;
  color:var(--muted);
  font-size:12px;
  margin-top:2px;
}

.phone-cta{
  margin-top:16px;
  border-radius:18px;
  padding:14px;
  text-align:center;
  font-weight:800;
  color:#fff;
  background:linear-gradient(180deg,var(--accent),var(--accent-strong));
  box-shadow:var(--shadow-soft);
}

.floating-card{
  position:absolute;
  width:210px;
  padding:14px;
  border-radius:20px;
  background:rgba(255,255,255,.82);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  backdrop-filter:blur(14px);
}

.dark .floating-card{
  background:rgba(43,43,43,.82);
}

.floating-card strong{
  display:block;
  margin-top:3px;
  font-size:14px;
  line-height:1.35;
}

.mini-label{
  color:var(--muted);
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.card-one{
  top:32px;
  left:0;
}

.card-two{
  right:0;
  bottom:42px;
}

.stats-section{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:4px;
}

.stat-card{
  padding:18px;
  border-radius:22px;
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.stat-card strong{
  display:block;
  color:var(--accent);
  font-size:26px;
  line-height:1;
  margin-bottom:10px;
}

.stat-card span{
  display:block;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
  font-weight:600;
}

.section{
  padding-block:34px;
}

.section-head{
  margin-bottom:18px;
}

.section-head.center{
  max-width:720px;
  margin-inline:auto;
  text-align:center;
}

.section-head h2,
.work-grid h2,
.join-copy h2{
  margin:0;
  font-size:clamp(24px,3vw,36px);
  line-height:1.15;
  letter-spacing:-.03em;
}

.section-head p,
.work-grid p,
.join-copy p{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.75;
  font-size:14px;
}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.benefit-card{
  padding:20px;
  border-radius:24px;
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  transition:transform .18s ease, border-color .18s ease;
}

.benefit-card:hover{
  transform:translateY(-3px);
  border-color:color-mix(in oklab,var(--accent) 35%,var(--line));
}

.benefit-icon{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:var(--chip);
  margin-bottom:14px;
  font-size:24px;
}

.benefit-card h3{
  margin:0 0 8px;
  font-size:16px;
}

.benefit-card p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}

.work-section{
  padding-block:44px;
  background:
    radial-gradient(circle at left center, color-mix(in oklab,var(--accent) 18%,transparent), transparent 34%),
    color-mix(in oklab,var(--surface) 88%,var(--accent) 12%);
  border-block:1px solid var(--line);
}

.work-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
  align-items:start;
}

.steps{
  display:grid;
  gap:12px;
}

.step{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:14px;
  padding:16px;
  border-radius:22px;
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.step > span{
  width:44px;
  height:44px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg,var(--accent),var(--accent-strong));
  color:#fff;
  font-weight:800;
}

.step h3{
  margin:0 0 4px;
  font-size:15px;
}

.step p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.65;
}

.audience-grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:12px;
}

.audience-card{
  min-height:86px;
  display:grid;
  place-items:center;
  text-align:center;
  padding:14px;
  border-radius:20px;
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  color:var(--text);
  font-weight:800;
  font-size:13px;
}

.join-card{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  padding:clamp(20px,3vw,32px);
  border-radius:32px;
  background:var(--hero);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.check-list{
  list-style:none;
  padding:0;
  margin:20px 0 0;
  display:grid;
  gap:10px;
}

.check-list li{
  position:relative;
  padding-left:30px;
  color:var(--text);
  font-size:14px;
  font-weight:600;
}

.check-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:-2px;
  width:22px;
  height:22px;
  border-radius:999px;
  display:grid;
  place-items:center;
  color:#fff;
  background:var(--accent);
  font-size:12px;
  font-weight:800;
}

.join-form{
  padding:18px;
  border-radius:26px;
  background:rgba(255,255,255,.72);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.dark .join-form{
  background:rgba(43,43,43,.76);
}

.join-form label{
  display:grid;
  gap:8px;
  margin-bottom:14px;
  color:var(--text);
  font-size:13px;
  font-weight:800;
}

.join-form input,
.join-form select,
.join-form textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:16px;
  background:var(--surface);
  color:var(--text);
  padding:13px 14px;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease;
}

.join-form textarea{
  resize:vertical;
}

.join-form input:focus,
.join-form select:focus,
.join-form textarea:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 4px color-mix(in oklab,var(--accent) 20%,transparent);
}

.form-note{
  margin:12px 0 0;
  color:var(--muted);
  font-size:12px;
  line-height:1.6;
  text-align:center;
}

.faq-section{
  padding-block:30px 44px;
}

.faq-list{
  max-width:820px;
  margin-inline:auto;
  display:grid;
  gap:12px;
}

details{
  border-radius:20px;
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
}

summary{
  cursor:pointer;
  padding:16px 18px;
  font-weight:800;
}

details p{
  margin:0;
  padding:0 18px 18px;
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}

.footer{
  margin-top:auto;
  border-top:1px solid var(--line);
  background:color-mix(in oklab,var(--surface) 80%,var(--bg) 20%);
}

.footer-inner{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  color:var(--muted);
  font-size:13px;
}

.footer-inner p{
  margin:0;
}

.footer-inner a{
  font-weight:800;
  text-decoration:none;
  color:var(--accent);
}

@media (max-width:980px){
  .hero-grid{
    grid-template-columns:1fr;
  }

  .hero-card{
    min-height:420px;
    order:-1;
  }

  .stats-section{
    grid-template-columns:1fr;
  }

  .benefit-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .work-grid{
    grid-template-columns:1fr;
  }

  .audience-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .join-card{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .nav{
    min-height:70px;
  }

  .brand-title{
    font-size:16px;
  }

  .brand-subtitle{
    font-size:11px;
  }

  .hero-section{
    padding-top:18px;
  }

  .hero-copy{
    border-radius:26px;
    padding:22px;
  }

  .hero-copy h1{
    font-size:34px;
  }

  .hero-text{
    font-size:14px;
  }

  .hero-actions{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .hero-card{
    min-height:390px;
  }

  .phone-mockup{
    width:min(300px,100%);
    border-radius:28px;
  }

  .floating-card{
    width:178px;
    padding:12px;
  }

  .floating-card strong{
    font-size:12px;
  }

  .card-one{
    top:8px;
    left:0;
  }

  .card-two{
    right:0;
    bottom:12px;
  }

  .benefit-grid{
    grid-template-columns:1fr;
  }

  .audience-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .join-card{
    border-radius:26px;
    padding:18px;
  }

  .join-form{
    padding:14px;
    border-radius:22px;
  }

  .footer-inner{
    min-height:auto;
    padding-block:20px;
    flex-direction:column;
    text-align:center;
  }
}