:root {
  color-scheme: light;
  --ink: #121816;
  --ink-soft: #45524d;
  --paper: #f4f0e7;
  --paper-strong: #fffaf0;
  --line: rgba(18, 24, 22, 0.14);
  --teal: #0b6966;
  --teal-deep: #063d42;
  --signal: #ccf24b;
  --coral: #ed6a5a;
  --blue: #6ea8a7;
  --sky: #dfeee9;
  --mist: #eef2eb;
  --danger: #8d3d32;
  --shadow: 0 26px 84px rgba(18, 24, 22, 0.18);
  --radius: 8px;
  --container: min(1120px, calc(100% - 36px));
  --display: "Iowan Old Style", Charter, Georgia, "Times New Roman", serif;
  --body: "Avenir Next", Avenir, Aptos, Candara, "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body[data-dir="rtl"] {
  direction: rtl;
}

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

a {
  color: inherit;
  text-decoration-color: rgba(11, 105, 102, 0.42);
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-color: currentColor;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper-strong);
  padding: 10px 14px;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(18, 24, 22, 0.1);
  background: rgba(244, 240, 231, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  width: var(--container);
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 128px;
  text-decoration: none;
}

.brand-logo {
  width: 142px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-menu {
  position: relative;
  z-index: 42;
  display: none;
}

.nav-menu summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.78);
  color: var(--ink);
  padding: 0 12px;
  font-size: 0.88rem;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.menu-icon {
  position: relative;
  width: 18px;
  height: 12px;
  display: inline-block;
  border-block: 2px solid currentColor;
}

.menu-icon::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 50%;
  border-top: 2px solid currentColor;
  transform: translateY(-50%);
}

.nav-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-start: 0;
  min-width: 190px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 8px;
  box-shadow: var(--shadow);
}

.nav-menu-panel a {
  min-height: 40px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 11px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 850;
  text-decoration: none;
}

.nav-menu-panel a:hover,
.nav-menu-panel a[aria-current="page"] {
  background: rgba(204, 242, 75, 0.24);
}

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

.language-dropdown {
  position: relative;
  z-index: 40;
}

.language-dropdown summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.78);
  color: var(--ink);
  padding: 0 12px;
  font-size: 0.88rem;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.language-dropdown summary::-webkit-details-marker {
  display: none;
}

.language-dropdown summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-inline-start: 6px;
  border-inline-end: 2px solid currentColor;
  border-block-end: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.language-dropdown[open] summary::after {
  transform: rotate(225deg) translateY(-1px);
}

.language-dropdown summary .language-code,
.language-menu a span {
  min-width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper-strong);
  font-size: 0.72rem;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  min-width: 210px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 8px;
  box-shadow: var(--shadow);
}

.language-menu a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  color: var(--ink);
  padding: 0 10px;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.language-menu a:hover {
  background: rgba(11, 105, 102, 0.08);
}

.language-menu a[aria-current="page"] {
  background: rgba(204, 242, 75, 0.24);
}

.language-menu a[aria-current="page"] span {
  background: var(--teal-deep);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  background: var(--teal);
  color: #ffffff;
  font: 700 0.96rem/1 var(--body);
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button .item-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  flex: 0 0 18px;
  margin: 0;
  background: transparent;
  color: currentColor;
}

.button .item-icon svg {
  width: 18px;
  height: 18px;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--teal-deep);
}

.button.secondary {
  background: transparent;
  border-color: rgba(23, 33, 29, 0.28);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--teal);
  background: rgba(11, 105, 102, 0.07);
}

.button.small {
  min-height: 38px;
  padding: 0 13px;
  font-size: 0.9rem;
}

