/* Cut & Collect marketing site — aligned with app teal/gold identity */

:root {
  --cc-teal-900: #1a4245;
  --cc-teal-800: #234f52;
  --cc-teal-700: #356b6e;
  --cc-teal-600: #4f9498;
  --cc-teal-500: #6bb8b8;
  --cc-gold: #d4af37;
  --cc-gold-soft: rgba(212, 175, 55, 0.35);
  --cc-title: #1a3d3a;
  --cc-subtitle: rgba(26, 61, 58, 0.72);
  --cc-card-bg: rgba(255, 255, 255, 0.82);
  --cc-card-border: rgba(255, 255, 255, 0.65);
  --cc-shadow: 0 7px 24px rgba(0, 0, 0, 0.12);
  --cc-shadow-soft: 0 4px 14px rgba(0, 0, 0, 0.08);
  --cc-radius-lg: 26px;
  --cc-radius-md: 18px;
  --cc-radius-sm: 12px;
  --cc-max-width: 1120px;
  --cc-header-height: 72px;
  --cc-top-bar-height: 44px;
  --cc-font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--cc-font);
  color: var(--cc-title);
  background: linear-gradient(165deg, #dff0f0 0%, #c8e4e6 28%, #b8d4d8 55%, #a8c8cc 100%);
  min-height: 100vh;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 10%, rgba(212, 175, 55, 0.18), transparent 42%),
    radial-gradient(circle at 85% 20%, rgba(79, 148, 152, 0.22), transparent 38%),
    radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.35), transparent 50%);
  z-index: -1;
}

.visually-hidden {
  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: absolute;
  inset-inline-start: 1rem;
  top: 0.75rem;
  z-index: 200;
  padding: 0.6rem 1rem;
  border-radius: var(--cc-radius-sm);
  background: var(--cc-teal-800);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 0.15s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--cc-gold);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--cc-gold);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
select:focus:not(:focus-visible),
.btn:focus:not(:focus-visible) {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--cc-teal-700);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 2rem, var(--cc-max-width));
  margin-inline: auto;
}

/* Top promo bar */
.top-promo-bar {
  background: linear-gradient(90deg, #111, #2d2d2d);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-promo-inner {
  min-height: var(--cc-top-bar-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-promo-bar .btn-play {
  min-height: 34px;
  padding: 0.4rem 0.95rem;
  font-size: 0.88rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--cc-shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--cc-header-height);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cc-title);
  text-decoration: none;
  flex-shrink: 0;
}

.brand:hover {
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1.5px solid var(--cc-gold-soft);
  box-shadow: var(--cc-shadow-soft);
  display: block;
  object-fit: cover;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(26, 61, 58, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  padding: 0;
}

.menu-toggle-bars {
  display: grid;
  gap: 5px;
}

.menu-toggle-bars span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--cc-title);
}

.nav-desktop {
  display: flex;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
}

.nav-links a.active,
.nav-links a[aria-current="page"] {
  background: rgba(79, 148, 152, 0.15);
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gp-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

.lang-select {
  border: 1px solid rgba(26, 61, 58, 0.18);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--cc-title);
  font: inherit;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--cc-teal-600), var(--cc-teal-800));
  box-shadow: 0 8px 20px rgba(35, 79, 82, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-secondary {
  color: var(--cc-title);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(26, 61, 58, 0.12);
  box-shadow: var(--cc-shadow-soft);
}

.btn-play {
  background: linear-gradient(180deg, #2d2d2d, #111);
  color: #fff;
  padding-inline: 1.1rem;
}

.btn-play-block {
  width: 100%;
}

/* Mobile drawer — desktop: fully hidden */
.menu-toggle,
.site-drawer,
.drawer-backdrop {
  display: none;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(26, 61, 58, 0.1);
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  color: var(--cc-title);
  text-decoration: none;
}

.drawer-brand:hover {
  text-decoration: none;
}

.drawer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  object-fit: cover;
}

.drawer-close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: rgba(79, 148, 152, 0.12);
  color: var(--cc-title);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.drawer-nav {
  display: grid;
  gap: 0.35rem;
}

.drawer-nav a {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  font-weight: 600;
  color: var(--cc-title);
  text-decoration: none;
}

.drawer-nav a:hover,
.drawer-nav a[aria-current="page"] {
  background: rgba(79, 148, 152, 0.14);
  text-decoration: none;
}

.drawer-actions {
  margin-top: auto;
  display: grid;
  gap: 0.75rem;
}

.drawer-actions .lang-select {
  width: 100%;
}

body.drawer-open {
  overflow: hidden;
}

/* Hero */
.hero {
  padding: 3rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero-copy p {
  font-size: 1.08rem;
  color: var(--cc-subtitle);
  margin: 0 0 1.5rem;
  max-inline-size: 38ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.puzzle-showcase {
  width: min(100%, 360px);
  aspect-ratio: 1;
  border-radius: var(--cc-radius-lg);
  padding: 1.25rem;
  background: var(--cc-card-bg);
  border: 1.4px solid var(--cc-card-border);
  box-shadow: var(--cc-shadow);
  position: relative;
}

.puzzle-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 45%);
  pointer-events: none;
}

.puzzle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  height: 100%;
}

