/* OpenRun marketing site — static, no build step, no dependencies. */

:root {
  /* Palette */
  --lime: #c8ff3d;
  --lime-ink: #1a2a00;
  --canvas: #0b0d12;
  --card: #161a22;
  --mist: #222833;
  --ink: #f4f6f1;
  --muted: #8b9388;
  --white: #ffffff;

  /* Derived */
  --lime-soft: rgba(200, 255, 61, 0.14);
  --lime-glow: rgba(200, 255, 61, 0.35);
  --line: rgba(244, 246, 241, 0.09);

  /* Type */
  --font: ui-rounded, "SF Pro Rounded", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --text-sm: 0.9375rem;
  --text-md: 1.0625rem;
  --text-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.3125rem);
  --h3: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --h2: clamp(1.875rem, 1.4rem + 2vw, 3rem);
  --h1: clamp(2.25rem, 1.3rem + 3.6vw, 3.75rem);

  /* Space */
  --s1: 0.25rem;
  --s2: 0.5rem;
  --s3: 0.75rem;
  --s4: 1rem;
  --s5: 1.5rem;
  --s6: 2rem;
  --s7: 3rem;
  --s8: 4.5rem;
  --s9: 7rem;

  /* Shape */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-float: 0 40px 90px rgba(0, 0, 0, 0.55);
  --shadow-lime: 0 10px 34px rgba(200, 255, 61, 0.28);

  --wrap: 1180px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--text-md);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--lime);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--white);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.wrap {
  width: min(var(--wrap), 100% - 2rem);
  margin-inline: auto;
}

/* Accessibility helpers */
.skip-link {
  position: absolute;
  left: var(--s4);
  top: -100px;
  z-index: 100;
  padding: var(--s3) var(--s5);
  border-radius: 999px;
  background: var(--lime);
  color: var(--lime-ink);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  top: var(--s3);
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  border-radius: 6px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  min-height: 52px;
  max-width: 100%;
  padding: var(--s3) var(--s6);
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  font-size: var(--text-md);
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.btn--lime {
  background: var(--lime);
  color: var(--lime-ink);
  box-shadow: var(--shadow-lime);
}

.btn--lime:hover {
  color: var(--lime-ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(200, 255, 61, 0.42);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(244, 246, 241, 0.28);
}

.btn--ghost:hover {
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime-soft);
}

.btn--small {
  min-height: 44px;
  padding: 0 var(--s5);
  font-size: var(--text-sm);
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn:hover {
    transition: none;
    transform: none;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  background: rgba(11, 13, 18, 0.82);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding-block: var(--s2);
  gap: var(--s2) var(--s4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.nav {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: var(--s1) var(--s5);
}

.nav a:not(.btn) {
  padding: var(--s2) var(--s1);
  color: var(--ink);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  opacity: 0.86;
}

.nav a:not(.btn):hover {
  color: var(--lime);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--s3);
}

/* Mobile menu (no JavaScript: <details>) */
.menu {
  position: relative;
}

.menu > summary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 var(--s4);
  border: 2px solid rgba(244, 246, 241, 0.28);
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--text-sm);
  list-style: none;
  cursor: pointer;
}

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

.menu[open] > summary {
  border-color: var(--lime);
  background: var(--lime-soft);
}

.menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + var(--s3));
  display: grid;
  gap: var(--s1);
  min-width: 220px;
  padding: var(--s3);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-float);
}

.menu-panel a {
  display: block;
  padding: var(--s3) var(--s4);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.menu-panel a:hover {
  background: var(--mist);
  color: var(--lime);
}

@media (min-width: 56.25em) {
  .nav {
    display: flex;
  }
  .menu,
  .header-actions {
    display: none;
  }
}

@media (max-width: 26.25em) {
  .header-actions .btn {
    display: none;
  }
}

/* Sections */
.section {
  padding-block: var(--s8);
}

.section-head {
  max-width: 720px;
  margin-bottom: var(--s7);
}

.section-head p {
  margin-top: var(--s4);
  color: var(--muted);
  font-size: var(--text-lg);
}

.section-head h2 {
  font-size: var(--h2);
}

.eyebrow {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s4);
  padding: var(--s1) var(--s4);
  border: 1px solid rgba(200, 255, 61, 0.35);
  border-radius: 999px;
  background: var(--lime-soft);
  color: var(--lime);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  padding-block: var(--s7) var(--s8);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 90%;
  z-index: -2;
  background:
    radial-gradient(60% 60% at 82% 20%, rgba(200, 255, 61, 0.16), transparent 70%),
    radial-gradient(50% 50% at 8% 6%, rgba(90, 120, 255, 0.12), transparent 70%);
}

