:root {
  --ink: #101827;
  --muted: #536071;
  --line: #e6dece;
  --paper: #fffaf1;
  --soft: #f5efe4;
  --white: #ffffff;
  --blue: #2457e6;
  --electric: #008cff;
  --blue-dark: #153db4;
  --orange: #c45808;
  --green: #047857;
  --shadow: 0 22px 60px rgba(16, 24, 39, .12);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; }
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 1000;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
}
.skip:focus { left: 12px; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 241, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}
.brand img {
  display: block;
  width: 142px;
  height: auto;
}
.mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ink), #2a3446);
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(16, 24, 39, .18);
  font-size: 10px;
  font-weight: 950;
  outline: 2px solid rgba(255,255,255,.7);
  outline-offset: -8px;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: .94rem;
  font-weight: 800;
  color: var(--muted);
}
.navlinks a { text-decoration: none; }
.navlinks a:hover { color: var(--ink); }
.btn, button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, #0b63ff, #0094ff);
  color: white;
  box-shadow: 0 14px 34px rgba(0, 115, 255, .24);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #064fd8, #0085e6);
  box-shadow: 0 18px 42px rgba(0, 115, 255, .32);
}
.btn-dark { background: var(--ink); color: white; }
.btn-ghost { background: white; border-color: var(--line); color: var(--ink); }
.hero {
  padding: 78px 0 70px;
  background:
    radial-gradient(circle at 84% 12%, rgba(36,87,230,.15), transparent 32%),
    radial-gradient(circle at 6% 44%, rgba(196,88,8,.10), transparent 32%),
    linear-gradient(180deg, #fffaf1 0%, #f7f0e5 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .86fr);
  align-items: center;
  gap: 54px;
}
.hero-grid > * { min-width: 0; }
.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px 7px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 140, 255, .22);
  background: rgba(255, 255, 255, .84);
  color: #17304f;
  box-shadow: 0 10px 28px rgba(16, 24, 39, .06);
  font-weight: 950;
  font-size: .88rem;
  margin-bottom: 13px;
}
.brand-pill img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: block;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  color: #3f4a5a;
  font-weight: 900;
  font-size: .9rem;
  max-width: 100%;
  white-space: normal;
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
h1, h2, h3 { letter-spacing: -0.045em; line-height: 1.02; }
h1 {
  margin: 22px 0 18px;
  font-size: clamp(2.6rem, 6vw, 5.3rem);
  max-width: 780px;
  overflow-wrap: anywhere;
}
h1 span, h2 span { color: var(--blue); }
.price-accent {
  color: var(--electric);
  text-shadow: 0 8px 28px rgba(0, 140, 255, .22);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  margin: 0 0 14px;
}
h3 { margin: 0 0 8px; font-size: 1.12rem; }
.lead {
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
  margin: 0 0 28px;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.micro { margin-top: 14px; color: var(--muted); font-size: .94rem; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.proof {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
}
.proof strong { display: block; font-size: 1.35rem; letter-spacing: -0.045em; }
.proof span { display: block; color: var(--muted); font-size: .86rem; font-weight: 750; }
.mockup {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.76);
  padding: 18px;
  box-shadow: var(--shadow);
}
.browser {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.browser-top {
  height: 42px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  background: #f6f0e6;
}
.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6b6b;
}
.browser-top span:nth-child(2) { background: #f2b84b; }
.browser-top span:nth-child(3) { background: #21b06e; }
.preview {
  min-height: 300px;
  padding: 22px;
}
.preview-hero {
  min-height: 180px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, #111827, var(--blue));
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.preview-hero small { font-weight: 850; opacity: .86; }
.preview-hero strong { font-size: 1.55rem; line-height: 1.08; letter-spacing: -0.04em; }
.preview-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.preview-row div { min-height: 72px; border-radius: 14px; border: 1px solid #dfe6f1; background: #f7f9fc; padding: 12px; font-weight: 850; color: #3f4a5a; }
section { padding: 74px 0; }
.section-head { max-width: 760px; margin-bottom: 30px; }
.kicker {
  display: block;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 950;
  font-size: .78rem;
  margin-bottom: 9px;
}
.section-head p { color: var(--muted); font-size: 1.07rem; margin: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card, .panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(16, 24, 39, .045);
}
.card p, .panel p { color: var(--muted); margin: 0; }
.included { background: #f3eee4; }
.list { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.list li { display: flex; gap: 10px; color: #354153; }
.list li:before { content: "✓"; color: var(--green); font-weight: 950; }
.list.no li:before { content: "–"; color: var(--orange); }
.steps { counter-reset: step; display: grid; gap: 14px; }
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}
.step:before {
  content: counter(step);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: white;
  font-weight: 950;
}
.quote {
  border-left: 4px solid var(--blue);
  padding-left: 18px;
  color: #354153;
  font-weight: 750;
}
.cta-band {
  background: var(--ink);
  color: white;
}
.cta-band p { color: #d7deea; }
.form {
  display: grid;
  gap: 14px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { display: grid; gap: 7px; color: #354153; font-weight: 850; font-size: .92rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid #d5dde8;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: white;
}
input:focus, select:focus, textarea:focus, .btn:focus {
  outline: 3px solid rgba(36, 87, 230, .22);
  outline-offset: 2px;
}
.footer {
  background: #080d17;
  color: #aeb8c8;
  padding: 34px 0;
}
.footer a { color: #f4f7fb; text-decoration: none; }
.footer-brand {
  display: grid;
  gap: 8px;
}
.footer-brand img {
  display: block;
  width: 124px;
  height: auto;
}
.footer-brand p { margin: 0; }
.foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}
.foot-links { display: flex; flex-wrap: wrap; gap: 14px; }
.landing-hero { padding: 62px 0; }
.landing-hero .hero-grid { grid-template-columns: minmax(0, 1fr) 380px; }
.breadcrumb { color: var(--muted); font-size: .92rem; margin-bottom: 22px; }
.table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.table th, .table td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.table th { background: #f5efe4; font-size: .88rem; text-transform: uppercase; letter-spacing: .05em; }
.mobile-sticky { display: none; }
@media (prefers-reduced-motion: no-preference) {
  .btn { transition: transform .16s ease, background-color .16s ease; }
  .btn:hover { transform: translateY(-1px); }
}
@media (max-width: 920px) {
  .hero-grid, .landing-hero .hero-grid, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .navlinks a:not(.nav-cta) { display: none; }
  .mockup { max-width: 620px; }
}
@media (max-width: 560px) {
  .wrap { width: calc(100vw - 28px); max-width: calc(100vw - 28px); }
  .nav { min-height: 64px; }
  .brand img { width: 112px; }
  .mark { width: 36px; height: 36px; }
  .navlinks { display: none; }
  .hero { padding: 52px 0 48px; }
  .eyebrow { display: flex; align-items: flex-start; line-height: 1.35; }
  h1 { font-size: clamp(1.95rem, 8.9vw, 2.25rem); line-height: 1.04; letter-spacing: -0.04em; }
  .hero h1,
  .landing-hero h1,
  .hero .lead,
  .landing-hero .lead,
  .hero .micro,
  .eyebrow {
    width: min(310px, calc(100vw - 56px));
    max-width: min(310px, calc(100vw - 56px));
  }
  .actions {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }
  .lead { font-size: 1.03rem; }
  .actions .btn { width: 100%; }
  .proof-grid, .form-grid, .preview-row { grid-template-columns: 1fr; }
  section { padding: 54px 0; }
  .mobile-sticky { display: none; }
  .mobile-sticky .btn { width: 100%; box-shadow: 0 16px 35px rgba(36, 87, 230, .28); }
  body { padding-bottom: 0; }
}