.notice-band {
  background:
    linear-gradient(90deg, rgba(18, 24, 22, 0.98), rgba(6, 61, 66, 0.98)),
    var(--ink);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.notice-band .inner {
  width: var(--container);
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.notice-band a {
  flex: 0 0 auto;
  color: #ffffff;
  white-space: nowrap;
  word-break: keep-all;
}

.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: center;
  overflow: clip;
  color: #ffffff;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 48%, rgba(204, 242, 75, 0.1) 0 1px, transparent 2px 100%),
    radial-gradient(circle at 78% 28%, rgba(204, 242, 75, 0.18), transparent 26%),
    repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 92px),
    linear-gradient(90deg, #121816 0%, #063d42 58%, #1b3f3d 100%);
  background-size: 28px 28px, auto, auto, auto;
  background-position: center;
}

.hero[data-locale="zh"]::before {
  background:
    radial-gradient(circle at 76% 44%, rgba(204, 242, 75, 0.26), transparent 20%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, #071815 0%, #074c4a 56%, #12312f 100%);
  background-size: auto, 88px 88px, 88px 88px, auto;
}

.hero[data-locale="en"]::before {
  background:
    radial-gradient(ellipse at 82% 24%, rgba(255, 250, 240, 0.18), transparent 30%),
    repeating-linear-gradient(-20deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 118px),
    linear-gradient(102deg, #111816 0%, #083d45 62%, #315f5e 100%);
  background-size: auto;
}

.hero[data-locale="es"]::before {
  background:
    radial-gradient(circle at 78% 36%, rgba(237, 106, 90, 0.44), transparent 26%),
    radial-gradient(circle at 58% 88%, rgba(204, 242, 75, 0.16), transparent 28%),
    repeating-linear-gradient(0deg, rgba(255, 250, 240, 0.045) 0 1px, transparent 1px 74px),
    linear-gradient(108deg, #171a16 0%, #0a514d 54%, #70382f 100%);
  background-size: auto;
}

.hero[data-locale="pt"]::before {
  background:
    radial-gradient(circle at 78% 52%, rgba(204, 242, 75, 0.34), transparent 24%),
    radial-gradient(circle at 90% 18%, rgba(110, 168, 167, 0.26), transparent 28%),
    linear-gradient(135deg, rgba(204, 242, 75, 0.08) 0 22%, transparent 22% 100%),
    linear-gradient(100deg, #0c1a16 0%, #064a40 58%, #23534a 100%);
  background-size: auto;
}

.hero[data-locale="fr"]::before {
  background:
    radial-gradient(ellipse at 80% 30%, rgba(223, 238, 233, 0.18), transparent 34%),
    repeating-linear-gradient(0deg, rgba(255, 250, 240, 0.05) 0 1px, transparent 1px 42px),
    linear-gradient(108deg, #151c1b 0%, #284442 60%, #465d58 100%);
  background-size: auto;
}

.hero[data-locale="id"]::before {
  background:
    radial-gradient(circle at 78% 62%, rgba(110, 168, 167, 0.34), transparent 30%),
    linear-gradient(90deg, transparent 0 68%, rgba(255, 250, 240, 0.07) 68% 72%, transparent 72% 100%),
    linear-gradient(96deg, #0a1b1c 0%, #074b46 56%, #1c6561 100%);
  background-size: auto, 118px 100%, auto;
}

.hero[data-locale="ja"]::before {
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 250, 240, 0.18), transparent 24%),
    radial-gradient(circle at 78% 42%, transparent 0 16%, rgba(204, 242, 75, 0.16) 16% 17%, transparent 17% 100%),
    radial-gradient(circle at 78% 42%, transparent 0 28%, rgba(255, 250, 240, 0.1) 28% 29%, transparent 29% 100%),
    linear-gradient(110deg, #0e1716 0%, #15393a 62%, #263938 100%);
  background-size: auto;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(244, 240, 231, 0), var(--paper));
}

.hero-inner {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 86px 0 110px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  align-items: center;
  gap: clamp(34px, 6vw, 74px);
}

.hero-inner::before {
  content: "";
  position: absolute;
  width: min(54vw, 680px);
  aspect-ratio: 1;
  inset-block-start: 50%;
  inset-inline-end: -14vw;
  z-index: -1;
  border: 1px solid rgba(204, 242, 75, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 33%, rgba(255, 255, 255, 0.08) 33.2% 33.5%, transparent 33.7% 100%),
    radial-gradient(circle, transparent 0 55%, rgba(204, 242, 75, 0.16) 55.2% 55.6%, transparent 55.8% 100%),
    conic-gradient(from 210deg, transparent 0 58%, rgba(204, 242, 75, 0.28), transparent 74% 100%);
  transform: translateY(-50%);
  opacity: 0.7;
  animation: checkpointOrbit 24s linear infinite;
}

.hero-copy-block {
  max-width: 760px;
}

.hero[data-locale="zh"] .hero-copy-block {
  max-width: 700px;
}

.hero[data-locale="fr"] .hero-copy-block,
.hero[data-locale="ja"] .hero-copy-block {
  max-width: 680px;
}

.hero[data-locale="id"] .hero-copy-block {
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--signal);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: 0;
}

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

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
}

.hero-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 28px;
}

.hero-route::before {
  content: "";
  position: absolute;
  inset-inline: 14px;
  top: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(204, 242, 75, 0.8), rgba(255, 255, 255, 0.22), rgba(204, 242, 75, 0.8));
}

.hero-route span {
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: end;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 34px 12px 10px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.11), rgba(255, 250, 240, 0.04)),
    rgba(18, 24, 22, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 850;
}

