:root {
  --bg: #f7f0e5;
  --bg-soft: #fff9ef;
  --ink: #161b2b;
  --ink-soft: #4b5268;
  --line: rgba(22, 27, 43, 0.12);
  --accent: #ff7a1a;
  --accent-deep: #d85700;
  --accent-ink: #ffffff;
  --mint: #67c9a4;
  --steel: #2f4b8d;
  --radius: 18px;
  --shadow: 0 14px 34px rgba(20, 24, 37, 0.12);
  --max: 1140px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: "Sora", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  background:
    radial-gradient(1200px 650px at -10% -20%, rgba(255, 122, 26, 0.16), transparent 70%),
    radial-gradient(950px 620px at 110% -10%, rgba(47, 75, 141, 0.12), transparent 72%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.skip-link {
  position: absolute;
  top: -44px;
  left: 16px;
  z-index: 40;
  padding: 10px 14px;
  border-radius: 999px;
  background: #111318;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  transition: top 0.16s ease;
}

.skip-link:focus { top: 14px; }

.shell {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(247, 240, 229, 0.86);
  border-bottom: 1px solid rgba(22, 27, 43, 0.08);
}

.topbar-inner {
  width: min(var(--max), 92vw);
  margin: 0 auto;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.bolt {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 122, 26, 0.2);
}

.nav-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.text-link {
  text-decoration: none;
  color: #2d3248;
  font-size: 14px;
  font-weight: 700;
}

.text-link:hover { color: #0f1322; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 11px 17px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(20, 24, 37, 0.09);
  border-color: rgba(22, 27, 43, 0.24);
}

.btn-main {
  border-color: transparent;
  color: var(--accent-ink);
  background: linear-gradient(140deg, var(--accent), var(--accent-deep));
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
}

.brand:focus-visible,
.btn:focus-visible,
.text-link:focus-visible,
.footer-links a:focus-visible,
.card-link:focus-visible {
  outline: 2px solid rgba(255, 122, 26, 0.9);
  outline-offset: 3px;
}

main { padding: 26px 0 30px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr minmax(300px, 420px);
  gap: 28px;
  align-items: start;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: #2f3651;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.display {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(42px, 8vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 11ch;
}

.sub {
  margin: 14px 0 0;
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 18px;
}

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

.proof {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #313953;
  font-size: 13px;
  font-weight: 600;
}

.proof span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  margin-right: 7px;
  vertical-align: middle;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.panel .label {
  color: #4d5674;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.panel .price {
  margin-top: 8px;
  font-size: clamp(40px, 7vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #0f1322;
  font-weight: 800;
}

.panel p {
  margin: 10px 0 0;
  color: #3d4662;
  font-size: 14px;
}

.panel ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #313953;
  font-size: 14px;
}

.panel li { margin: 5px 0; }

.trust-strip {
  margin: 22px 0 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.58);
}

.trust-strip div {
  padding: 14px 10px;
  text-align: center;
  color: #30384f;
  font-size: 13px;
  font-weight: 600;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child { border-right: 0; }

section { padding: 12px 0 26px; }

h1.page-title,
h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(30px, 5vw, 48px);
  letter-spacing: -0.015em;
  line-height: 1.05;
}

.lead {
  margin: 10px 0 0;
  max-width: 70ch;
  color: var(--ink-soft);
  font-size: 17px;
}

.grid-2,
.grid-3,
.faq,
.stack {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card,
.qa {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.card strong,
.qa strong {
  display: block;
  color: #1b2340;
  font-size: 17px;
  line-height: 1.2;
}

.card p,
.qa p,
.card ul,
.card li {
  margin: 8px 0 0;
  color: #3c4560;
  font-size: 14px;
}

.card ul { padding-left: 18px; }
.card li { margin: 4px 0; }

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-link:hover .card {
  border-color: rgba(22, 27, 43, 0.26);
  transform: translateY(-1px);
}

.card-link .card {
  transition: transform 0.14s ease, border-color 0.14s ease;
}

.step-id {
  display: inline-flex;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #4d5674;
}

.demo-shell {
  margin-top: 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(22, 27, 43, 0.18);
  background: #101525;
  box-shadow: var(--shadow);
}

.demo-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #eff3fb;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.demo-top span:last-child {
  color: #d0d8ea;
  font-size: 12px;
}

.demo-frame {
  width: 100%;
  height: 640px;
  border: 0;
  display: block;
  background: #050a16;
}

.link-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link-row a {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #2d3550;
  background: rgba(255, 255, 255, 0.68);
}

.link-row a:hover { border-color: rgba(22, 27, 43, 0.25); }

.cta {
  margin: 10px 0 18px;
  border: 1px solid rgba(255, 122, 26, 0.42);
  border-radius: var(--radius);
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 122, 26, 0.14), rgba(255, 122, 26, 0.05));
}

.cta h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.cta p {
  margin: 10px 0 0;
  color: #352b22;
  max-width: 66ch;
  font-size: 15px;
}

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

.footer {
  border-top: 1px solid var(--line);
  margin-top: 10px;
  padding: 18px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: #4a5066;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #4a5066;
  text-decoration: none;
}

.footer-links a:hover { color: #151a2c; }

@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .demo-frame { height: 560px; }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip div:nth-child(2n) { border-right: 0; }
  .trust-strip div { border-bottom: 1px solid var(--line); }
  .trust-strip div:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 620px) {
  .topbar-inner {
    min-height: 58px;
    padding: 8px 0;
  }

  .btn { min-width: 145px; }

  .text-link { display: none; }

  .sub { font-size: 16px; }

  .demo-frame { height: 500px; }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
