:root {
  color-scheme: light;
  --ink: #171a2d;
  --muted: #62657a;
  --line: #dedff0;
  --paper: #f8f8fc;
  --white: #ffffff;
  --indigo: #5d5fa9;
  --indigo-dark: #393b78;
  --indigo-soft: #ececff;
  --warm: #f3dfca;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 86% 8%, rgba(131, 133, 208, 0.16), transparent 25rem),
    var(--paper);
}

a { color: inherit; }

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: var(--indigo);
  box-shadow: 0 8px 20px rgba(72, 74, 150, 0.22);
}

nav { display: flex; gap: 30px; }
nav a { color: var(--muted); font-size: 0.94rem; font-weight: 650; text-decoration: none; }
nav a:hover { color: var(--ink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--indigo);
  border-radius: 12px;
  color: var(--white);
  background: var(--indigo);
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(70, 72, 145, 0.2);
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); background: var(--indigo-dark); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 0.9rem; }
.button-outline { color: var(--indigo-dark); background: transparent; box-shadow: none; }
.button-outline:hover { color: var(--white); }
.button-light { color: var(--indigo-dark); background: var(--white); border-color: var(--white); }

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  padding: 82px 0 96px;
}

.eyebrow,
.mini-label,
.package-name {
  margin: 0 0 18px;
  color: var(--indigo);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 6vw, 5.85rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.24rem);
  line-height: 1.68;
}