.hero-route span::before {
  content: "";
  position: absolute;
  inset-block-start: 15px;
  inset-inline-start: 12px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--signal);
  border-radius: 50%;
  background: var(--teal-deep);
  box-shadow: 0 0 0 7px rgba(204, 242, 75, 0.1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.46);
  color: #ffffff;
}

.hero .button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.link-host {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 250, 240, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 750;
}

.review-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 780px;
  margin-top: 22px;
}

.review-meta span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
}

.review-meta strong {
  display: block;
  color: #ffffff;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.review-meta a {
  color: inherit;
  text-decoration-color: rgba(204, 242, 75, 0.58);
}

.hero-module {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(204, 242, 75, 0.22);
  border-radius: 28px;
  padding: 28px;
  background:
    radial-gradient(circle at 72% 18%, rgba(204, 242, 75, 0.24), transparent 30%),
    radial-gradient(circle at 22% 78%, rgba(110, 168, 167, 0.22), transparent 34%),
    linear-gradient(155deg, rgba(255, 250, 240, 0.16), rgba(255, 250, 240, 0.055)),
    rgba(6, 61, 66, 0.52);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.hero-module::before,
.hero-module::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-module::before {
  width: 360px;
  aspect-ratio: 1;
  inset-block-start: 66px;
  inset-inline-end: -120px;
  border: 1px solid rgba(204, 242, 75, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 38%, rgba(255, 255, 255, 0.08) 38.2% 38.8%, transparent 39% 100%),
    conic-gradient(from 160deg, transparent 0 52%, rgba(204, 242, 75, 0.34), transparent 67% 100%);
  animation: orbitSpin 18s linear infinite reverse;
}

.hero-module::after {
  inset-inline: -20%;
  height: 90px;
  inset-block-start: 34%;
  background: linear-gradient(180deg, transparent, rgba(204, 242, 75, 0.16), transparent);
  transform: rotate(-16deg) translateY(-180px);
  animation: scannerSweep 5.8s ease-in-out infinite;
}

.module-chip {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0 12px 0 4px;
  background: rgba(18, 24, 22, 0.28);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.module-chip span {
  min-width: 34px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--signal);
  color: var(--ink);
  font-size: 0.76rem;
}

.module-visual {
  position: relative;
  z-index: 1;
  min-height: 148px;
  margin-top: 34px;
}

.module-title {
  position: relative;
  z-index: 2;
  max-width: 360px;
  margin: 0;
  font-family: var(--display);
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 3.05rem);
  line-height: 1;
}

.module-copy {
  position: relative;
  z-index: 2;
  max-width: 390px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
}