.puzzle-tile {
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 3px 8px rgba(0, 0, 0, 0.12);
}

.puzzle-tile:nth-child(1) { background: linear-gradient(135deg, #6bb8d4, #4a90a8); }
.puzzle-tile:nth-child(2) { background: linear-gradient(135deg, #e89b4a, #c87830); }
.puzzle-tile:nth-child(3) { background: linear-gradient(135deg, #9b6bb8, #7a5090); }
.puzzle-tile:nth-child(4) { background: linear-gradient(135deg, #b8a84a, #988030); }
.puzzle-tile:nth-child(5) { background: linear-gradient(135deg, #8b3a3a, #6a2828); }
.puzzle-tile:nth-child(6) { background: linear-gradient(135deg, #5a6b3a, #445028); }
.puzzle-tile:nth-child(7) { background: linear-gradient(135deg, #4f9498, #356b6e); }
.puzzle-tile:nth-child(8) { background: linear-gradient(135deg, #d4af37, #b8922a); }
.puzzle-tile:nth-child(9) { background: linear-gradient(135deg, #c8e8d4, #9abfae); }
.puzzle-tile:nth-child(10) { background: linear-gradient(135deg, #f5ecd0, #e8d4a8); }
.puzzle-tile:nth-child(11) { background: linear-gradient(135deg, #e0d0e8, #c0b0c8); }
.puzzle-tile:nth-child(12) { background: linear-gradient(135deg, #dff0f0, #b8d4d8); }
.puzzle-tile:nth-child(13) { background: linear-gradient(135deg, #356b6e, #234f52); }
.puzzle-tile:nth-child(14) { background: linear-gradient(135deg, #e89b4a, #9b6bb8); }
.puzzle-tile:nth-child(15) { background: linear-gradient(135deg, #6bb8d4, #5a6b3a); }
.puzzle-tile:nth-child(16) { background: linear-gradient(135deg, #1a3d3a, #4f9498); }

/* Sections */
.section {
  padding: 2.5rem 0;
  scroll-margin-top: calc(var(--cc-header-height) + var(--cc-top-bar-height) + 0.75rem);
}

.section-modes {
  background: rgba(255, 255, 255, 0.28);
  border-block: 1px solid rgba(255, 255, 255, 0.45);
}

.section-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.section-header h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.section-header p {
  margin: 0 auto;
  max-inline-size: 52ch;
  color: var(--cc-subtitle);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1rem;
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1rem;
}

.mode-card {
  background: var(--cc-card-bg);
  border: 1.4px solid var(--cc-card-border);
  border-radius: var(--cc-radius-md);
  padding: 1.25rem;
  box-shadow: var(--cc-shadow-soft);
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  overflow-wrap: break-word;
}

.mode-card--soon {
  opacity: 0.88;
  border-style: dashed;
}

.mode-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.mode-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cc-teal-800);
  background: rgba(79, 148, 152, 0.18);
  white-space: normal;
  text-align: start;
  max-inline-size: 100%;
  flex-shrink: 0;
}

.mode-card--soon .mode-badge {
  color: #6a5520;
  background: rgba(212, 175, 55, 0.28);
}

.mode-card h3 {
  margin: 0.35rem 0 0;
  font-size: 1.08rem;
}

.mode-card p {
  margin: 0;
  color: var(--cc-subtitle);
  font-size: 0.95rem;
}

/* Mode visual detail section */
.section-mode-visuals {
  background: rgba(255, 255, 255, 0.18);
}

.mode-visuals-grid {
  display: grid;
  gap: 1.5rem;
}

.mode-visual-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(min(100%, 200px), 280px);
  gap: 1.5rem;
  align-items: center;
  background: var(--cc-card-bg);
  border: 1.4px solid var(--cc-card-border);
  border-radius: var(--cc-radius-lg);
  padding: 1.35rem;
  box-shadow: var(--cc-shadow-soft);
  min-width: 0;
  overflow: hidden;
}

.mode-visual-card--reverse {
  grid-template-columns: minmax(min(100%, 200px), 280px) minmax(0, 1fr);
}

.mode-visual-card--reverse .mode-visual-copy {
  order: 2;
}

.mode-visual-card--reverse .mode-visual-device {
  order: 1;
}

.mode-visual-card--soon {
  opacity: 0.9;
  border-style: dashed;
}

.mode-visual-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.mode-visual-copy h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
}

.mode-visual-copy p {
  margin: 0;
  color: var(--cc-subtitle);
  font-size: 0.95rem;
  line-height: 1.5;
  max-inline-size: 42ch;
  overflow-wrap: break-word;
}

.mode-visual-device {
  display: flex;
  justify-content: center;
}

.device-mockup {
  width: min(100%, 220px);
  padding: 10px 9px 14px;
  border-radius: 26px;
  background: linear-gradient(160deg, #2a2a2a 0%, #111 55%, #1c1c1c 100%);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
}

.device-notch {
  width: 42%;
  height: 5px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
}

.device-screen {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: linear-gradient(165deg, #dff0f0, #b8d4d8);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.mode-visual-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mode-visual-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 25% 25%;
  pointer-events: none;
}

.mode-visual-jigsaw {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.35rem;
  padding: 0.75rem;
  filter: blur(1.2px) saturate(0.75);
  opacity: 0.72;
}

.jigsaw-piece {
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(107, 184, 184, 0.85), rgba(53, 107, 110, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.jigsaw-piece--1 { background: linear-gradient(135deg, #6bb8d4, #4a90a8); }
.jigsaw-piece--2 { background: linear-gradient(135deg, #e89b4a, #c87830); }
.jigsaw-piece--3 { background: linear-gradient(135deg, #9b6bb8, #7a5090); }
.jigsaw-piece--4 { background: linear-gradient(135deg, #5a6b3a, #445028); }
.jigsaw-piece--5 { background: linear-gradient(135deg, #4f9498, #356b6e); }
.jigsaw-piece--6 { background: linear-gradient(135deg, #d4af37, #b8922a); }

.mode-visual-card--soon .device-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(2px);
}

.mode-visual-soon-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0.75rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cc-teal-800);
  z-index: 1;
}

.trust-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.feature-card,
.step-card,
.trust-card {
  background: var(--cc-card-bg);
  border: 1.4px solid var(--cc-card-border);
  border-radius: var(--cc-radius-md);
  padding: 1.25rem;
  box-shadow: var(--cc-shadow-soft);
  min-width: 0;
  overflow-wrap: break-word;
}

.trust-check {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, var(--cc-teal-600), var(--cc-teal-800));
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.feature-card h3,
.step-card h3,
.trust-card h3 {
  margin: 0.75rem 0 0.35rem;
  font-size: 1.05rem;
}

.feature-card p,
.step-card p,
.trust-card p {
  margin: 0;
  color: var(--cc-subtitle);
  font-size: 0.95rem;
}

.icon-well {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55), transparent 55%),
    linear-gradient(145deg, var(--cc-teal-600), var(--cc-teal-800));
  box-shadow: var(--cc-shadow-soft);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1rem;
}

.step-number {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, var(--cc-teal-600), var(--cc-teal-800));
  margin-bottom: 0.5rem;
}

/* Legal pages */
.legal-page {
  padding: 2rem 0 3rem;
}

.legal-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1.4px solid var(--cc-card-border);
  border-radius: var(--cc-radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--cc-shadow);
}

.legal-card h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.legal-meta {
  color: var(--cc-subtitle);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(26, 61, 58, 0.1);
}

.legal-body h2 {
  font-size: 1.08rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--cc-teal-800);
}

.legal-body p {
  margin: 0 0 0.85rem;
  color: var(--cc-title);
}

.legal-body ul {
  margin: 0 0 0.85rem;
  padding-inline-start: 1.25rem;
}

.legal-body li {
  margin-bottom: 0.35rem;
}

.legal-body a {
  word-break: break-all;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  padding: 2.5rem 0 1.75rem;
  background: rgba(26, 66, 69, 0.94);
  color: rgba(255, 255, 255, 0.92);
}

.site-footer a {
  color: #dff5f5;
}

.footer-shell {
  display: grid;
  gap: 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 0.85rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  text-decoration: none;
}

.footer-brand:hover {
  text-decoration: none;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand-block p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-inline-size: 36ch;
  overflow-wrap: break-word;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.footer-panel h3 {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.footer-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-pairs {
  display: grid;
  gap: 0.65rem;
}

.footer-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  align-items: start;
}

.footer-pair > a {
  color: #dff5f5;
  font-size: 0.92rem;
  line-height: 1.5;
  text-decoration: none;
  min-width: 0;
  word-break: break-word;
}

.footer-pair > a:hover {
  text-decoration: underline;
}

.footer-meta-item {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.footer-meta-item strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
}

.footer-meta-item span,
.footer-meta-item a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  word-break: break-word;
}

.footer-meta-item a {
  color: #dff5f5;
}

.footer-panel li,
.footer-panel p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.footer-panel-download .btn-play {
  margin-top: 0.15rem;
}

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

/* RTL */
html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .header-inner {
  direction: rtl;
}

html[dir="rtl"] .brand,
html[dir="rtl"] .drawer-brand,
html[dir="rtl"] .footer-brand {
  direction: rtl;
}

html[dir="rtl"] .hero-copy p,
html[dir="rtl"] .mode-visual-copy p,
html[dir="rtl"] .section-header p {
  max-inline-size: none;
}

html[dir="rtl"] .mode-card-head,
html[dir="rtl"] .mode-visual-head,
html[dir="rtl"] .hero-cta,
html[dir="rtl"] .trust-legal-links {
  direction: rtl;
}

html[dir="rtl"] .mode-visual-card--reverse .mode-visual-copy {
  order: 1;
}

html[dir="rtl"] .mode-visual-card--reverse .mode-visual-device {
  order: 2;
}

html[dir="rtl"] .mode-visual-card:not(.mode-visual-card--reverse) .mode-visual-copy {
  order: 2;
}

html[dir="rtl"] .mode-visual-card:not(.mode-visual-card--reverse) .mode-visual-device {
  order: 1;
}

html[dir="rtl"] .legal-body ul {
  padding-inline-start: 0;
  padding-inline-end: 1.25rem;
}

html[dir="rtl"] .skip-link {
  inset-inline-start: auto;
  inset-inline-end: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-panel-download {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .nav-links {
    gap: 0.65rem;
  }

  .nav-links a {
    font-size: 0.88rem;
    padding: 0.3rem 0.4rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .mode-visual-card,
  .mode-visual-card--reverse {
    grid-template-columns: 1fr;
  }

  .mode-visual-card--reverse .mode-visual-copy,
  .mode-visual-card--reverse .mode-visual-device {
    order: unset;
  }

  .mode-visual-device {
    order: -1;
  }

  .mode-visual-copy p {
    max-width: none;
  }

  .nav-desktop {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .brand {
    justify-self: start;
  }

  html[dir="rtl"] .brand {
    justify-self: end;
  }

  .drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .drawer-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .drawer-backdrop[hidden] {
    display: none !important;
  }

  .site-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    width: min(88vw, 320px);
    max-width: 100%;
    padding: 1rem;
    gap: 1rem;
    background: #fff;
    box-shadow: -8px 0 28px rgba(0, 0, 0, 0.18);
    z-index: 150;
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.24s ease, visibility 0.24s ease;
  }

  html[dir="rtl"] .site-drawer {
    right: auto;
    left: 0;
    box-shadow: 8px 0 28px rgba(0, 0, 0, 0.18);
    transform: translate3d(-100%, 0, 0);
  }

  .site-drawer.is-open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }

  html[dir="rtl"] .site-drawer.is-open {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 560px) {
  .footer-nav-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-block p {
    max-inline-size: none;
  }

  .top-promo-bar .btn-play span {
    font-size: 0.82rem;
  }

  .hero-cta .btn {
    flex: 1 1 100%;
    min-width: min(100%, 12rem);
  }

  .trust-legal-links .btn {
    flex: 1 1 100%;
    min-width: min(100%, 12rem);
  }

  .mode-visual-card {
    padding: 1rem;
  }

  .device-mockup {
    width: min(100%, 200px);
  }
}

@media (max-width: 390px) {
  .container {
    width: min(100% - 1.25rem, var(--cc-max-width));
  }

  .hero {
    padding: 2rem 0 2rem;
  }

  .section {
    padding: 2rem 0;
  }

  .mode-card,
  .feature-card,
  .step-card,
  .trust-card {
    padding: 1rem;
  }
}
