/* AutoYear landing — production. Dark, modern, conversion-focused. No dependencies. */
:root {
  --bg: #0b0f1a;
  --bg-2: #111725;
  --panel: #161d2e;
  --ink: #e8ecf5;
  --muted: #9aa6be;
  --line: #232c42;
  --brand: #6ea8fe;
  --brand-2: #8b7bff;
  --accent: #33d6a6;
  --stale: #ff6b6b;
  --radius: 16px;
  --wrap: 1080px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { width: min(var(--wrap), 92vw); margin: 0 auto; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; }
a { color: var(--brand); text-decoration: none; }
code {
  background: #0d1220; border: 1px solid var(--line); border-radius: 6px;
  padding: 1px 6px; font-size: 0.9em; color: #cfe0ff;
}
em { font-style: normal; color: #d6def0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 650; border-radius: 999px; cursor: pointer;
  padding: 12px 22px; border: 1px solid transparent; transition: transform .12s ease, box-shadow .2s ease, background .2s;
  font-size: 15px; white-space: nowrap;
}
.btn--sm { padding: 8px 16px; font-size: 14px; }
.btn--lg { padding: 15px 30px; font-size: 17px; }
.btn--primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #0b0f1a; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(110, 168, 254, .35); }
.btn--primary:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); color: #fff; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 15, 26, 0.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; }
.brand__mark {
  display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #0b0f1a; font-weight: 900; font-size: 14px;
}
.nav__links { display: flex; align-items: center; gap: 22px; }
.nav__links a { color: var(--muted); font-weight: 550; font-size: 15px; }
.nav__links a:hover { color: var(--ink); }
.nav__links a.btn { color: #0b0f1a; }
.lang { display: inline-flex; gap: 2px; border: 1px solid var(--line); border-radius: 999px; padding: 2px; background: var(--panel); }
.lang button { background: transparent; border: 0; color: var(--muted); font-weight: 700; font-size: 12px; padding: 5px 9px; border-radius: 999px; cursor: pointer; letter-spacing: .03em; }
.lang button:hover { color: var(--ink); }
.lang button.is-active { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #0b0f1a; }
@media (max-width: 860px) { .nav__links a:not(.btn) { display: none; } }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 92px 0 72px; text-align: center; }
.hero__glow {
  position: absolute; inset: -30% 0 auto 0; height: 520px; pointer-events: none;
  background: radial-gradient(60% 60% at 50% 0%, rgba(139, 123, 255, .28), transparent 70%),
              radial-gradient(40% 50% at 70% 20%, rgba(51, 214, 166, .18), transparent 70%);
  filter: blur(10px); z-index: 0;
}
.hero__inner { position: relative; z-index: 1; max-width: 800px; }
.eyebrow {
  display: inline-block; color: var(--accent); font-weight: 700; font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase; margin: 0 0 18px;
  border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px; background: var(--panel);
}
.hero__title { font-size: clamp(32px, 5.4vw, 56px); margin: 0 0 20px; }
.hl { background: linear-gradient(120deg, var(--brand), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stale { color: var(--stale); text-decoration: line-through; text-decoration-thickness: 2px; }
.hero__sub { font-size: clamp(16px, 2.2vw, 20px); color: var(--muted); margin: 0 auto 30px; max-width: 640px; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__trust { list-style: none; display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; padding: 0; margin: 30px 0 0; color: var(--muted); font-size: 14px; }

/* ---------- sections ---------- */
.section { padding: 74px 0; }
.band { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section__head h2 { font-size: clamp(26px, 3.6vw, 38px); margin: 0 0 12px; }
.section__sub { color: var(--muted); font-size: 18px; margin: 0; }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.card__icon { font-size: 30px; margin-bottom: 12px; }
.card h3 { margin: 0 0 8px; font-size: 19px; }
.card p { margin: 0; color: var(--muted); }
.fineprint { margin: 32px auto 0; max-width: 720px; text-align: center; color: var(--muted); font-size: 14.5px; background: var(--panel); border: 1px dashed var(--line); border-radius: 12px; padding: 16px 20px; }

/* ---------- steps ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 0; margin: 0; counter-reset: step; }
.step { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; position: relative; }
.step--hero { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand) inset, var(--shadow); }
.step__num { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #0b0f1a; margin-bottom: 14px; }
.step h3 { margin: 0 0 8px; font-size: 20px; }
.step p { margin: 0; color: var(--muted); }
.how__note { margin: 28px auto 0; max-width: 720px; text-align: center; background: rgba(51,214,166,.08); border: 1px solid rgba(51,214,166,.3); border-radius: 12px; padding: 16px 20px; color: #cdeee1; }

/* ---------- demo ---------- */
.demo { max-width: 640px; margin: 0 auto; }
.demo__controls { display: flex; gap: 12px; justify-content: center; margin-bottom: 16px; }
.demo__status { text-align: center; color: var(--muted); min-height: 48px; }
.demo__status.is-done { color: var(--accent); font-weight: 600; }
.demo__caption { text-align: center; color: var(--muted); font-size: 14px; margin-top: 16px; }
.browser { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.browser__bar { display: flex; align-items: center; gap: 7px; background: #e9edf5; padding: 10px 14px; border-bottom: 1px solid #d3d9e6; }
.browser__dot { width: 11px; height: 11px; border-radius: 50%; background: #c3ccdb; }
.browser__url { margin-left: 12px; font-size: 12px; color: #6b7688; background: #fff; border-radius: 6px; padding: 3px 12px; }
.browser__body { padding: 30px 26px; }
.mock-site { color: #1c2333; font-family: Georgia, "Times New Roman", serif; }
.mock-site h4 { margin: 0 0 6px; font-size: 24px; color: #12385f; }
.mock-site__lede { margin: 0 0 4px; color: #444; }
.mock-site__mid { margin: 0 0 22px; color: #8791a3; font-size: 13px; }
.mock-site__footer { border-top: 1px solid #e3e7ee; padding-top: 14px; font-size: 14px; color: #55607a; transition: background .4s; }
.mock-site__footer.flash { background: #fff7cc; }

/* ---------- pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; display: flex; flex-direction: column; position: relative; }
.plan--featured { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-6px); }
.plan__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #0b0f1a; font-size: 12px; font-weight: 800; padding: 5px 14px; border-radius: 999px; letter-spacing: .04em; }
.plan__name { margin: 0 0 8px; font-size: 20px; }
.plan__price { margin: 0 0 4px; }
.plan__amt { font-size: 40px; font-weight: 800; }
.plan__once { color: var(--muted); font-size: 14px; }
.plan__tag { color: var(--muted); margin: 0 0 18px; font-size: 14.5px; }
.plan__feats { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; flex: 1; }
.plan__feats li { color: #cdd6e8; font-size: 15px; }
.plan__cta { width: 100%; }
.pricing__local { text-align: center; color: var(--muted); margin: 28px 0 0; }

/* single-plan layout */
.pricing--single { grid-template-columns: minmax(0, 460px); justify-content: center; }
.plan--solo { text-align: left; }
.plan--solo .plan__price { text-align: center; }
.plan--solo .plan__amt { font-size: 52px; }
.plan__norefund { margin: 16px 0 0; color: var(--muted); font-size: 12.5px; text-align: center; border-top: 1px solid var(--line); padding-top: 14px; }
.plan__tag { text-align: center; }

/* tax / price-by-country table */
.taxtable { max-width: 720px; margin: 46px auto 0; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.taxtable h3 { margin: 0 0 6px; font-size: 20px; text-align: center; }
.taxtable__sub { margin: 0 0 18px; color: var(--muted); font-size: 14px; text-align: center; }
.taxtable table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.taxtable th, .taxtable td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.taxtable th { color: var(--muted); font-weight: 650; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; }
.taxtable td:last-child, .taxtable th:last-child { text-align: right; font-weight: 650; }
.taxtable tbody tr:last-child td { border-bottom: 0; }
.taxtable__foot { margin: 16px 0 0; color: var(--muted); font-size: 12.5px; text-align: center; }

.how__guide { display: inline-block; margin-top: 10px; font-weight: 650; }

/* ---------- checkout placeholder ---------- */
.checkout { margin: 40px auto 0; max-width: 620px; }
.checkout__box { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; text-align: center; }
.checkout__todo { color: var(--muted); font-size: 14px; background: #0d1220; border: 1px dashed var(--line); border-radius: 10px; padding: 14px; margin: 12px 0 18px; }

/* ---------- faq ---------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 4px 20px; }
.faq summary { cursor: pointer; font-weight: 650; padding: 16px 0; list-style: none; position: relative; padding-right: 30px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 14px; font-size: 22px; color: var(--brand); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0 0 18px; color: var(--muted); }

/* ---------- final cta ---------- */
.cta-final { text-align: center; }
.cta-final__inner { background: linear-gradient(135deg, rgba(110,168,254,.14), rgba(139,123,255,.14)); border: 1px solid var(--line); border-radius: 22px; padding: 54px 28px; }
.cta-final h2 { font-size: clamp(24px, 3.4vw, 34px); margin: 0 0 12px; }
.cta-final p { color: var(--muted); margin: 0 0 26px; font-size: 18px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 46px 0 30px; background: var(--bg-2); }
.footer__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer__tag { color: var(--muted); font-size: 14px; margin: 12px 0 0; max-width: 240px; }
.footer__cols { display: flex; gap: 60px; }
.footer__col h4 { margin: 0 0 12px; font-size: 14px; color: var(--ink); }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer__col a { color: var(--muted); font-size: 14px; }
.footer__col a:hover { color: var(--ink); }
.footer__legal { width: min(var(--wrap), 92vw); margin: 34px auto 0; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 13px; }

@media (max-width: 820px) {
  .cards, .steps, .pricing { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
}