.module-status {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin: 20px 0 0;
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(18, 24, 22, 0.34);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.module-confirm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: end;
  min-height: 140px;
}

.module-confirm span {
  display: grid;
  place-items: center;
  min-height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 250, 240, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
  animation: confirmGlow 4.2s ease-in-out infinite;
}

.module-confirm span:nth-child(2) {
  animation-delay: 0.45s;
}

.module-confirm span:nth-child(3) {
  animation-delay: 0.9s;
}

.module-handoff {
  min-height: 148px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.module-handoff span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 12px 14px;
  background: rgba(255, 250, 240, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
}

.module-handoff i {
  position: relative;
  flex: 1;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.module-handoff i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--signal), transparent);
  animation: handoffFlow 2.8s ease-in-out infinite;
}

.module-cards {
  display: grid;
  gap: 10px;
  max-width: 280px;
}

.module-cards span {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 250, 240, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
  transform: translateX(16px);
  opacity: 0;
  animation: cardSlide 5s ease-in-out infinite;
}

.module-cards span:nth-child(2) {
  animation-delay: 0.22s;
}

.module-cards span:nth-child(3) {
  animation-delay: 0.44s;
}

.module-pass {
  position: relative;
  width: min(320px, 100%);
  min-height: 144px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(204, 242, 75, 0.36);
  border-radius: 18px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(204, 242, 75, 0.18), transparent 52%),
    rgba(255, 250, 240, 0.1);
  animation: passBreathe 4.8s ease-in-out infinite;
}

.module-pass small {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.module-pass strong {
  color: #ffffff;
  font-family: var(--display);
  font-size: 2rem;
}

.module-pass span {
  color: var(--signal);
  font-weight: 850;
}

.module-note {
  position: relative;
  width: min(300px, 100%);
  min-height: 150px;
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 250, 240, 0.18);
  box-shadow: inset 4px 0 0 rgba(204, 242, 75, 0.7);
}

.module-note::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateX(-100%);
  animation: noteSweep 5.5s ease-in-out infinite;
}

.module-note span {
  display: block;
  height: 9px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.module-note span:nth-child(2) {
  width: 78%;
}

.module-note span:nth-child(3) {
  width: 54%;
}

.module-mobile {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 150px;
}

.module-mobile span {
  width: 78px;
  min-height: 132px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background: rgba(18, 24, 22, 0.24);
  color: var(--signal);
  font-weight: 900;
  animation: mobileRise 4.5s ease-in-out infinite;
}

.module-mobile span:nth-child(2) {
  animation-delay: 0.28s;
}

.module-mobile span:nth-child(3) {
  animation-delay: 0.56s;
}

.module-seal {
  min-height: 152px;
  display: grid;
  place-items: center;
}

.module-seal span {
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(204, 242, 75, 0.62);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--display);
  font-size: 2rem;
  box-shadow: inset 0 0 0 12px rgba(255, 250, 240, 0.06);
  animation: sealTurn 16s linear infinite;
}

@keyframes confirmGlow {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 250, 240, 0.1);
  }

  36% {
    border-color: rgba(204, 242, 75, 0.66);
    background: rgba(204, 242, 75, 0.2);
  }
}

@keyframes handoffFlow {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes cardSlide {
  0%,
  18% {
    opacity: 0;
    transform: translateX(16px);
  }

  34%,
  82% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0.72;
    transform: translateX(0);
  }
}

@keyframes passBreathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.025);
  }
}

@keyframes noteSweep {
  0%,
  48% {
    transform: translateX(-100%);
  }

  78%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes mobileRise {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes sealTurn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes checkpointOrbit {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scannerSweep {
  0%,
  24% {
    transform: rotate(-16deg) translateY(-190px);
    opacity: 0;
  }

  42%,
  62% {
    opacity: 1;
  }

  86%,
  100% {
    transform: rotate(-16deg) translateY(250px);
    opacity: 0;
  }
}

.proof-strip {
  margin-top: -54px;
  position: relative;
  z-index: 2;
}

.proof-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 24, 22, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.95), rgba(244, 240, 231, 0.86)),
    var(--paper-strong);
  box-shadow: 0 28px 80px rgba(18, 24, 22, 0.14);
}

