:root {
  --font-geist-sans: Arial, Helvetica, sans-serif;
  --font-geist-mono: "Courier New", monospace;
  --bg: #f4f2ed;
  --surface: #ffffff;
  --surface-2: #eae7e0;
  --ink: #101820;
  --muted: #5d6871;
  --line: rgba(16, 24, 32, 0.14);
  --accent: #1c6376;
  --accent-dark: #114653;
  --forest: #b6082d;
  --forest-dark: #78051e;
  --minds: #6b1f70;
  --minds-dark: #341036;
  --orange: #f29a17;
  --header: rgba(244, 242, 237, 0.92);
  --shadow: 0 28px 70px rgba(13, 26, 34, 0.2);
}

:root[data-theme="dark"] {
  --bg: #0c1216;
  --surface: #151d22;
  --surface-2: #1b252b;
  --ink: #f4f4ef;
  --muted: #aeb8bd;
  --line: rgba(244, 244, 239, 0.14);
  --accent: #66b0c0;
  --accent-dark: #8ec7d3;
  --header: rgba(12, 18, 22, 0.91);
  --shadow: 0 30px 85px rgba(0, 0, 0, 0.48);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  transition: background 220ms ease, color 220ms ease;
}

button, a, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

.website-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--ink);
  color: var(--bg);
}

.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: var(--header);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1440px);
  height: 82px;
  margin: 0 auto;
  padding: 0 5vw;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1;
}

.brand-mark {
  display: block;
  width: 38px;
  height: 38px;
  margin-right: 3px;
  object-fit: contain;
}

.wordmark i {
  width: 27px;
  height: 3px;
  background: var(--accent);
  transform: skewX(-28deg);
}

.wordmark strong { color: var(--accent); font-weight: 900; }

.nav {
  display: flex;
  align-items: center;
  gap: 29px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav > a:not(.nav-cta):hover { color: var(--ink); }

.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 22px;
  border-radius: 8px;
  font-weight: 800;
}

.nav-cta {
  padding: 0 21px;
  background: var(--ink);
  color: var(--bg);
}

.button {
  padding: 0 25px;
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: white; }
.button-primary:hover { background: var(--accent-dark); }

.theme-toggle {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.theme-toggle svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 31%),
    linear-gradient(135deg, var(--surface) 0%, var(--bg) 58%, var(--surface-2) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  width: min(100%, 1340px);
  min-height: calc(100svh - 130px);
  margin: 0 auto;
  padding: 60px 5vw 92px;
}

.hero-copy { position: relative; z-index: 4; max-width: 650px; }

.eyebrow, .section-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 27px;
}

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

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 6.8vw, 100px);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.07em;
}

.hero h1 span {
  display: block;
  margin-top: 9px;
  margin-left: 0.38em;
  color: var(--accent);
  font-style: italic;
  white-space: nowrap;
}

.hero-lede {
  max-width: 600px;
  margin: 35px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.play-status, .store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.05;
}

.play-status svg, .store-badge svg { width: 23px; fill: currentColor; }

.play-status small, .store-badge small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-visual { position: relative; height: 685px; min-width: 0; }

.hero-visual::before {
  position: absolute;
  top: 17%;
  right: 3%;
  bottom: 10%;
  left: 8%;
  content: "";
  border-radius: 36px;
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
  transform: rotate(-4deg);
}

.hero-phone {
  position: absolute;
  overflow: hidden;
  padding-top: 27px;
  border: 8px solid #11181d;
  border-radius: 35px;
  background: #11181d;
  box-shadow: var(--shadow);
}

.hero-phone > span {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 15px;
  color: rgba(255,255,255,0.68);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.hero-phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-phone-forest {
  z-index: 2;
  top: 74px;
  left: 1%;
  width: 290px;
  height: 580px;
  transform: rotate(-5deg);
}

.hero-phone-music {
  z-index: 3;
  top: 4px;
  right: 2%;
  width: 330px;
  height: 660px;
  transform: rotate(3deg);
}

.ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 850px;
  height: 48px;
  background: #b6082d;
  color: #f2f5f4;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.19em;
}

