:root {
  color-scheme: light dark;
  --paper: #f4f6f8;
  --surface: #ffffff;
  --ink: #111a27;
  --muted: #566272;
  --line: #cbd2db;
  --cobalt: #1557d6;
  --cobalt-dark: #0c3c9a;
  --navy: #0d1420;
  --pale-blue: #dce8ff;
  --shadow: 0 24px 70px rgba(16, 31, 53, 0.13);
  --radius: 18px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(17, 26, 39, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 26, 39, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--surface);
  border: 2px solid var(--cobalt);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 36px), var(--max));
  margin: 14px auto 0;
  padding: 10px 12px 10px 16px;
  border: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  border-radius: 14px;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 760;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px 8px 8px 2px;
  background: var(--cobalt);
  color: white;
  font-family: Georgia, serif;
  font-weight: 700;
}

.header-actions,
.language-switch,
.hero-actions {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 12px;
}

.language-switch {
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.language-button {
  min-width: 34px;
  padding: 5px 7px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
}

.language-button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 9px;
  font-size: 0.93rem;
  font-weight: 760;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(16, 31, 53, 0.15);
}

.button:focus-visible,
.text-link:focus-visible,
.language-button:focus-visible,
summary:focus-visible,
.compare-range:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--cobalt) 45%, transparent);
  outline-offset: 3px;
}

.button-small {
  min-height: 38px;
  padding: 0 14px;
}

.button-primary {
  border-color: var(--cobalt);
  background: var(--cobalt);
  color: white;
}

.button-primary:hover {
  background: var(--cobalt-dark);
}

.button-light {
  border-color: white;
  background: white;
  color: var(--navy);
}

.button-wide {
  width: 100%;
}

.text-link {
  border-bottom: 1px solid currentColor;
  font-weight: 720;
  text-decoration: none;
}

.hero {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 86px 0 100px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cobalt);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 6.2vw, 6rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 550px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.13rem;
}

.hero-actions {
  gap: 22px;
}

.quick-facts {
  display: flex;
  gap: 27px;
  margin: 46px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.quick-facts li {
  display: grid;
  gap: 1px;
}

.quick-facts strong {
  font-size: 1rem;
}

.quick-facts span {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: -38px;
  right: -5vw;
  width: 74%;
  height: 68%;
  border-radius: 60% 10% 20% 30%;
  background: var(--pale-blue);
  content: "";
  transform: rotate(7deg);
}

.compare {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.2;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius) var(--radius) 70px var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.compare > img,
.compare-before,
.compare-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-before {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 48%;
  overflow: hidden;
  border-right: 2px solid white;
}

.compare-before img {
  width: var(--compare-width, 208.33%);
  max-width: none;
}

.compare-range {
  position: absolute;
  z-index: 6;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.compare-handle {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 48%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 2px solid white;
  border-radius: 50%;
  background: var(--cobalt);
  color: white;
  box-shadow: 0 8px 24px rgba(13, 20, 32, 0.24);
}

.compare-handle span {
  transform: translateY(-1px);
}

.compare-label {
  position: absolute;
  z-index: 4;
  top: 18px;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(13, 20, 32, 0.78);
  color: white;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  backdrop-filter: blur(7px);
}

.compare-label-before {
  left: 18px;
}

.compare-label-after {
  right: 18px;
}

.sample-note,
.fine-print,
.payment-note {
  color: var(--muted);
  font-size: 0.78rem;
}

.sample-note {
  margin: 12px 16px 0 0;
  text-align: right;
}

.promise,
.deliverables,
.second-example,
.process,
.pricing,
.faq,
footer {
  width: min(calc(100% - 48px), var(--max));
  margin-right: auto;
  margin-left: auto;
}

.promise {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  align-items: end;
  padding: 120px 0 56px;
  border-top: 1px solid var(--line);
}

.promise h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.promise > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.03rem;
}

.deliverables {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 14px;
  padding-bottom: 130px;
}

.feature {
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
}

.feature-main {
  grid-row: span 2;
  min-height: 494px;
  padding: 44px;
  background: var(--navy);
  color: white;
}

.feature-main h3 {
  max-width: 400px;
  margin-top: 205px;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.feature p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
}

.feature-main p {
  color: #b9c3d1;
}

.feature-accent {
  grid-column: span 2;
  background: var(--pale-blue);
}

.feature-number {
  color: var(--cobalt);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.feature h3:not(.feature-main h3) {
  margin-top: 70px;
}

.second-example {
  display: grid;
  grid-template-columns: 0.67fr 1.33fr;
  gap: 80px;
  align-items: center;
  padding: 20px 0 140px;
}

.example-copy p:not(.eyebrow) {
  color: var(--muted);
}

.compare-secondary {
  aspect-ratio: 1.35;
  border-radius: 70px var(--radius) var(--radius) var(--radius);
}

.process {
  padding: 118px 0 128px;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 800px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 72px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  min-height: 230px;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 30px 30px 20px 0;
  border-right: 1px solid var(--line);
}

.process-list li + li {
  padding-left: 30px;
}

.process-list li:last-child {
  border-right: 0;
}

.process-list > li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--cobalt);
  border-radius: 50%;
  color: var(--cobalt);
  font-weight: 800;
}

