:root {
  --bg: #050b14;
  --bg-soft: #081321;
  --panel: #0c1828;
  --panel-2: #101e31;
  --line: rgba(160, 202, 255, 0.13);
  --text: #f3f7fc;
  --muted: #9fb0c5;
  --blue: #2979ff;
  --cyan: #38d9ff;
  --violet: #795cff;
  --green: #53e2a3;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.7; }
h1, h2, h3 { font-family: Manrope, Inter, sans-serif; letter-spacing: -0.035em; margin-top: 0; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.top-note {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 7px 16px;
  background: #03070d;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: #aab7c8;
  font-size: 12px;
  text-align: center;
}
.top-note__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px rgba(83,226,163,.8); }
.top-note__divider { opacity: .45; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 11, 20, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 72px; display: flex; align-items: center; gap: 34px; }
.brand { display: flex; align-items: center; gap: 10px; font: 800 15px/1 Manrope, sans-serif; white-space: nowrap; }
.brand__mark {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(145deg, var(--cyan), var(--blue) 55%, var(--violet));
  box-shadow: 0 8px 24px rgba(41,121,255,.3); color: white; font-size: 18px;
}
.header-inner nav { margin-left: auto; display: flex; gap: 28px; }
.header-inner nav a { color: #aab7c8; font-size: 13px; transition: color .2s; }
.header-inner nav a:hover { color: white; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -.01em;
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.button--small { min-height: 42px; padding-inline: 18px; background: rgba(255,255,255,.07); border-color: var(--line); }
.button--primary { background: linear-gradient(135deg, #2388ff, #5158ff 62%, #7255ff); box-shadow: 0 16px 34px rgba(41,121,255,.24); color: white; }
.button--light { background: #f4f8ff; color: #07111f; box-shadow: 0 16px 34px rgba(0,0,0,.18); }
.button--full { width: 100%; }

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,11,20,.98) 0%, rgba(5,11,20,.92) 37%, rgba(5,11,20,.2) 75%, rgba(5,11,20,.52) 100%),
              linear-gradient(0deg, rgba(5,11,20,.86) 0%, transparent 37%);
  pointer-events: none;
}
.hero__backdrop { position: absolute; inset: 0; background: url("assets/hero-darkplanner.webp") center/cover no-repeat; opacity: .84; }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 54px; padding-block: 86px 92px; }
.hero__copy { max-width: 670px; }
.eyebrow, .kicker {
  color: #74ccff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.eyebrow span { width: 26px; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--violet)); }
.hero h1 { font-size: clamp(42px, 5.25vw, 70px); line-height: 1.04; margin-bottom: 25px; }
.hero h1 em { color: #56bdff; font-style: normal; }
.hero__lead { max-width: 650px; color: #b8c5d6; font-size: 18px; margin: 0 0 32px; }
.hero__actions { display: flex; align-items: center; gap: 25px; }
.text-link { color: #c4d0de; font-size: 13px; font-weight: 700; }
.text-link:hover { color: white; }
.hero__trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 42px; max-width: 650px; }
.hero__trust div { padding: 14px 14px 12px; border: 1px solid var(--line); border-radius: 14px; background: rgba(8,19,33,.65); backdrop-filter: blur(12px); }
.hero__trust strong { display: block; margin-bottom: 4px; color: white; font: 800 16px/1.2 Manrope, sans-serif; }
.hero__trust span { color: #899ab0; font-size: 10px; line-height: 1.35; display: block; }

.hero__visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.product-card { width: min(360px, 75%); padding: 17px; border-radius: 28px; background: rgba(7,17,31,.78); border: 1px solid rgba(116,204,255,.22); box-shadow: var(--shadow); backdrop-filter: blur(15px); transform: rotate(2deg); }
.product-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; border-radius: 19px; }
.product-card__caption { display: flex; align-items: center; gap: 8px; padding: 14px 6px 2px; color: #b7c7d8; font-size: 12px; font-weight: 700; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px rgba(83,226,163,.75); }
.float-chip { position: absolute; min-width: 142px; padding: 13px 16px; border-radius: 15px; background: rgba(9,20,35,.91); border: 1px solid rgba(129,187,255,.22); box-shadow: 0 18px 42px rgba(0,0,0,.35); backdrop-filter: blur(14px); }
.float-chip b, .float-chip span { display: block; }
.float-chip b { color: #eaf6ff; font: 800 14px/1.2 Manrope, sans-serif; }
.float-chip span { color: #8296ad; font-size: 10px; margin-top: 4px; }
.float-chip--one { left: -6px; top: 115px; }
.float-chip--two { right: -12px; bottom: 115px; }

.pain-strip { padding: 32px 0; background: #07111e; border-bottom: 1px solid var(--line); }
.pain-strip p { max-width: 920px; margin: 0 auto; text-align: center; color: #aebed0; font-size: 18px; }
.pain-strip strong { color: white; }

.section { padding: 106px 0; position: relative; }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading h2, .workflow-copy h2, .price-wrap h2, .final-cta h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.08; margin: 14px 0 18px; }
.section-heading p, .workflow-copy > p, .price-wrap > div > p { color: var(--muted); margin: 0; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card { min-height: 250px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(14,29,48,.92), rgba(7,17,30,.9)); box-shadow: 0 18px 45px rgba(0,0,0,.14); }
.feature-card--wide { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 22px; }
.feature-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; color: #83d8ff; background: rgba(39,127,255,.12); border: 1px solid rgba(73,163,255,.22); font-size: 24px; margin-bottom: 28px; }
.feature-card--wide .feature-icon { margin: 0; }
.feature-tag { color: #6fbfff; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.feature-card h3 { font-size: 23px; margin: 10px 0 10px; }
.feature-card p { color: #96a8bd; margin: 0; font-size: 14px; }

.section--workflow { background: radial-gradient(circle at 80% 35%, rgba(53,93,255,.15), transparent 35%), #07111e; border-block: 1px solid var(--line); }
.workflow-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.workflow-copy .button { margin-top: 24px; }
.workflow-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.workflow-steps li { display: grid; grid-template-columns: 68px 1fr; gap: 18px; align-items: start; padding: 23px; border: 1px solid var(--line); border-radius: 18px; background: rgba(11,25,42,.82); }
.workflow-steps > li > span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; color: #75ceff; background: rgba(41,121,255,.13); font: 800 13px/1 Manrope, sans-serif; }
.workflow-steps h3 { font-size: 18px; margin: 2px 0 5px; }
.workflow-steps p { color: #90a3b8; font-size: 13px; margin: 0; }

.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fit-card { padding: 32px; border-radius: var(--radius); border: 1px solid var(--line); }
.fit-card--yes { background: linear-gradient(145deg, rgba(27,101,104,.24), rgba(9,25,36,.9)); }
.fit-card--no { background: linear-gradient(145deg, rgba(73,50,110,.24), rgba(16,20,36,.9)); }
.fit-label { font-size: 11px; letter-spacing: .12em; font-weight: 800; color: #75d9be; }
.fit-card--no .fit-label { color: #bba9ff; }
.fit-card ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 16px; }
.fit-card li { position: relative; padding-left: 27px; color: #bdcad8; line-height: 1.55; font-size: 14px; }
.fit-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.fit-card--no li::before { content: "—"; color: #a995ff; }

.section--price { padding-block: 86px; background: radial-gradient(circle at 15% 20%, rgba(41,121,255,.2), transparent 29%), linear-gradient(135deg, #071322, #09101d); border-block: 1px solid var(--line); }
.price-wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.price-box { max-width: 430px; margin-left: auto; padding: 30px; border-radius: 25px; background: rgba(12,25,43,.92); border: 1px solid rgba(113,177,255,.23); box-shadow: var(--shadow); }
.price-box > span { color: #8fa1b6; font-size: 12px; }
.price-box > div { display: flex; align-items: baseline; gap: 8px; margin: 9px 0 20px; }
.price-box strong { font: 800 58px/1 Manrope, sans-serif; letter-spacing: -.06em; }
.price-box small { color: #91a2b6; }
.price-box ul { margin: 0 0 25px; padding: 0; list-style: none; display: grid; gap: 11px; color: #b9c7d6; font-size: 13px; }
.price-box li::before { content: "✓"; margin-right: 9px; color: var(--green); font-weight: 900; }
.price-note { display: block; margin-top: 13px; text-align: center; font-size: 10px; line-height: 1.5; }

.faq-wrap { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }
.faq-list { display: grid; gap: 12px; }
details { border: 1px solid var(--line); border-radius: 16px; background: #091523; overflow: hidden; }
summary { list-style: none; cursor: pointer; padding: 21px 24px; font: 700 15px/1.35 Manrope, sans-serif; display: flex; justify-content: space-between; gap: 20px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: #67c8ff; font-size: 20px; }
details[open] summary::after { content: "−"; }
details p { color: #96a8bd; font-size: 13px; padding: 0 24px 21px; margin: 0; }

.final-cta { padding: 72px 0; background: linear-gradient(120deg, #176ce7, #514ee3 62%, #7049cf); }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta .kicker { color: #c6ebff; }
.final-cta h2 { max-width: 750px; margin-bottom: 12px; }
.final-cta p { margin: 0; color: rgba(255,255,255,.78); }
.final-cta .button { flex-shrink: 0; }

footer { padding: 42px 0 100px; background: #02060c; border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { display: grid; grid-template-columns: .7fr 1.3fr; gap: 60px; align-items: start; }
.footer-inner strong { font-family: Manrope, sans-serif; }
.footer-inner p { color: #708299; font-size: 11px; margin: 7px 0 0; }
.disclosure { text-align: right; }

.mobile-cta { display: none; position: fixed; z-index: 50; left: 0; right: 0; bottom: 0; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(3,8,15,.92); border-top: 1px solid var(--line); backdrop-filter: blur(16px); }

@media (max-width: 980px) {
  .header-inner nav { display: none; }
  .header-inner .button { margin-left: auto; }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; padding-block: 74px 70px; }
  .hero__visual { display: none; }
  .hero::after { background: linear-gradient(90deg, rgba(5,11,20,.98), rgba(5,11,20,.82)), linear-gradient(0deg, rgba(5,11,20,.9), transparent); }
  .workflow-layout, .price-wrap, .faq-wrap { grid-template-columns: 1fr; gap: 48px; }
  .price-box { margin: 0; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--max)); }
  .top-note { font-size: 10px; }
  .top-note__divider { display: none; }
  .header-inner { min-height: 62px; }
  .header-inner > .button { display: none; }
  .brand { font-size: 14px; }
  .hero__grid { padding-block: 60px 54px; }
  .hero h1 { font-size: clamp(39px, 12vw, 54px); }
  .hero__lead { font-size: 16px; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .text-link { text-align: center; }
  .hero__trust { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .section-heading h2, .workflow-copy h2, .price-wrap h2, .final-cta h2 { font-size: 36px; }
  .feature-grid, .fit-grid { grid-template-columns: 1fr; }
  .feature-card--wide { display: block; }
  .feature-card--wide .feature-icon { margin-bottom: 28px; }
  .workflow-steps li { grid-template-columns: 50px 1fr; padding: 18px; gap: 13px; }
  .workflow-steps > li > span { width: 42px; height: 42px; }
  .price-wrap { gap: 34px; }
  .price-box { padding: 24px 20px; }
  .price-box strong { font-size: 49px; }
  .faq-wrap { gap: 24px; }
  .final-cta { padding: 58px 0 86px; }
  .final-cta__inner { align-items: stretch; flex-direction: column; gap: 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .disclosure { text-align: left; }
  .mobile-cta { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
