:root {
  --navy-950: #081527;
  --navy-900: #0f172a;
  --navy-800: #13233a;
  --blue-800: #0b4b73;
  --blue-700: #0e658f;
  --cyan-500: #19a9d7;
  --cyan-300: #83d7ee;
  --cyan-100: #e7f8fc;
  --cream-100: #fff8ee;
  --cream-200: #ffeed8;
  --coral-500: #f5855b;
  --coral-100: #ffeadf;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --shadow-sm: 0 14px 35px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 80px rgba(4, 23, 42, 0.2);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: var(--white);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue-700);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--white);
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.2vw, 5.5rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4.4vw, 4.1rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

section[id] {
  scroll-margin-top: 76px;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy-900);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  background: rgba(8, 21, 39, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 21, 39, 0.95);
  box-shadow: 0 10px 30px rgba(4, 15, 28, 0.16);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.brand strong {
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.69rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav .nav-cta {
  padding: 10px 17px;
  color: var(--navy-900);
  background: var(--white);
  border-radius: 999px;
}

.language-switch {
  position: relative;
}

.language-switch summary {
  display: flex;
  min-height: 40px;
  padding: 7px 11px;
  align-items: center;
  gap: 7px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
}

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

.language-switch summary::after {
  margin-left: 2px;
  color: rgba(255, 255, 255, 0.62);
  content: "▾";
  font-size: 0.68rem;
}

.language-switch[open] summary::after {
  content: "▴";
}

.language-options {
  position: absolute;
  z-index: 120;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 178px;
  padding: 7px;
  gap: 3px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(8, 21, 39, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  box-shadow: 0 20px 44px rgba(4, 15, 28, 0.34);
}

.language-options a {
  padding: 8px 10px;
  border-radius: 10px;
}

.language-options a:hover,
.language-options a:focus-visible,
.language-options a[aria-current="page"] {
  color: var(--white);
  background: rgba(131, 215, 238, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 920px;
  padding: 170px 0 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(
      circle at 10% 18%,
      rgba(43, 189, 232, 0.44),
      transparent 34%
    ),
    linear-gradient(118deg, #087aa8 0%, #0b567c 32%, #0c2f4c 62%, #081527 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  background: linear-gradient(180deg, transparent, rgba(8, 21, 39, 0.22));
  content: "";
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(128, 217, 242, 0.18);
  border-radius: 50%;
}

.hero-orbit::after {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--coral-500);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(245, 133, 91, 0.08);
  content: "";
}

.hero-orbit-one {
  top: 20%;
  right: -170px;
  width: 560px;
  height: 560px;
}

.hero-orbit-one::after {
  top: 90px;
  left: 46px;
}

.hero-orbit-two {
  bottom: -180px;
  left: -120px;
  width: 420px;
  height: 420px;
}

.hero-orbit-two::after {
  top: 32px;
  right: 82px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: 68px;
}

.hero-copy {
  min-width: 0;
  max-width: 690px;
}

.hero-copy h1 {
  overflow-wrap: break-word;
}

.eyebrow {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  gap: 10px;
  color: var(--blue-700);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 27px;
  height: 2px;
  background: var(--coral-500);
  border-radius: 999px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.73);
}

.hero-lead,
.lead {
  color: var(--slate-600);
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

.hero-lead {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-statement {
  margin: 30px 0 28px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  border-left: 3px solid var(--coral-500);
  font-size: 1.12rem;
  line-height: 1.55;
}

.hero-statement strong {
  color: var(--white);
}

.store-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.store-actions a {
  display: inline-flex;
  border-radius: 9px;
  transition:
    transform 160ms ease,
    filter 160ms ease;
}

.store-actions a:hover,
.store-actions a:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.store-actions img {
  height: 46px;
  width: auto;
}

.microcopy {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
}

.artwork {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--cream-100);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.artwork img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.artwork-hero {
  transform: rotate(0.7deg);
}

.artwork-continuity,
.artwork-process {
  align-self: center;
}

.artwork-continuity img,
.artwork-process img {
  aspect-ratio: auto;
}

.artwork-translation {
  border-color: rgba(255, 255, 255, 0.18);
}

.screen-proof {
  display: grid;
  margin-top: 70px;
  padding: 42px;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: 56px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.screen-proof-dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.screen-proof-intro h3 {
  margin: 10px 0 14px;
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
  letter-spacing: -0.025em;
}

.screen-proof-intro p {
  margin: 0;
  color: var(--slate-600);
}

.screen-proof-dark .screen-proof-intro p {
  color: rgba(255, 255, 255, 0.74);
}

.screen-proof-kicker {
  display: inline-block;
  color: var(--blue-700);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.screen-proof-dark .screen-proof-kicker {
  color: var(--cyan-300);
}

.demo-note {
  margin-top: 18px !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 0.78rem;
  font-style: italic;
}

.screen-gallery {
  display: grid;
  min-width: 0;
  gap: 20px;
}

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

.screen-composition {
  min-width: 0;
  margin: 0;
}

.screen-composition img {
  width: 100%;
  height: auto;
}

.screen-frame {
  overflow: hidden;
  background: var(--white);
  border: 5px solid var(--white);
  border-radius: 25px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.screen-composition figcaption {
  margin-top: 13px;
  color: var(--slate-600);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
}

.screen-composition-dark figcaption {
  color: rgba(255, 255, 255, 0.88);
}

.trust-row {
  position: relative;
  z-index: 3;
  display: grid;
  margin-top: 80px;
  padding: 28px 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-row > div {
  display: grid;
  padding: 0 34px;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
}

.trust-row > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-icon {
  display: grid;
  width: 28px;
  height: 28px;
  grid-row: 1 / 3;
  place-items: center;
  color: var(--navy-900);
  background: var(--cyan-300);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
}

.trust-row strong {
  font-size: 0.92rem;
}

.trust-row small {
  color: rgba(255, 255, 255, 0.74);
}

.section-heading {
  max-width: 770px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: 1.1rem;
}

.section-heading.centered p {
  margin-inline: auto;
}

.problem {
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  min-height: 280px;
  padding: 34px;
  background: var(--cream-100);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.problem-card:nth-child(2) {
  background: var(--cyan-100);
  border-color: #c8eef7;
}

.problem-card:nth-child(3) {
  background: #f4f1ff;
  border-color: #e5ddff;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.card-number {
  margin-bottom: 54px;
  color: var(--coral-500);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.problem-card h3 {
  font-size: 1.42rem;
}

.problem-card p {
  margin-bottom: 0;
  color: var(--slate-600);
}

.continuity {
  background: linear-gradient(180deg, #f7fbfd, #ffffff);
}

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

.split-grid-wide {
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
}

.continuity-copy .lead {
  margin-bottom: 36px;
}

.benefit-list {
  display: grid;
  gap: 8px;
}

.benefit-list article {
  display: grid;
  padding: 20px 0;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  border-top: 1px solid var(--slate-200);
}

.benefit-list article > span {
  color: var(--cyan-500);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.benefit-list h3 {
  margin-bottom: 5px;
  font-size: 1.12rem;
}

.benefit-list p {
  margin-bottom: 0;
  color: var(--slate-600);
}

.handover-note {
  display: flex;
  margin-top: 56px;
  padding: 28px 32px;
  align-items: flex-start;
  gap: 18px;
  background: var(--cream-100);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
}

.handover-note p {
  margin: 0;
  color: var(--slate-600);
}

.handover-note strong {
  color: var(--navy-900);
}

.note-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--coral-500);
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 800;
}

.translation {
  color: var(--white);
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(25, 169, 215, 0.18),
      transparent 30%
    ),
    var(--navy-950);
}

.translation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.95fr);
  align-items: center;
  gap: 80px;
}

.translation h2 {
  max-width: 660px;
}

.translation .lead {
  color: rgba(255, 255, 255, 0.7);
}

.check-list {
  display: grid;
  margin: 30px 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.79);
}

.check-list li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--navy-900);
  background: var(--cyan-300);
  border-radius: 50%;
  content: "✓";
  font-size: 0.68rem;
  font-weight: 900;
}

.translation-example {
  display: grid;
  padding: 16px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 19px;
}

.translation-example > div {
  min-height: 124px;
  padding: 15px;
  color: var(--navy-900);
  background: var(--white);
  border-radius: 14px;
}

.translation-example span {
  display: inline-block;
  padding: 3px 8px;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
}

.translation-example p {
  margin: 10px 0 0;
  font-size: 0.85rem;
  line-height: 1.45;
}

.translation-example > b {
  color: var(--cyan-300);
  font-size: 1.3rem;
}

.example-caption {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.roles {
  background: var(--cream-100);
}

.role-switcher {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.tab-list {
  display: flex;
  padding: 10px;
  gap: 8px;
  background: var(--slate-100);
  border-bottom: 1px solid var(--slate-200);
}

.tab-list button {
  min-width: 180px;
  padding: 13px 20px;
  color: var(--slate-600);
  background: transparent;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 750;
}

.tab-list button[aria-selected="true"] {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 7px 18px rgba(15, 23, 42, 0.08);
}

.tab-panel {
  display: grid;
  min-height: 530px;
  padding: 54px;
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1.22fr);
  align-items: center;
  gap: 70px;
}

.tab-panel[hidden] {
  display: none;
}

.role-content h3 {
  margin: 18px 0 26px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.role-description {
  margin: -10px 0 25px;
  color: var(--slate-600);
}

.role-composition {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  overflow: hidden;
  background: var(--cream-100);
  border: 1px solid var(--cream-200);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.role-label {
  display: inline-flex;
  padding: 6px 11px;
  color: var(--blue-800);
  background: var(--cyan-100);
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.role-label-coral {
  color: #8b3d1f;
  background: var(--coral-100);
}

.role-content ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 16px;
  list-style: none;
}

.role-content li {
  position: relative;
  padding-left: 25px;
  color: var(--slate-600);
}

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

.process {
  background: var(--white);
}

.overview-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 80px;
}

.overview-copy .lead {
  margin-bottom: 32px;
}

.overview-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.overview-list li {
  display: grid;
  padding: 18px 20px;
  gap: 3px;
  background: var(--cream-100);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-sm);
}

.overview-list strong {
  color: var(--navy-900);
}

.overview-list span {
  color: var(--slate-600);
  font-size: 0.92rem;
}

.overview-composition {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  overflow: hidden;
  background: var(--cream-100);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.process-heading {
  margin-top: 116px;
}

.process-steps {
  position: relative;
  display: grid;
  margin: 0 0 56px;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
}

.process-steps::before {
  position: absolute;
  top: 25px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: var(--slate-200);
  content: "";
}

.process-steps li {
  position: relative;
  padding: 0 15px;
  text-align: center;
}

.process-steps li > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 24px;
  place-items: center;
  color: var(--white);
  background: var(--blue-700);
  border: 7px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--slate-200);
  font-weight: 850;
}

.process-steps li:nth-child(4) > span {
  background: var(--coral-500);
}

.process-steps h3 {
  font-size: 1.1rem;
}

.process-steps p {
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: 0.92rem;
}

.features {
  background: var(--cyan-100);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 220px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
}

.feature-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--blue-800);
  background: var(--white);
  border-radius: 13px;
  box-shadow: 0 8px 22px rgba(14, 101, 143, 0.1);
  font-weight: 850;
}

.feature-card h3 {
  font-size: 1.15rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--slate-600);
}

.start {
  padding: 96px 0;
  background: var(--white);
}

.start-card {
  display: grid;
  padding: 62px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(25, 169, 215, 0.35),
      transparent 34%
    ),
    linear-gradient(125deg, var(--blue-700), var(--navy-950));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.start-card h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.start-card p {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.start-actions {
  display: grid;
  gap: 18px;
}

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

.start-actions .store-actions img {
  min-width: 170px;
  object-fit: contain;
}

.text-link {
  color: var(--cyan-300);
  font-size: 0.88rem;
  font-weight: 750;
  text-align: center;
}

.text-link span {
  margin-left: 6px;
}

.faq {
  background: var(--cream-100);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 100px;
}

.faq-list {
  border-top: 1px solid #e7d9c8;
}

.faq-list details {
  border-bottom: 1px solid #e7d9c8;
}

.faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 0;
  width: 28px;
  height: 28px;
  color: var(--blue-700);
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
  text-align: center;
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  padding: 0 42px 25px 0;
  color: var(--slate-600);
}

.clarification {
  padding: 58px 0;
  color: var(--white);
  background: var(--navy-900);
}

.clarification-inner {
  display: flex;
  max-width: 900px;
  align-items: flex-start;
  gap: 24px;
}

.clarification-inner > span {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy-900);
  background: var(--cyan-300);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 850;
}

.clarification h2 {
  margin-bottom: 7px;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.clarification p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  padding: 72px 0 24px;
  color: rgba(255, 255, 255, 0.65);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  padding-bottom: 56px;
  grid-template-columns: 1.5fr 0.7fr 0.8fr;
  gap: 70px;
}

.footer-brand {
  margin-bottom: 18px;
  color: var(--white);
}

.footer-grid > div:first-child p {
  max-width: 390px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid > div:not(:first-child) strong {
  margin-bottom: 8px;
  color: var(--white);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
}

.footer-social {
  display: flex;
  margin-top: 8px;
  gap: 8px;
}

.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.footer-social img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  padding-top: 22px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.77rem;
}

.js.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

@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;
  }

  .js.reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .site-nav {
    gap: 17px;
    font-size: 0.82rem;
  }

  .hero-grid,
  .translation-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 44px;
  }

  .split-grid-wide {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .tab-panel {
    padding: 42px;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
  }

  .overview-story {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 92px 0;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    padding: 12px 0;
    gap: 10px 16px;
  }

  html:not(.js) .header-inner {
    flex-wrap: wrap;
    padding-block: 10px;
  }

  html:not(.js) .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .js .menu-toggle {
    display: block;
  }

  .js .site-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    height: calc(100vh - 76px);
    padding: 38px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--white);
    background: rgba(8, 21, 39, 0.98);
  }

  .js .site-nav.is-open {
    display: flex;
  }

  .js .site-nav > a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.05rem;
  }

  .js .site-nav .nav-cta {
    margin-top: 22px;
    padding: 13px 18px;
    text-align: center;
    border: 0;
  }

  .js .site-nav .language-switch {
    margin-top: 18px;
  }

  .js .site-nav .language-switch summary {
    width: 100%;
    justify-content: center;
  }

  .js .site-nav .language-options {
    position: static;
    margin-top: 8px;
    box-shadow: none;
  }

  .hero {
    min-height: auto;
    padding-top: 142px;
  }

  .hero-grid,
  .split-grid,
  .split-grid-wide,
  .translation-grid,
  .overview-story,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 54px;
  }

  .artwork-hero {
    transform: none;
  }

  .screen-proof {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .screen-proof-intro {
    max-width: 660px;
  }

  .trust-row {
    margin-top: 62px;
  }

  .problem-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .translation-grid {
    gap: 58px;
  }

  .tab-panel {
    grid-template-columns: 1fr;
  }

  .overview-composition {
    max-width: 620px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 44px;
  }

  .process-steps::before {
    display: none;
  }

  .faq-grid {
    gap: 20px;
  }

  .start-card {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .start-actions .store-actions {
    flex-direction: row;
  }

  .text-link {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 74px 0;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  html[lang="fr"] .hero-copy h1 {
    font-size: clamp(2.2rem, 9.8vw, 3rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero {
    padding-top: 126px;
  }

  .hero-lead,
  .lead {
    font-size: 1.04rem;
  }

  .artwork {
    border-radius: 24px;
  }

  .screen-proof {
    margin-top: 48px;
    padding: 28px 20px;
    gap: 30px;
    border-radius: 24px;
  }

  .screen-gallery {
    gap: 12px;
  }

  .screen-frame {
    border-width: 3px;
    border-radius: 18px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .trust-row > div {
    padding: 19px 6px;
  }

  .trust-row > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .problem-grid,
  .feature-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 32px;
  }

  .handover-note {
    padding: 23px;
    flex-direction: column;
  }

  .translation-example {
    grid-template-columns: 1fr;
  }

  .translation-example > b {
    transform: rotate(90deg);
    text-align: center;
  }

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

  .tab-list button {
    min-width: 0;
    padding-inline: 8px;
    font-size: 0.83rem;
  }

  .tab-panel {
    min-height: 0;
    padding: 28px 20px;
  }

  .role-composition,
  .overview-composition {
    border-radius: 22px;
  }

  .process-heading {
    margin-top: 82px;
  }

  .process-steps {
    gap: 30px;
  }

  .process-steps li {
    display: grid;
    padding: 0;
    grid-template-columns: 50px 1fr;
    column-gap: 16px;
    text-align: left;
  }

  .process-steps li > span {
    width: 44px;
    height: 44px;
    margin: 0;
    grid-row: 1 / 3;
  }

  .process-steps p {
    grid-column: 2;
  }

  .start-card {
    width: calc(100% - 28px);
    padding: 38px 24px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