.proof-item {
  position: relative;
  min-height: 126px;
  border: 0;
  border-inline-end: 1px solid rgba(18, 24, 22, 0.1);
  border-radius: 0;
  padding: 22px 20px 20px;
  background: transparent;
  box-shadow: none;
}

.proof-item:last-child {
  border-inline-end: 0;
}

.proof-item::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 18% 20%, rgba(204, 242, 75, 0.24), transparent 34%);
  transition: opacity 180ms ease;
}

.proof-item:hover::before {
  opacity: 1;
}

.proof-item > * {
  position: relative;
}

.item-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 8px;
  background: rgba(204, 242, 75, 0.18);
  color: var(--teal-deep);
}

.item-icon svg {
  width: 23px;
  height: 23px;
}

.proof-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 1.16rem;
}

.proof-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.section {
  padding: 92px 0;
}

.section.alt {
  background:
    radial-gradient(circle at 86% 18%, rgba(204, 242, 75, 0.12), transparent 32%),
    var(--paper-strong);
}

.section.tint {
  background:
    linear-gradient(180deg, rgba(223, 238, 233, 0.74), rgba(244, 240, 231, 0.86)),
    var(--sky);
}

.section-inner {
  width: var(--container);
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--teal-deep);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.section-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 250, 240, 0.78);
}

.card .item-icon {
  background: rgba(11, 105, 102, 0.1);
}

.card p,
.step p,
.faq-item p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.card.warning {
  border-color: rgba(141, 61, 50, 0.35);
  background: linear-gradient(180deg, rgba(237, 106, 90, 0.1), rgba(255, 250, 240, 0.82));
}

.conversion-section {
  position: relative;
  overflow: clip;
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 18%, rgba(204, 242, 75, 0.2), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(110, 168, 167, 0.22), transparent 30%),
    linear-gradient(135deg, #0e1614, #063d42 58%, #0b6966);
}

.conversion-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 84px 84px;
}

.conversion-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 24px;
  align-items: start;
}

.conversion-copy h2 {
  max-width: 760px;
}

.conversion-section .section-kicker {
  color: var(--signal);
}

.conversion-section .section-lead {
  color: rgba(255, 255, 255, 0.82);
}

.conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.conversion-actions .button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
}

.conversion-actions .button.secondary:hover {
  border-color: var(--signal);
  background: rgba(255, 255, 255, 0.1);
}

.conversion-panel,
.conversion-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.conversion-panel {
  padding: 24px;
}

.conversion-panel h3,
.conversion-card h3 {
  color: #ffffff;
}

.conversion-panel p,
.conversion-card p {
  color: rgba(255, 255, 255, 0.76);
}

.conversion-rail {
  counter-reset: invite;
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.conversion-rail span {
  counter-increment: invite;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
}

.conversion-rail span::before {
  content: counter(invite, decimal-leading-zero);
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 900;
}

.conversion-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.conversion-card {
  padding: 22px;
}

.conversion-card .item-icon {
  background: rgba(204, 242, 75, 0.18);
  color: var(--signal);
}

.topic-section {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 8% 10%, rgba(11, 105, 102, 0.14), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(204, 242, 75, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.9), rgba(244, 240, 231, 0.98));
}

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

.topic-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.topic-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 105, 102, 0.34);
  box-shadow: 0 18px 54px rgba(18, 24, 22, 0.12);
}