.ticker i { color: #ffd46a; font-style: normal; }

.section {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 106px 5vw;
}

.apps-section { padding-top: 102px; }

.apps-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  padding-top: 0;
  padding-bottom: 35px;
}

.apps-heading h2, .features-intro h2, .faq-heading h2,
.contact-copy h2, .legal-promo h2 {
  margin: 16px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.app-switcher {
  display: flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.app-switcher button {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.app-switcher button span {
  margin-right: 8px;
  opacity: 0.55;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.app-switcher button.active { color: white; }
.app-switcher .forest-tab.active { background: var(--forest); }
.app-switcher .minds-tab.active { background: var(--minds); }

.app-stage {
  position: relative;
  width: 100%;
  min-height: 790px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
  color: white;
  transition: background 240ms ease;
}

.app-stage.forest {
  background: linear-gradient(125deg, var(--forest) 0%, var(--forest-dark) 100%);
}

.app-stage.simple-minds {
  background:
    radial-gradient(circle at 80% 26%, rgba(242, 154, 23, 0.2), transparent 23%),
    linear-gradient(125deg, var(--minds) 0%, var(--minds-dark) 100%);
}

.app-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: 6vw;
  width: min(100%, 1480px);
  min-height: 790px;
  margin: 0 auto;
  padding: 78px max(7vw, 72px);
}

.app-panel[hidden] {
  display: none !important;
}

.app-copy { position: relative; z-index: 3; max-width: 540px; }

.status-label {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border-bottom: 2px solid rgba(255,255,255,0.52);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-overline {
  margin: 32px 0 11px;
  color: rgba(255,255,255,0.52);
  font-family: var(--font-geist-mono), monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.app-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6.4vw, 88px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.app-copy > p:not(.app-overline) {
  margin: 27px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 18px;
  line-height: 1.68;
}

.app-copy ul {
  display: grid;
  gap: 11px;
  margin: 27px 0 31px;
  padding: 0;
  color: rgba(255,255,255,0.93);
  font-size: 16px;
  line-height: 1.45;
  list-style: none;
}

.app-copy li { position: relative; padding-left: 22px; }

.app-copy li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 9px;
  height: 2px;
  content: "";
  background: rgba(255,255,255,0.75);
}

.store-badge {
  border-color: rgba(255,255,255,0.2);
  background: white;
  color: #13191d;
}

.notify-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 7px;
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.app-screens { position: relative; height: 660px; }

.screen {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 8px solid #14191d;
  border-radius: 32px;
  background: #14191d;
  box-shadow: 0 32px 65px rgba(0,0,0,0.38);
}

.screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.primary-screen {
  z-index: 2;
  top: 0;
  right: 0;
  width: 318px;
  height: 640px;
  transform: rotate(2.8deg);
}

.secondary-screen {
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 270px;
  height: 540px;
  opacity: 0.92;
  transform: rotate(-6deg);
}

.minds-screens .primary-screen { right: 5%; }

.widget-card {
  position: absolute;
  z-index: 3;
  right: 31%;
  bottom: 48px;
  width: 360px;
  margin: 0;
  padding: 13px;
  border-radius: 15px;
  background: rgba(16, 18, 22, 0.9);
  box-shadow: 0 22px 45px rgba(0,0,0,0.4);
  transform: rotate(-4deg);
}

.widget-card span {
  display: block;
  margin: 0 0 9px 3px;
  color: rgba(255,255,255,0.55);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.widget-card img { display: block; width: 100%; border-radius: 8px; }

.carousel-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  background: rgba(10, 12, 14, 0.26);
  color: white;
  cursor: pointer;
  font-size: 20px;
}

.carousel-arrow:hover { background: rgba(10, 12, 14, 0.48); }
.carousel-arrow.previous { left: 16px; }
.carousel-arrow.next { right: 16px; }

.features {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 8vw;
}

.features-intro { position: sticky; top: 120px; }

.features-intro > p:last-child, .faq-heading > p:last-child,
.contact-copy > p:last-child {
  max-width: 430px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-card {
  position: relative;
  min-height: 430px;
  padding: 30px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 66%, transparent);
}

.feature-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
}

.feature-card small {
  color: var(--accent);
  font-family: var(--font-geist-sans), sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-media {
  position: relative;
  height: 176px;
  margin: 24px -10px 0;
  overflow: hidden;
  border-radius: 10px;
  background: var(--surface-2);
}

.feature-media::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(16, 24, 32, 0.1);
  pointer-events: none;
}

.feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-card.football {
  border-top: 4px solid var(--forest);
  background: color-mix(in srgb, var(--forest) 7%, var(--surface));
}

.feature-card.music {
  border-top: 4px solid var(--minds);
  background: color-mix(in srgb, var(--minds) 8%, var(--surface));
}

.feature-card.football small {
  color: var(--forest);
}

.feature-card.music small {
  color: var(--minds);
}

.feature-card.football .feature-media::before,
.feature-card.music .feature-media::before {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 5px;
  color: white;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card.football .feature-media::before {
  content: "Football apps";
  background: var(--forest);
}

.feature-card.music .feature-media::before {
  content: "Music apps";
  background: var(--minds);
}

.feature-card h3 {
  margin: 24px 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.faq {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 8vw;
  border-top: 1px solid var(--line);
}

.faq-heading { position: sticky; top: 120px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  display: grid;
  grid-template-columns: 48px 1fr 22px;
  align-items: center;
  min-height: 84px;
  gap: 14px;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary > span {
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.faq-list summary i { position: relative; width: 18px; height: 18px; }

.faq-list summary i::before, .faq-list summary i::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  content: "";
  background: var(--accent);
}

.faq-list summary i::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

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

.faq-list details > p {
  margin: -3px 40px 28px 62px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.contact { background: #18242b; color: #f4f6f5; }

.contact-page {
  min-height: 100svh;
  padding-top: 82px;
  background: var(--bg);
}

.standalone-contact {
  display: flex;
  min-height: calc(100svh - 82px);
  align-items: center;
}

.contact-page .contact {
  background: var(--bg);
  color: var(--ink);
}

.contact-page .contact .section-kicker { color: var(--accent); }
.contact-page .contact-copy h1 { color: var(--ink); }
.contact-page .contact-copy > p:last-child { color: var(--muted); }

.contact-inner {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 8vw;
}

.contact .section-kicker { color: #76bdcb; }
.contact-copy h2 { color: white; }
.contact-copy h1 {
  margin: 16px 0 0;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.055em;
}
.contact-copy > p:last-child { color: rgba(255,255,255,0.65); }

.contact-form {
  padding: 38px;
  border-radius: 16px;
  background: #f8f8f5;
  color: #101820;
  box-shadow: 0 25px 55px rgba(0,0,0,0.2);
}

.required-note {
  margin: 0 0 24px;
  color: #5d6871;
  font-size: 14px;
  line-height: 1.5;
}

.field-label {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.required-mark { color: #1c6376; }

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label:not(.consent-field) {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: #5d6871;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-form input:not([type="checkbox"]), .contact-form textarea,
.contact-form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(16,24,32,0.22);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #101820;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input:not([type="checkbox"]), .contact-form select { height: 45px; }

.contact-form textarea {
  min-height: 110px;
  padding: 12px 0;
  resize: vertical;
}

.contact-form input:focus, .contact-form textarea:focus,
.contact-form select:focus {
  border-bottom-color: #1c6376;
  box-shadow: 0 1px 0 #1c6376;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 4px 0 22px;
  color: #5d6871;
  font-size: 13px;
  line-height: 1.55;
}

.consent-field input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: #1c6376;
}

.consent-field a {
  color: #1c6376;
  font-weight: 800;
  text-decoration: underline;
}

.form-message {
  margin: 18px 0 0;
  padding: 13px 15px;
  border-left: 3px solid #1c6376;
  background: rgba(28,99,118,0.08);
  color: #5d6871;
  font-size: 12px;
  line-height: 1.5;
}

.legal-promo {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 8vw;
}

.legal-cards { display: grid; gap: 12px; }

.legal-cards a {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 27px 29px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  transition: transform 180ms ease, border-color 180ms ease;
}

.legal-cards a:hover {
  transform: translateX(4px);
  border-color: var(--accent);
}

.legal-cards span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 600;
}

.legal-cards p {
  grid-column: 1;
  max-width: 520px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.legal-cards b {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: var(--accent);
  font-size: 22px;
}

footer {
  padding: 74px 5vw 24px;
  background: #0a1014;
  color: #f5f6f3;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8vw;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding-bottom: 65px;
}

.footer-brand .wordmark { color: white; }
.footer-brand .wordmark strong { color: #76bdcb; }

.footer-brand p {
  max-width: 330px;
  margin-top: 22px;
  color: rgba(255,255,255,0.48);
  font-size: 16px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: rgba(255,255,255,0.38);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a { color: rgba(255,255,255,0.77); font-size: 15px; }
.footer-links a:hover { color: #76bdcb; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.11);
  color: rgba(255,255,255,0.34);
  font-size: 13px;
}

.legal-page {
  min-height: 100svh;
  padding-top: 82px;
  background: var(--bg);
}
.legal-header { border-bottom: 1px solid var(--line); background: var(--surface); }

.legal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1120px);
  height: 80px;
  margin: 0 auto;
  padding: 0 28px;
}

.legal-header a:last-child {
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
}

.policy {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: 82px 28px 110px;
}

.policy h1 {
  margin: 13px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 82px);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.policy-meta { margin: 0 0 45px; color: var(--muted); font-size: 13px; }

.language-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: -27px 0 34px;
  color: var(--muted);
  font-size: 14px;
}

.language-selector a,
.language-selector span[aria-current="page"] {
  padding: 7px 9px;
  border-radius: 6px;
}

.language-selector a {
  color: var(--accent);
  font-weight: 750;
  text-decoration: none;
}

.language-selector a:hover { background: var(--surface-2); }

.language-selector a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.language-selector span[aria-current="page"] {
  background: var(--surface-2);
  color: var(--ink);
  font-weight: 800;
}

.language-divider { padding: 0 !important; color: var(--line-strong); }

.policy-intro {
  margin: 0 0 45px;
  padding: 25px 28px;
  border-left: 4px solid var(--accent);
  background: var(--surface);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.policy section { padding: 27px 0; border-top: 1px solid var(--line); }

.policy > h2 {
  margin-top: 27px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}

.policy h2 {
  margin: 0 0 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.policy h3 { margin: 22px 0 8px; font-size: 15px; }

.policy p, .policy li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.policy ul { display: grid; gap: 9px; padding-left: 20px; }
.policy a { color: var(--accent); font-weight: 750; text-decoration: underline; }

.policy hr {
  margin: 38px 0 24px;
  border: 0;
  border-top: 1px solid var(--line);
}

.policy-contact {
  padding: 25px !important;
  border: 0 !important;
  border-radius: 10px;
  background: var(--surface-2);
}

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: minmax(0, 0.92fr) minmax(450px, 1.08fr); }
  .hero-phone-forest { left: -4%; }
  .hero-phone-music { right: -4%; }
  .app-panel { gap: 3vw; padding-inline: 68px; }
  .app-screens { transform: scale(0.88); transform-origin: center; }
}

@media (max-width: 840px) {
  .header-inner { height: 74px; padding-inline: 22px; }
  .header-inner > a {
    min-width: 0;
    position: relative;
    z-index: 55;
  }

  .menu-toggle {
    position: relative;
    z-index: 54;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    z-index: 53;
    top: 74px;
    right: 0;
    left: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 22px 22px;
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(12, 23, 31, 0.12);
    font-size: 17px;
    transition: transform 200ms ease, opacity 180ms ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav > a:not(.nav-cta) {
    display: flex;
    min-height: 50px;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    width: 100%;
    margin-top: 12px;
    font-size: 15px;
  }

  .theme-toggle {
    position: absolute;
    right: 82px;
    bottom: 27px;
  }
  .hero { padding-top: 74px; }

  .hero-grid {
    display: flex;
    min-height: auto;
    flex-direction: column;
    padding: 70px 24px 110px;
  }

  .hero-copy { width: 100%; max-width: 680px; }
  .hero h1 { font-size: clamp(60px, 11.5vw, 84px); }

  .hero-visual {
    width: 100%;
    max-width: 650px;
    margin-top: 38px;
  }

  .apps-heading {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 24px;
  }

  .app-stage { width: 100%; }
  .app-panel { grid-template-columns: 1fr; padding: 64px 56px 22px; }
  .app-copy { max-width: 680px; }

  .app-screens {
    width: 650px;
    margin: 0 auto;
  }

  .section { padding: 88px 24px; }

  .features, .faq, .contact-inner, .legal-promo, .footer-main {
    grid-template-columns: 1fr;
    gap: 47px;
  }

  .features-intro, .faq-heading { position: static; }
}

@media (max-width: 560px) {
  .wordmark { gap: 6px; font-size: 14px; }
  .brand-mark { width: 32px; height: 32px; }
  .wordmark i { width: 20px; }
  .hero-grid { padding: 48px 18px 62px; }
  .hero h1 { font-size: clamp(44px, 13vw, 56px); }
  .hero h1 span { margin-left: 0.14em; }
  .hero-lede { font-size: 17px; }

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

  .play-status, .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    left: 26%;
    width: 380px;
    height: 490px;
    margin-bottom: -90px;
    margin-left: -190px;
    transform: scale(0.74);
    transform-origin: top center;
  }

  .hero-phone-forest { left: -2%; }
  .hero-phone-music { right: -4%; }
  .apps-section { padding-top: 0; }

  .apps-heading h2, .features-intro h2, .faq-heading h2,
  .contact-copy h2, .contact-copy h1, .legal-promo h2 { font-size: 42px; }

  .app-switcher { display: grid; width: 100%; }
  .app-switcher button { text-align: left; }
  .app-stage { width: 100%; min-height: 0; border-radius: 0; }
  .app-panel { min-height: 0; padding: 70px 28px 38px; }
  .app-copy h3 { font-size: 50px; }

  .app-screens {
    left: 50%;
    width: 620px;
    height: 640px;
    margin-left: -310px;
    margin-bottom: -275px;
    transform: scale(0.57);
    transform-origin: top center;
  }

  .carousel-arrow {
    top: 18px;
    bottom: auto;
    transform: none;
  }
  .section { padding: 76px 18px; }
  .apps-heading.section { padding: 44px 18px 26px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 410px; padding: 25px; }
  .feature-card h3 { margin-top: 22px; }

  .faq-list summary {
    grid-template-columns: 34px 1fr 18px;
    font-size: 18px;
  }

  .faq-list details > p { margin-right: 14px; margin-left: 48px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 27px 20px; }
  .contact-form .button { width: 100%; }
  .legal-cards a { padding: 23px 21px; }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 38px 22px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .legal-page { padding-top: 74px; }
  .contact-page { padding-top: 74px; }
  .standalone-contact { min-height: calc(100svh - 74px); }
  .policy { padding-inline: 20px; }
  .policy { padding-top: 62px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