/* Faint half-court markings behind the hero */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='700' viewBox='0 0 900 700' fill='none' stroke='%23f4f6f1' stroke-opacity='0.06' stroke-width='2'%3E%3Crect x='40' y='40' width='820' height='620' rx='24'/%3E%3Cpath d='M450 40v620'/%3E%3Ccircle cx='450' cy='350' r='90'/%3E%3Cpath d='M40 210h150v280H40M860 210H710v280h150'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 62% 40%;
  background-size: min(1100px, 130%) auto;
  -webkit-mask-image: linear-gradient(to bottom, #000 40%, transparent);
  mask-image: linear-gradient(to bottom, #000 40%, transparent);
}

.hero-grid {
  display: grid;
  gap: var(--s7);
  align-items: center;
}

.hero h1 {
  font-size: var(--h1);
}

.hero h1 .line {
  display: block;
}

.hero h1 .accent {
  color: var(--lime);
}

.hero-copy .lede {
  margin-top: var(--s5);
  max-width: 34rem;
  color: rgba(244, 246, 241, 0.82);
  font-size: var(--text-lg);
}

.benefits {
  display: grid;
  gap: var(--s3);
  margin: var(--s6) 0 0;
  list-style: none;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-weight: 600;
}

.tick {
  flex: none;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--lime-ink);
}

.tick svg {
  width: 15px;
  height: 15px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: var(--s6);
}

.hero-note {
  margin-top: var(--s4);
  color: var(--muted);
  font-size: var(--text-sm);
}

@media (min-width: 960px) {
  .hero {
    padding-block: var(--s8) var(--s9);
  }
  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: var(--s6);
  }
}

@media (max-width: 559px) {
  .cta-row .btn {
    width: 100%;
  }
}

/* Trust strip */
.trust {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(22, 26, 34, 0.6), rgba(22, 26, 34, 0.2));
}

.trust ul {
  display: grid;
  gap: 0;
  list-style: none;
}

.trust li {
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: var(--s5) var(--s2);
  font-weight: 700;
  font-size: var(--text-lg);
}

.trust li + li {
  border-top: 1px solid var(--line);
}

.trust .ico {
  flex: none;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--mist);
  color: var(--lime);
}

.trust .ico svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 800px) {
  .trust ul {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust li {
    padding-inline: var(--s5);
  }
  .trust li + li {
    border-top: 0;
    border-left: 1px solid var(--line);
  }
}

/* Feature cards */
.feature-grid {
  display: grid;
  gap: var(--s4);
  list-style: none;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  padding: var(--s6);
  background: linear-gradient(160deg, var(--card), #12151c);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}

.feature .ico {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--lime-soft);
  color: var(--lime);
  border: 1px solid rgba(200, 255, 61, 0.28);
}

.feature .ico svg {
  width: 28px;
  height: 28px;
}

.feature h3 {
  font-size: var(--h3);
}

.feature p {
  color: var(--muted);
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* How it works */
.steps {
  display: grid;
  gap: var(--s4);
  list-style: none;
  counter-reset: step;
}

.step {
  position: relative;
  padding: var(--s6) var(--s6) var(--s6) var(--s6);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  counter-increment: step;
}

.step::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: var(--s4);
  border-radius: 50%;
  background: var(--lime);
  color: var(--lime-ink);
  font-weight: 900;
  font-size: 1.25rem;
}

.step h3 {
  font-size: var(--h3);
}

.step p {
  margin-top: var(--s2);
  color: var(--muted);
}

@media (min-width: 860px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Duo device frames — built in CSS, hinge-aware */
.duo {
  margin: 0;
}

.duo__chassis {
  position: relative;
  display: flex;
  align-items: stretch;
  padding: 10px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, #3a4150 0%, #1a1e27 38%, #0e1117 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 2px 0 rgba(255, 255, 255, 0.08),
    var(--shadow-float),
    0 0 90px rgba(200, 255, 61, 0.09);
}

/* A soft reflection along the top edge of the chassis */
.duo__chassis::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 30%, transparent 70%, rgba(200, 255, 61, 0.07));
}

.duo__panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
}