.process-list h3 {
  margin-top: 4px;
}

.process-list p {
  color: var(--muted);
}

.pricing {
  padding: 118px 0 125px;
  border-radius: 28px;
}

.pricing > .section-heading {
  margin-bottom: 64px;
}

.pricing-intro {
  color: var(--muted);
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 20px;
  align-items: end;
  max-width: 960px;
}

.price-card {
  min-height: 360px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.price-card-primary {
  min-height: 530px;
  padding: 48px;
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
}

.price-kicker {
  color: var(--cobalt);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.price-card-primary .price-kicker {
  color: #84abff;
}

.price {
  margin-bottom: 14px;
  font-size: 1rem;
  font-weight: 700;
}

.price span {
  font-family: Georgia, serif;
  font-size: clamp(4.2rem, 7vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price-card > p:not(.price, .price-kicker, .price-saving) {
  color: var(--muted);
}

.price-card-primary > p:not(.price, .price-kicker, .price-saving) {
  color: #b9c3d1;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 32px 0 36px;
  padding: 0;
  list-style: none;
}

.price-card li::before {
  margin-right: 10px;
  color: #84abff;
  content: "✓";
}

.price-saving {
  display: inline-block;
  margin: 36px 0 90px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--cobalt);
  color: var(--cobalt);
  font-weight: 760;
}

.payment-note {
  max-width: 760px;
  margin-top: 20px;
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 740;
}

details p {
  max-width: 680px;
  margin: 14px 30px 0 0;
  color: var(--muted);
}

.final-cta {
  width: min(calc(100% - 36px), 1380px);
  margin: 0 auto;
  padding: 100px max(30px, calc((100% - var(--max)) / 2));
  border-radius: 32px 32px 0 0;
  background: var(--cobalt);
  color: white;
}

.final-cta .eyebrow {
  color: #c7d8ff;
}

.final-cta h2 {
  max-width: 830px;
}

.final-cta p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 28px;
  color: #dbe6ff;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 50px 0 70px;
}

footer p,
.footer-meta a {
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-meta {
  text-align: right;
}

.footer-links {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 720;
}

.legal-page {
  width: min(calc(100% - 48px), 920px);
  min-height: 70vh;
  margin: 0 auto;
  padding: 90px 0 120px;
}

.legal-page h1 {
  max-width: 850px;
  font-size: clamp(3.4rem, 8vw, 6.5rem);
}

.legal-intro {
  max-width: 720px;
  margin-bottom: 65px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-section {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 45px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 780;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-section p:last-child,
.legal-section ul:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin-top: 0;
  padding-left: 20px;
}

.legal-callout {
  padding: 22px 24px;
  border-left: 4px solid var(--cobalt);
  background: var(--pale-blue);
  color: var(--ink) !important;
}

[data-language-content][hidden] {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #0d1420;
    --surface: #141e2d;
    --ink: #f4f6f8;
    --muted: #aab5c3;
    --line: #354152;
    --pale-blue: #172f58;
    --navy: #080d15;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  }

  .button-light {
    background: white;
    color: #0d1420;
  }

  .feature-main,
  .price-card-primary {
    border-color: #263245;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 750px;
  }

  .hero-visual {
    width: min(100%, 760px);
    margin-left: auto;
  }

  .promise,
  .second-example,
  .faq {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .deliverables {
    grid-template-columns: 1fr 1fr;
  }

  .feature-main {
    grid-row: auto;
  }

  .feature-accent {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 8px;
  }

  .site-header .brand > span:last-child,
  .button-small {
    display: none;
  }

  .hero,
  .promise,
  .deliverables,
  .second-example,
  .process,
  .pricing,
  .faq,
  footer {
    width: calc(100% - 28px);
  }

  .hero {
    gap: 54px;
    padding: 60px 0 84px;
  }

  h1 {
    font-size: clamp(2.8rem, 12vw, 3.55rem);
  }

  h2 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-facts {
    gap: 18px;
    justify-content: space-between;
  }

  .quick-facts li {
    max-width: 90px;
  }

  .compare {
    aspect-ratio: 0.95;
    border-radius: 12px 12px 46px 12px;
  }

  .promise {
    padding-top: 90px;
  }

  .deliverables {
    grid-template-columns: 1fr;
    padding-bottom: 100px;
  }

  .feature-main {
    min-height: 420px;
  }

  .feature-main h3 {
    margin-top: 145px;
  }

  .second-example {
    padding-bottom: 100px;
  }

  .compare-secondary {
    aspect-ratio: 0.95;
    border-radius: 46px 12px 12px 12px;
  }

  .process {
    padding: 90px 0;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li + li {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-layout {
    grid-template-columns: 1fr;
  }

  .price-card,
  .price-card-primary {
    min-height: 0;
    padding: 32px 26px;
  }

  .price-saving {
    margin-bottom: 55px;
  }

  .faq {
    padding: 90px 0;
  }

  .final-cta {
    width: calc(100% - 16px);
    padding: 80px 24px;
    border-radius: 22px 22px 0 0;
  }

  footer {
    gap: 35px;
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-page {
    width: calc(100% - 28px);
    padding: 70px 0 90px;
  }

  .legal-page h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
