:root {
  --ink: #231f20;
  --muted: #62646b;
  --soft: #f7f4ef;
  --surface: #ffffff;
  --line: #e7e1d8;
  --gold: #d99000;
  --gold-soft: #f2c24b;
  --mauve: #94617f;
  --coral: #c44b58;
  --teal: #3a6f72;
  --dark: #171414;
  --dark-soft: #262020;
  --shadow: 0 18px 45px rgba(35, 31, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}

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

.announcement {
  background: var(--gold);
  color: #111;
  text-align: center;
  font-weight: 650;
  padding: 12px 18px;
}

.announcement p {
  font-size: 0.95rem;
}

.announcement a {
  color: #005d63;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(35, 31, 32, 0.08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1240px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 78px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:not(.button) {
  color: var(--muted);
}

.nav-links a:not(.button):hover,
.nav-links a:not(.button):focus {
  color: var(--ink);
}

.login-link {
  margin-left: 8px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.language-switcher a {
  border-radius: 4px;
  padding: 6px 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

.nav-links .language-switcher a:hover,
.nav-links .language-switcher a:focus {
  color: var(--ink);
  background: var(--soft);
}

.nav-links .language-switcher a[aria-current="page"] {
  color: #fff;
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--ink);
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 12px 24px rgba(196, 75, 88, 0.24);
}

.button-primary:hover,
.button-primary:focus {
  background: #ad3d49;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-secondary.dark {
  background: var(--ink);
  color: #fff;
}

.button-outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.button-outline:hover,
.button-outline:focus {
  border-color: var(--coral);
  color: var(--coral);
}

.section {
  padding: 96px 0;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-dark {
  color: #fff;
  background: var(--dark);
}

.section-warm {
  background: var(--soft);
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 96px 0 72px;
}

.hero-media,
.final-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.final-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 10, 10, 0.9) 0%, rgba(12, 10, 10, 0.72) 42%, rgba(12, 10, 10, 0.2) 100%);
}

.hero-inner,
.final-inner {
  position: relative;
  z-index: 2;
}

.hero-inner {
  max-width: 1180px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-dark .eyebrow {
  color: var(--gold-soft);
}

h1,
h2,
h3 {
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: 4.25rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 690px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  width: min(820px, 100%);
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(20, 18, 18, 0.56);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  overflow: hidden;
}

.hero-proof div {
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof dt {
  color: #fff;
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.hero-proof dd {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: center;
  gap: 74px;
}

.copy-block p:not(.eyebrow),
.section-heading p,
.story-copy p,
.faq-intro p,
.final-inner p,
.footer-inner p,
.legal-content p {
  color: var(--muted);
}

.section-dark .copy-block p:not(.eyebrow),
.section-dark .final-inner p {
  color: rgba(255, 255, 255, 0.78);
}

.copy-block p:not(.eyebrow) {
  margin-top: 20px;
  font-size: 1.05rem;
}

.image-frame,
.story-image {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--line);
}

.image-frame img,
.story-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.international-section .image-frame img {
  aspect-ratio: 16 / 10;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 1.06rem;
}

.feature-grid,
.pricing-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card,
.price-card,
.stat-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-card {
  padding: 30px;
}

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 36px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.feature-card h3,
.price-card h3 {
  color: var(--ink);
}

.feature-card p {
  margin-top: 14px;
  color: var(--muted);
}

.visual-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 72px;
}

.story-copy p {
  margin-top: 20px;
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
}

.stats-band {
  padding-top: 0;
  background: #fff;
}

.stat-card {
  overflow: hidden;
  text-align: center;
}

.stat-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.stat-card strong {
  display: block;
  margin-top: 24px;
  color: var(--mauve);
  font-size: 3rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  padding: 10px 24px 28px;
  color: var(--muted);
  font-weight: 700;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag-cloud span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 750;
}

.pricing {
  background: #fff;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
}

.price-card.highlighted {
  border-color: rgba(196, 75, 88, 0.42);
  box-shadow: var(--shadow);
}

.badge {
  align-self: flex-start;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 6px 11px;
  color: #fff;
  background: var(--mauve);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin-top: 18px;
  color: var(--ink);
  font-size: 3.2rem;
  font-weight: 950;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 28px 0 32px;
  color: var(--muted);
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
}

.price-card .button {
  margin-top: auto;
}

.faq-section {
  background: var(--soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}

.faq-intro p {
  margin-top: 18px;
  margin-bottom: 28px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  padding: 0 24px 22px;
  color: var(--muted);
}

details a {
  color: var(--coral);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.final-inner {
  max-width: 680px;
}

.final-inner h2 {
  color: #fff;
}

.final-inner p {
  margin-top: 18px;
  margin-bottom: 28px;
  font-size: 1.1rem;
}

.site-footer {
  padding: 42px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.footer-inner p {
  font-size: 0.95rem;
}

.footer-inner nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.footer-inner a:hover,
.footer-inner a:focus {
  color: var(--coral);
}

.legal-main {
  padding: 70px 0 90px;
  background: var(--soft);
}

.legal-content {
  max-width: 860px;
  padding: 48px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.legal-content h1 {
  color: var(--ink);
  font-size: 3rem;
}

.legal-content h2 {
  margin-top: 34px;
  color: var(--ink);
  font-size: 1.7rem;
}

.legal-content p {
  margin-top: 16px;
}

.legal-content ul {
  margin-top: 16px;
  padding-left: 20px;
  color: var(--muted);
}

.legal-content a {
  color: var(--coral);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .button,
  .reveal {
    transition: none;
  }

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

@media (max-width: 980px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .nav-links .language-switcher {
    width: max-content;
    margin: 8px 0;
  }

  .nav-links .language-switcher a {
    padding: 8px 10px;
  }

  .nav-links .button {
    margin-top: 6px;
  }

  .login-link {
    margin-left: 0;
  }

  .hero {
    min-height: 680px;
  }

  .hero-overlay {
    background: rgba(12, 10, 10, 0.72);
  }

  .split,
  .visual-story,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .feature-grid,
  .pricing-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-inner nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .announcement {
    padding: 10px 16px;
  }

  .announcement p {
    font-size: 0.88rem;
  }

  .nav-shell,
  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .nav-shell {
    min-height: 66px;
  }

  .brand img {
    width: 68px;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    min-height: auto;
    padding: 74px 0 44px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy,
  .copy-block p:not(.eyebrow),
  .section-heading p:not(.eyebrow),
  .story-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .hero-proof div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .feature-card,
  .price-card {
    padding: 24px;
  }

  .stat-card strong {
    font-size: 2.4rem;
  }

  .legal-content {
    padding: 28px;
  }

  .legal-content h1 {
    font-size: 2.25rem;
  }
}