.hero-actions { display: flex; align-items: center; gap: 26px; }
.text-link { color: var(--indigo-dark); font-weight: 750; text-underline-offset: 4px; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.trust-list li::before { content: "✓"; margin-right: 8px; color: var(--indigo); }

.browser-card {
  position: relative;
  min-height: 470px;
  overflow: visible;
  border: 1px solid #d8d9eb;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 35px 85px rgba(49, 52, 102, 0.18);
  transform: rotate(1.4deg);
}

.browser-bar {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  border-bottom: 1px solid #e5e6f1;
}

.browser-bar span { width: 9px; height: 9px; border-radius: 50%; background: #cbcce2; }
.browser-content { padding: clamp(48px, 7vw, 78px) clamp(32px, 6vw, 60px); }
.browser-content h2 { margin-bottom: 20px; font-size: clamp(2.1rem, 4vw, 3.35rem); line-height: 1.04; letter-spacing: -0.05em; }
.browser-content > p:not(.mini-label) { max-width: 340px; color: var(--muted); line-height: 1.6; }
.mini-button { display: inline-flex; margin-top: 18px; padding: 12px 17px; border-radius: 9px; color: var(--white); background: var(--ink); font-size: 0.85rem; font-weight: 750; }

.floating-note {
  position: absolute;
  right: -26px;
  bottom: 32px;
  width: min(250px, 70%);
  padding: 18px 20px;
  border: 1px solid #d8d9ed;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(39, 42, 86, 0.18);
  transform: rotate(-3deg);
}

.floating-note strong,
.floating-note span { display: block; }
.floating-note strong { margin-bottom: 5px; font-size: 0.92rem; }
.floating-note span { color: var(--muted); font-size: 0.78rem; }

.proof-strip {
  display: grid;
  grid-template-columns: 0.8fr repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip > * { margin: 0; padding: 28px 22px; border-right: 1px solid var(--line); }
.proof-strip > *:last-child { border-right: 0; }
.proof-strip > p { align-self: center; padding-left: 0; color: var(--muted); font-size: 0.88rem; }
.proof-strip strong,
.proof-strip span { display: block; }
.proof-strip strong { margin-bottom: 5px; font-size: 0.96rem; }
.proof-strip span { color: var(--muted); font-size: 0.78rem; line-height: 1.4; }

.section { padding: 120px 0; }
.section-heading { max-width: 670px; margin-bottom: 56px; }
.section-heading.compact { margin-bottom: 38px; }
.section-heading h2,
.cta h2 { margin-bottom: 24px; font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: 1.02; letter-spacing: -0.055em; }
.section-heading > p:last-child { max-width: 550px; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-grid article {
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}
.feature-number { display: inline-grid; place-items: center; width: 40px; height: 40px; margin-bottom: 58px; border-radius: 10px; color: var(--indigo); background: var(--indigo-soft); font-size: 0.76rem; font-weight: 850; }
.feature-grid h3 { margin-bottom: 14px; font-size: 1.25rem; }
.feature-grid p { margin-bottom: 0; color: var(--muted); line-height: 1.65; }

.showcase { padding-top: 70px; }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.showcase-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  overflow: hidden;
  border-radius: 22px;
  text-decoration: none;
  transition: transform 180ms ease;
}
.showcase-card:hover { transform: translateY(-5px); }
.showcase-card.warm { background: linear-gradient(145deg, #f2dec7, #dcae80); }
.showcase-card.cool { color: var(--white); background: linear-gradient(145deg, #8588c9, #474984); }
.showcase-tag { align-self: flex-start; padding: 8px 11px; border: 1px solid currentColor; border-radius: 999px; font-size: 0.72rem; font-weight: 750; text-transform: uppercase; letter-spacing: 0.08em; }
.showcase-title { font-size: clamp(3.5rem, 7vw, 6.5rem); font-weight: 850; letter-spacing: -0.07em; }
.showcase-link { font-weight: 750; }

.package-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.package-card { padding: clamp(32px, 5vw, 52px); border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.package-card.featured { color: var(--white); background: var(--indigo-dark); border-color: var(--indigo-dark); }
.package-card.featured .package-name { color: #cfd0ff; }
.package-card h3 { max-width: 420px; margin-bottom: 30px; font-size: clamp(1.7rem, 3vw, 2.45rem); line-height: 1.14; letter-spacing: -0.035em; }
.package-card ul { display: grid; gap: 14px; margin: 0 0 38px; padding: 0; list-style: none; }
.package-card li { color: var(--muted); }
.package-card.featured li { color: #e3e3f7; }
.package-card li::before { content: "✓"; margin-right: 10px; color: var(--indigo); font-weight: 900; }
.package-card.featured li::before { color: #bfc1ff; }

.process { padding-top: 50px; }
.process ol { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process li { display: grid; grid-template-columns: 70px 1fr; gap: 20px; align-items: start; padding: 30px 0; border-bottom: 1px solid var(--line); }
.process li > span { color: var(--indigo); font-weight: 850; }
.process strong { display: block; margin-bottom: 8px; font-size: 1.08rem; }
.process li p { margin-bottom: 0; color: var(--muted); }

.cta {
  margin-bottom: 70px;
  padding: clamp(50px, 8vw, 96px);
  border-radius: 26px;
  color: var(--white);
  background: linear-gradient(135deg, #33356e, #676ab2);
  box-shadow: 0 30px 70px rgba(52, 54, 110, 0.2);
}
.cta .eyebrow { color: #d6d7ff; }
.cta h2 { max-width: 900px; }

footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}
footer p { margin: 0; }
footer > a:last-child { color: var(--indigo-dark); font-weight: 700; }

@media (max-width: 900px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 60px; }
  .browser-card { width: min(620px, 94%); justify-self: center; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-strip > p { padding-left: 22px; }
  .proof-strip > * { border-bottom: 1px solid var(--line); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: auto; }
  .feature-number { margin-bottom: 34px; }
  footer { grid-template-columns: 1fr; padding: 45px 0; gap: 18px; }
}

@media (max-width: 640px) {
  .site-header,
  main,
  footer { width: min(100% - 28px, 1180px); }
  .site-header .button { display: none; }
  .hero { min-height: auto; padding: 62px 0 76px; }
  h1 { font-size: clamp(2.85rem, 14vw, 4.2rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .trust-list { flex-direction: column; }
  .browser-card { min-height: 410px; }
  .floating-note { right: -8px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip > * { border-right: 0; }
  .section { padding: 90px 0; }
  .showcase-grid,
  .package-grid { grid-template-columns: 1fr; }
  .showcase-card { min-height: 310px; }
  .cta { padding-inline: 26px; }
}

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