.topic-card-label,
.topic-card-action {
  color: var(--teal-deep);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.topic-card h3 {
  margin-top: 10px;
  font-size: 1.45rem;
}

.topic-card-action {
  margin-top: auto;
  padding-top: 18px;
}

.stack {
  margin-top: 34px;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.step {
  position: relative;
  min-height: 132px;
  border-top: 1px solid var(--line);
  padding: 24px 0 22px 74px;
}

body[data-dir="rtl"] .step {
  padding: 24px 74px 22px 0;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 22px;
  inset-inline-start: 0;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: var(--paper-strong);
  font-family: var(--display);
  font-weight: 700;
}

.quote-band {
  border-inline-start: 4px solid var(--signal);
  margin: 34px 0 0;
  padding: 18px 22px;
  background: rgba(204, 242, 75, 0.13);
  color: var(--ink-soft);
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0 0 18px;
}

.source-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.source-list a {
  font-weight: 700;
}

.content-hero {
  position: relative;
  overflow: clip;
  isolation: isolate;
  padding: 92px 0 78px;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 34%, rgba(204, 242, 75, 0.2), transparent 26%),
    radial-gradient(circle at 18% 86%, rgba(110, 168, 167, 0.18), transparent 30%),
    repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 96px),
    linear-gradient(118deg, #0f1715 0%, #063d42 58%, #183f3c 100%);
  background-size: cover;
  background-position: center;
}

.content-hero::before {
  content: "";
  position: absolute;
  width: min(54vw, 640px);
  aspect-ratio: 1;
  inset-block-start: 50%;
  inset-inline-end: -12vw;
  z-index: -1;
  border: 1px solid rgba(204, 242, 75, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 42%, rgba(255, 255, 255, 0.08) 42.2% 42.5%, transparent 42.7% 100%),
    conic-gradient(from 220deg, transparent 0 56%, rgba(204, 242, 75, 0.26), transparent 72% 100%);
  transform: translateY(-50%);
  opacity: 0.7;
}

.content-hero .section-inner {
  position: relative;
}

.content-hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.content-hero h1 {
  max-width: 860px;
}

.topic-content-hero {
  background:
    radial-gradient(circle at 78% 34%, rgba(204, 242, 75, 0.22), transparent 26%),
    radial-gradient(circle at 18% 86%, rgba(110, 168, 167, 0.2), transparent 30%),
    repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 96px),
    linear-gradient(118deg, #0f1715 0%, #063d42 58%, #183f3c 100%);
  background-size: cover;
}

.topic-content-hero h1 {
  max-width: 980px;
  font-size: clamp(2.7rem, 6vw, 4.6rem);
}

.topic-top-nav {
  gap: 14px;
}

.content-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 26px;
}

.content-route::before {
  content: "";
  position: absolute;
  inset-inline: 18px;
  top: 19px;
  height: 1px;
  background: linear-gradient(90deg, rgba(204, 242, 75, 0.72), rgba(255, 255, 255, 0.2), rgba(204, 242, 75, 0.72));
}

.content-route span {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: end;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 28px 12px 10px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 850;
}

.content-route span::before {
  content: "";
  position: absolute;
  inset-block-start: 13px;
  inset-inline-start: 12px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--signal);
  border-radius: 50%;
  background: var(--teal-deep);
  box-shadow: 0 0 0 6px rgba(204, 242, 75, 0.1);
}

.policy-layout {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 7px;
  overflow: hidden;
  border: 1px solid rgba(18, 24, 22, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 16% 10%, rgba(204, 242, 75, 0.16), transparent 30%),
    rgba(255, 250, 240, 0.86);
  padding: 10px;
  box-shadow: 0 18px 46px rgba(18, 24, 22, 0.08);
}

.policy-nav a,
.trust-nav a {
  text-decoration: none;
}

.policy-nav a {
  display: block;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 11px 12px;
  color: var(--ink-soft);
  font-weight: 800;
}

.policy-nav a:hover,
.policy-nav a[aria-current="page"] {
  border-color: rgba(11, 105, 102, 0.18);
  background: rgba(204, 242, 75, 0.2);
  color: var(--ink);
}

.policy-content {
  display: grid;
  gap: 16px;
}

.policy-section {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 24, 22, 0.11);
  border-radius: 24px;
  padding: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(204, 242, 75, 0.11), transparent 34%),
    rgba(255, 250, 240, 0.74);
}