/* The screenshots are contained, never cropped or stretched. */
.duo__panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.duo__hinge {
  flex: none;
  width: 16px;
  margin-inline: -1px;
  background: linear-gradient(90deg, #07090c, #2b313d 50%, #07090c);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.8);
}

/* Two equal panels either side of the hinge. Each holds one whole screenshot. */
.duo--pair .duo__panel {
  aspect-ratio: 1 / 1;
}

.duo--pair .duo__panel {
  border-radius: 24px 6px 6px 24px;
}

.duo--pair .duo__panel + .duo__hinge + .duo__panel {
  border-radius: 6px 24px 24px 6px;
}

/* Single-panel frames keep their image's own proportions. */
.duo--folded .duo__panel {
  aspect-ratio: 1145 / 1374;
}

.duo--open .duo__panel {
  aspect-ratio: 1540 / 1021;
}

.duo figcaption {
  margin-top: var(--s4);
  color: var(--muted);
  font-size: var(--text-sm);
  text-align: center;
}

.duo figcaption strong {
  color: var(--ink);
}

/* Narrow screens: stack the pair like a tent-mode Duo so each screen stays large. */
@media (max-width: 599px) {
  .duo--pair .duo__chassis {
    flex-direction: column;
  }
  .duo--pair .duo__hinge {
    width: auto;
    height: 14px;
    margin-inline: 0;
    margin-block: -1px;
    background: linear-gradient(180deg, #07090c, #2b313d 50%, #07090c);
  }
  .duo--pair .duo__panel {
    flex: none;
    aspect-ratio: 4 / 3;
    border-radius: 24px 24px 6px 6px;
  }
  .duo--pair .duo__panel + .duo__hinge + .duo__panel {
    border-radius: 6px 6px 24px 24px;
  }
}

.hero-visual {
  width: 100%;
  max-width: 660px;
  margin-inline: auto;
}

/* Duo experience */
.modes {
  display: grid;
  gap: var(--s6);
}

.mode {
  display: grid;
  gap: var(--s6);
  padding: var(--s5);
  background: linear-gradient(160deg, var(--card), #12151c);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  align-items: center;
}

.mode > * {
  min-width: 0;
}

.mode h3 {
  font-size: var(--h3);
}

.mode .kicker {
  display: inline-block;
  margin-bottom: var(--s3);
  padding: var(--s1) var(--s3);
  border-radius: 999px;
  background: var(--mist);
  color: var(--lime);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mode ul {
  display: grid;
  gap: var(--s3);
  margin-top: var(--s4);
  list-style: none;
}

.mode li {
  display: flex;
  gap: var(--s3);
  color: rgba(244, 246, 241, 0.86);
}

.mode li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 0.62em;
  border-radius: 50%;
  background: var(--lime);
}

.mode .duo {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .mode {
    grid-template-columns: 1fr 1fr;
    padding: var(--s7);
  }
  .mode--open .duo {
    order: 2;
  }
  .mode--folded .duo {
    max-width: 360px;
  }
}

/* App preview */
.preview-grid {
  display: grid;
  gap: var(--s7);
  align-items: start;
}

.preview-grid .duo {
  width: 100%;
  margin-inline: auto;
}

.preview-grid .duo--folded {
  max-width: 400px;
}

@media (min-width: 960px) {
  .preview-grid {
    grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
    gap: var(--s8);
    align-items: center;
  }
}

/* Download */
.download {
  position: relative;
  overflow: hidden;
  padding: var(--s8) var(--s6);
  text-align: center;
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(200, 255, 61, 0.2), transparent 70%),
    linear-gradient(160deg, var(--card), #10131a);
  border: 1px solid rgba(200, 255, 61, 0.28);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
}

.download h2 {
  font-size: var(--h2);
  max-width: 18ch;
  margin-inline: auto;
}

.download p {
  margin: var(--s4) auto 0;
  max-width: 34rem;
  color: rgba(244, 246, 241, 0.82);
  font-size: var(--text-lg);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  margin-top: var(--s6);
}

.badges a {
  display: inline-block;
  border-radius: var(--r-sm);
  transition: transform 0.18s ease;
}

.badges a:hover {
  transform: translateY(-3px);
}

.badges img {
  width: 200px;
  height: auto;
}

/* The Google Play file has more built-in padding, so it is a little wider to look the same size. */
.badges a:nth-child(2) img {
  width: 226px;
}

@media (prefers-reduced-motion: reduce) {
  .badges a,
  .badges a:hover {
    transition: none;
    transform: none;
  }
}

/* Footer */
.site-footer {
  margin-top: var(--s8);
  padding-block: var(--s7) var(--s6);
  border-top: 1px solid var(--line);
  background: #090b0f;
}

.footer-grid {
  display: grid;
  gap: var(--s6);
}

.footer-brand p {
  margin-top: var(--s3);
  max-width: 26rem;
  color: var(--muted);
  font-size: var(--text-sm);
}

.footer-links {
  display: grid;
  gap: var(--s2);
  list-style: none;
}

.footer-links a {
  display: inline-block;
  padding: var(--s1) 0;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--lime);
  text-decoration: underline;
}

.footer-title {
  margin-bottom: var(--s3);
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.copyright {
  margin-top: var(--s7);
  padding-top: var(--s5);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--text-sm);
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

/* Legal and support pages */
.page-hero {
  padding-block: var(--s7) var(--s5);
  background: radial-gradient(60% 100% at 80% 0%, rgba(200, 255, 61, 0.1), transparent 70%);
}

.page-hero h1 {
  font-size: clamp(2.125rem, 1.5rem + 3vw, 3.5rem);
}

.page-hero .lede {
  margin-top: var(--s4);
  max-width: 44rem;
  color: rgba(244, 246, 241, 0.82);
  font-size: var(--text-lg);
}

.draft-note {
  margin-top: var(--s5);
  padding: var(--s4) var(--s5);
  max-width: 44rem;
  background: rgba(200, 255, 61, 0.08);
  border: 1px solid rgba(200, 255, 61, 0.4);
  border-left-width: 6px;
  border-radius: var(--r-md);
  font-size: var(--text-sm);
}

.draft-note strong {
  color: var(--lime);
}

.meta {
  margin-top: var(--s4);
  color: var(--muted);
  font-size: var(--text-sm);
}

.doc-layout {
  display: grid;
  gap: var(--s6);
  padding-block: var(--s6) var(--s8);
}

.toc {
  padding: var(--s5);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
}

.toc h2 {
  margin-bottom: var(--s3);
  font-size: 1rem;
  letter-spacing: 0;
}

.toc ol {
  display: grid;
  gap: 2px;
  padding-left: 1.25rem;
}

.toc li {
  padding: 3px 0;
}

.toc a {
  color: var(--ink);
  text-decoration: none;
}

.toc a:hover {
  color: var(--lime);
  text-decoration: underline;
}

.prose {
  max-width: 46rem;
}

.prose section {
  padding-block: var(--s5);
  border-top: 1px solid var(--line);
}

.prose section:first-child {
  border-top: 0;
  padding-top: 0;
}

.prose h2 {
  margin-bottom: var(--s3);
  font-size: clamp(1.375rem, 1.2rem + 0.8vw, 1.75rem);
}

.prose p + p,
.prose p + ul,
.prose ul + p {
  margin-top: var(--s3);
}

.prose ul {
  padding-left: 1.25rem;
}

.prose li {
  margin-top: var(--s2);
}

.prose p,
.prose li {
  color: rgba(244, 246, 241, 0.88);
}

@media (min-width: 1000px) {
  .doc-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: var(--s8);
  }
  .toc {
    position: sticky;
    top: calc(var(--header-h) + var(--s5));
    align-self: start;
    max-height: calc(100vh - var(--header-h) - var(--s7));
    overflow: auto;
  }
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s5);
  padding: var(--s6);
  background:
    radial-gradient(70% 120% at 0% 0%, rgba(200, 255, 61, 0.16), transparent 70%),
    var(--card);
  border: 1px solid rgba(200, 255, 61, 0.3);
  border-radius: var(--r-lg);
}

.contact-card h2 {
  font-size: clamp(1.375rem, 1.2rem + 0.8vw, 1.75rem);
}

.contact-card p {
  margin-top: var(--s2);
  color: rgba(244, 246, 241, 0.82);
}

.faq-grid {
  display: grid;
  gap: var(--s4);
}

.faq {
  padding: var(--s5) var(--s6);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}

.faq h2 {
  margin-bottom: var(--s2);
  font-size: 1.25rem;
}

.faq p {
  color: rgba(244, 246, 241, 0.86);
}

.faq p + p {
  margin-top: var(--s2);
}

@media (min-width: 800px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Increased text size and zoom: never let long words break the layout */
h1,
h2,
h3,
p,
li {
  overflow-wrap: anywhere;
}

@media print {
  .site-header,
  .skip-link,
  .hero::before,
  .hero::after {
    display: none;
  }
  body {
    background: #fff;
    color: #000;
  }
}