.policy-section::after {
  content: "";
  position: absolute;
  inset-block: 20px;
  inset-inline-start: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--signal), rgba(11, 105, 102, 0.2));
}

.policy-section .item-icon {
  position: relative;
  z-index: 1;
  background: rgba(11, 105, 102, 0.1);
}

.policy-section h2 {
  position: relative;
  z-index: 1;
  font-size: 2rem;
}

.policy-section p {
  position: relative;
  z-index: 1;
  max-width: 790px;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.topic-policy-section {
  scroll-margin-top: 96px;
}

.topic-faq-section .faq-list {
  margin-top: 20px;
}

.topic-faq-section .faq-item:last-child {
  border-bottom: 0;
}

.topic-source-section {
  scroll-margin-top: 96px;
}

.topic-source-section .source-list {
  max-width: 760px;
}

.journey-block {
  margin-top: 18px;
  border: 1px solid rgba(11, 105, 102, 0.14);
  border-radius: var(--radius);
  padding: 28px;
  background:
    radial-gradient(circle at 8% 12%, rgba(204, 242, 75, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(244, 240, 231, 0.86));
}

.journey-copy {
  max-width: 790px;
}

.journey-copy h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.journey-copy p:not(.section-kicker) {
  margin-top: 12px;
  color: var(--ink-soft);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.journey-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(23, 33, 29, 0.1);
  border-radius: 18px;
  padding: 18px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.52);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.journey-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 105, 102, 0.34);
  box-shadow: 0 16px 44px rgba(18, 24, 22, 0.12);
}

.journey-card .item-icon {
  background: rgba(11, 105, 102, 0.1);
}

.journey-card h3 {
  margin-top: 10px;
  font-size: 1.2rem;
}

.journey-card p {
  margin-top: 9px;
  color: var(--ink-soft);
}

.journey-meta,
.journey-action {
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.journey-meta {
  margin-top: 14px;
}

.journey-action {
  margin-top: auto;
  padding-top: 16px;
}

.journey-cta {
  width: fit-content;
  margin-top: 18px;
}

.topic-cta {
  margin-top: 22px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.6fr);
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 34px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 61, 66, 0.98), rgba(18, 24, 22, 0.96)),
    var(--teal-deep);
}

.cta-panel p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta-panel .button {
  width: 100%;
  background: var(--signal);
  color: var(--ink);
}

.cta-panel .button:hover {
  background: #dfff71;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 44px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
}

.footer-grid a {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.modal {
  border: 0;
  border-radius: var(--radius);
  width: min(560px, calc(100% - 32px));
  padding: 0;
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
}

.modal::backdrop {
  background: rgba(23, 33, 29, 0.66);
}

.modal-body {
  padding: 28px;
}

.modal-body p {
  color: var(--ink-soft);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 28px 24px;
  border-top: 1px solid var(--line);
}

.hub {
  min-height: 100vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(18, 24, 22, 0.9), rgba(11, 105, 102, 0.66)),
    url("./og-checkpoint.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hub-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 56px 0;
}

.not-found .hub-inner {
  max-width: 980px;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.not-found .button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.not-found .button.secondary:hover {
  border-color: rgba(204, 242, 75, 0.64);
  background: rgba(255, 255, 255, 0.12);
}

.hub h1 {
  max-width: 780px;
}

.hub p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 34px;
}

.language-card {
  min-height: 92px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 250, 240, 0.1);
  color: #ffffff;
  text-decoration: none;
}

.language-card:hover {
  background: rgba(255, 250, 240, 0.18);
}

.language-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
}

.brand-lab {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

.brand-lab-hero {
  width: var(--container);
  margin: 0 auto;
  padding: 70px 0 34px;
}

.brand-lab-hero h1 {
  color: var(--ink);
}

.brand-lab-hero p {
  max-width: 720px;
  color: var(--ink-soft);
}

.logo-options {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 80px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.logo-option {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 24px;
}

.logo-option img {
  width: min(280px, 100%);
  margin-bottom: 24px;
}

.logo-option h2 {
  font-size: 1.6rem;
}

.logo-option p {
  color: var(--ink-soft);
}

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

  h2 {
    font-size: 2.45rem;
  }

  .nav {
    min-height: 62px;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 8px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 116px;
  }

  .nav-menu {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    margin-inline-start: auto;
    gap: 6px;
  }

  .language-dropdown summary {
    min-width: 48px;
    padding: 0 8px;
  }

  .language-name {
    display: none;
  }

  .nav-cta {
    width: 42px;
    min-width: 42px;
    padding: 0;
  }

  .nav-cta .button-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .proof-grid,
  .hero-inner,
  .grid.three,
  .grid.two,
  .conversion-inner,
  .conversion-cards,
  .journey-grid,
  .topic-grid,
  .cta-panel,
  .policy-layout,
  .footer-grid,
  .language-grid {
    grid-template-columns: 1fr;
  }

  .topic-card,
  .topic-card:nth-child(-n+2) {
    grid-column: auto;
    min-height: 0;
  }

  .logo-options {
    grid-template-columns: 1fr;
  }

  .policy-nav {
    position: static;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    border-radius: 18px;
    scrollbar-width: none;
  }

  .policy-nav::-webkit-scrollbar {
    display: none;
  }

  .policy-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .proof-strip {
    margin-top: -46px;
  }

  .proof-item {
    border-inline-end: 0;
    border-bottom: 1px solid rgba(18, 24, 22, 0.1);
  }

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

  .hero {
    min-height: 72vh;
  }

  .hero-inner {
    padding: 70px 0 92px;
  }

  .hero-module {
    max-width: 580px;
  }

  .section {
    padding: 70px 0;
  }

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

@media (max-width: 560px) {
  :root {
    --container: min(100% - 24px, 1120px);
  }

  h1 {
    font-size: clamp(2.7rem, 13.5vw, 3.45rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.35rem);
  }

  .brand-logo {
    width: 104px;
  }

  .nav-actions {
    width: auto;
  }

  .menu-label {
    display: none;
  }

  .nav-menu summary {
    width: 42px;
    padding: 0;
  }

  .language-dropdown summary {
    width: 46px;
  }

  .language-menu {
    inset-inline-end: 0;
    min-width: min(230px, calc(100vw - 24px));
  }

  .nav-menu-panel {
    min-width: min(210px, calc(100vw - 24px));
  }

  .notice-band .inner {
    display: block;
  }

  .hero-actions .button,
  .journey-cta,
  .cta-panel .button {
    width: 100%;
  }

  .hero-route {
    grid-template-columns: 1fr;
  }

  .content-route {
    grid-template-columns: 1fr;
  }

  .hero-route::before,
  .content-route::before {
    inset-block: 18px;
    inset-inline-start: 20px;
    inset-inline-end: auto;
    top: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(204, 242, 75, 0.8), rgba(255, 255, 255, 0.18), rgba(204, 242, 75, 0.8));
  }

  .hero-route span,
  .content-route span {
    min-height: 54px;
    align-items: center;
    padding: 12px 12px 12px 44px;
  }

  .hero-route span::before,
  .content-route span::before {
    inset-block-start: 50%;
    transform: translateY(-50%);
  }

  .review-meta {
    grid-template-columns: 1fr;
  }

  .journey-block {
    padding: 20px;
  }

  .hero-module {
    padding: 22px;
  }

  .module-visual {
    min-height: 120px;
    margin-top: 24px;
  }

  .module-mobile span {
    width: 64px;
    min-height: 110px;
  }

  .proof-grid {
    gap: 10px;
  }

  .step {
    padding-inline-start: 0;
    padding-top: 78px;
  }

  body[data-dir="rtl"] .step {
    padding-inline-end: 0;
    padding-top: 78px;
  }

  .modal-actions .button {
    width: 100%;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2rem;
  }
}

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