/* ==========================================================================
   Winnings — web design system
   Tokens mirror the iOS app's Theme.swift so web and app feel identical.
   ========================================================================== */

:root {
  /* Surfaces */
  --bg: #0f0f17;
  --bg-grad-top: #14141f;
  --bg-grad-bottom: #0b0b12;
  --card: #1c1c24;
  --card-light: #26262e;
  --card-pressed: #2e2e38;

  /* Brand */
  --accent: #ffc700;
  --gold-1: #ffd966;
  --gold-2: #f2a61a;
  --pb-blue: #0078f2;
  --pb-red: #e01f29;
  --success: #4cd980;
  --warning: #ff942e;
  --danger: #ff4752;

  /* Text */
  --text: #ffffff;
  --text-2: #b6b6b6;
  --text-3: #949494;

  /* Lines */
  --separator: rgba(255, 255, 255, 0.1);
  --hairline: rgba(255, 255, 255, 0.08);
  --accent-line: rgba(255, 199, 0, 0.28);

  /* Radii */
  --r-sm: 8px;
  --r-md: 10px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 20px;
  --r-pill: 999px;

  /* Type */
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --rounded: "SF Pro Rounded", ui-rounded, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas,
    "Liberation Mono", monospace;

  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 10px 30px rgba(255, 199, 0, 0.18);

  --container: 1080px;
  --prose: 760px;
}

/* ----------------------------------------------------------- base ---- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  background-image: radial-gradient(
      1200px 700px at 50% -200px,
      rgba(255, 199, 0, 0.06),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg-grad-top), var(--bg-grad-bottom) 70%);
  background-attachment: fixed;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--rounded);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.4em;
}

p {
  margin: 0 0 1em;
  color: var(--text-2);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #000;
  padding: 10px 16px;
  border-radius: var(--r-md);
  z-index: 200;
  font-weight: 700;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

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

/* --------------------------------------------------------- buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: var(--r-lg);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  text-decoration: none;
}
.btn-primary {
  color: #14110a;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(255, 199, 0, 0.26);
}
.btn-ghost {
  color: var(--text);
  background: var(--card-light);
  border-color: var(--separator);
}
.btn-ghost:hover {
  background: var(--card-pressed);
  transform: translateY(-1px);
}
.btn-block {
  width: 100%;
}

/* App Store badge button */
.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  border-radius: var(--r-lg);
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  transition: transform 0.12s ease, border-color 0.2s ease;
}
.appstore-badge:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}
.appstore-badge svg {
  width: 26px;
  height: 26px;
  flex: none;
}
.appstore-badge .ab-top {
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--text-2);
  line-height: 1;
}
.appstore-badge .ab-main {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.15;
}
.appstore-badge.is-soon {
  cursor: default;
}
.appstore-badge.is-soon:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.18);
}

/* ------------------------------------------------------------- nav ---- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  background: rgba(11, 11, 18, 0.72);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--rounded);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--text);
}
.brand:hover {
  text-decoration: none;
}
.brand img {
  height: 30px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
}
.nav-links a:hover {
  color: var(--text);
  text-decoration: none;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-toggle {
  display: none;
}

/* -------------------------------------------------- lottery balls ---- */

.balls {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ball {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 15px;
  color: #15161a;
  background: radial-gradient(circle at 32% 28%, #ffffff, #d9dde4 78%);
  box-shadow: inset 0 -3px 6px rgba(0, 0, 0, 0.18),
    0 2px 5px rgba(0, 0, 0, 0.35);
}
.ball.is-pb {
  color: #fff;
  background: radial-gradient(circle at 32% 28%, #ff6b6f, var(--pb-red) 76%);
}
.ball.is-blue {
  color: #fff;
  background: radial-gradient(circle at 32% 28%, #5aa9ff, var(--pb-blue) 76%);
}

/* --------------------------------------------------------- hero ------ */

.hero {
  padding: 72px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 60px);
  margin-bottom: 18px;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 19px;
  color: var(--text-2);
  max-width: 36ch;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-note {
  margin-top: 22px;
  font-size: 13px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 199, 0, 0.1);
  border: 1px solid var(--accent-line);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

/* Phone-style mock card reproducing the app's NEXT DRAWING panel */
.mock {
  background: linear-gradient(180deg, var(--card), #16161d);
  border: 1px solid var(--separator);
  border-radius: var(--r-2xl);
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.mock-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-2);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.mock-head .ic {
  color: var(--accent);
}
.mock-when {
  text-align: center;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 16px;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.cd-cell {
  background: #121219;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 12px 4px;
  text-align: center;
}
.cd-num {
  font-family: var(--mono);
  font-weight: 800;
  font-size: 30px;
  color: var(--accent);
  line-height: 1;
}
.cd-lab {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-top: 6px;
}
.mock-divider {
  height: 1px;
  background: var(--hairline);
  margin: 6px 0 16px;
}
.mock-last {
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-2);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.mock-date {
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 14px;
}
.mock .balls {
  justify-content: center;
}

/* --------------------------------------------------- section frame --- */

.section {
  padding: 64px 0;
}
.section-head {
  max-width: 620px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
}
.section-head p {
  font-size: 17px;
}

/* clarity strip (entertainment-only) */
.strip {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.015);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 40px 0;
}
.strip-item h3 {
  font-size: 16px;
  font-family: var(--rounded);
  margin-bottom: 6px;
}
.strip-item p {
  font-size: 14px;
  margin: 0;
}
.strip-item .ic {
  color: var(--accent);
  margin-bottom: 10px;
  display: inline-flex;
}

/* -------------------------------------------------------- cards ------ */

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

.card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.15s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-line);
}
.card .ic-badge {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 199, 0, 0.14);
  border: 1px solid rgba(255, 199, 0, 0.24);
  color: var(--accent);
  margin-bottom: 16px;
}
.card.tone-blue .ic-badge {
  background: rgba(0, 120, 242, 0.16);
  border-color: rgba(0, 120, 242, 0.3);
  color: #5aa9ff;
}
.card.tone-red .ic-badge {
  background: rgba(224, 31, 41, 0.16);
  border-color: rgba(224, 31, 41, 0.32);
  color: #ff7378;
}
.card.tone-green .ic-badge {
  background: rgba(76, 217, 128, 0.16);
  border-color: rgba(76, 217, 128, 0.3);
  color: var(--success);
}
.card.tone-purple .ic-badge {
  background: rgba(155, 109, 255, 0.16);
  border-color: rgba(155, 109, 255, 0.32);
  color: #b69aff;
}
.card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.card p {
  font-size: 14px;
  margin: 0;
}
.tag {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  color: var(--text-3);
  border: 1px solid var(--separator);
}
.tag.free {
  color: var(--success);
  border-color: rgba(76, 217, 128, 0.4);
}
.tag.plus {
  color: var(--accent);
  border-color: var(--accent-line);
}
.tag.pro {
  color: #5aa9ff;
  border-color: rgba(0, 120, 242, 0.4);
}

/* -------------------------------------------------------- pricing ---- */

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.tier {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.tier.is-featured {
  border-color: var(--accent-line);
  box-shadow: 0 0 0 1px var(--accent-line), var(--shadow-card);
  position: relative;
}
.tier-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #14110a;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.tier h3 {
  font-size: 20px;
  margin-bottom: 4px;
}
.tier .tier-sub {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 18px;
  min-height: 2.4em;
}
.tier .price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.tier .price .amt {
  font-family: var(--rounded);
  font-weight: 800;
  font-size: 34px;
  color: var(--text);
}
.tier .price .per {
  font-size: 13px;
  color: var(--text-3);
}
.tier .price-alt {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 20px;
}
.tier ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 11px;
}
.tier li {
  font-size: 14px;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tier li svg {
  flex: none;
  margin-top: 3px;
  color: var(--accent);
}
.tier .tier-foot {
  margin-top: auto;
}

/* ---------------------------------------------------------- faq ------ */

.faq {
  max-width: var(--prose);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq details {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 4px 20px;
}
.faq details[open] {
  border-color: var(--accent-line);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-family: var(--mono);
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after {
  content: "–";
}
.faq .faq-body {
  padding: 0 0 18px;
  color: var(--text-2);
  font-size: 15px;
}
.faq .faq-body p:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------ cta band ----- */

.cta-band {
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 199, 0, 0.07), transparent),
    var(--card);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-2xl);
  padding: 52px 28px;
}
.cta-band h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  margin-bottom: 12px;
}
.cta-band p {
  font-size: 17px;
  max-width: 48ch;
  margin: 0 auto 26px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* -------------------------------------------------------- footer ----- */

.footer {
  border-top: 1px solid var(--hairline);
  margin-top: 40px;
  padding: 48px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer .brand {
  margin-bottom: 14px;
}
.footer-blurb {
  font-size: 13px;
  color: var(--text-3);
  max-width: 38ch;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer-col a {
  color: var(--text-2);
  font-size: 14px;
}
.footer-col a:hover {
  color: var(--text);
}
.footer-legal {
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
  font-size: 12px;
  color: var(--text-3);
}
.footer-legal p {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 8px;
}

/* ---------------------------------------------------- legal pages ---- */

.legal {
  padding: 56px 0 24px;
}
.legal-wrap {
  max-width: var(--prose);
  margin: 0 auto;
}
.legal-head {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hairline);
}
.legal-head h1 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 10px;
}
.legal-head .lead {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 12px;
}
.legal-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-3);
  text-transform: uppercase;
}
.legal-toc {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  margin-bottom: 40px;
}
.legal-toc h2 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 12px;
}
.legal-toc ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 7px;
}
.legal-toc a {
  color: var(--text-2);
  font-size: 14px;
}
.legal-section {
  margin-bottom: 34px;
  scroll-margin-top: 84px;
}
.legal-section h2 {
  font-size: 21px;
  margin-bottom: 12px;
}
.legal-section h3 {
  font-size: 16px;
  margin: 22px 0 8px;
  color: var(--text);
}
.legal-section p,
.legal-section li {
  color: var(--text-2);
  font-size: 15.5px;
}
.legal-section ul {
  padding-left: 22px;
  margin: 0 0 1em;
}
.legal-section li {
  margin-bottom: 8px;
}
.callout {
  background: rgba(255, 199, 0, 0.07);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  margin: 0 0 28px;
}
.callout p {
  margin: 0;
  color: var(--text);
  font-size: 14.5px;
}
.callout strong {
  color: var(--accent);
}

/* support specifics */
.support-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.support-card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 22px;
}
.support-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.support-card p {
  font-size: 14px;
  margin-bottom: 12px;
}
.mailbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 15px;
  color: var(--accent);
  background: rgba(255, 199, 0, 0.08);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-md);
  padding: 12px 16px;
}

/* 404 */
.notfound {
  text-align: center;
  padding: 120px 0;
}
.notfound .balls {
  justify-content: center;
  margin-bottom: 28px;
}
.notfound h1 {
  font-size: 48px;
}

/* ---------------------------------------------------- responsive ----- */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-mock {
    max-width: 420px;
  }
  .grid-3,
  .tiers,
  .strip-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid,
  .support-cards {
    grid-template-columns: 1fr;
  }
  .nav-links,
  .nav-cta .btn {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav[data-open="true"] .nav-links {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(11, 11, 18, 0.98);
    border-bottom: 1px solid var(--hairline);
    padding: 8px 24px 20px;
  }
  .nav[data-open="true"] .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--hairline);
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 18px;
  }
  .hero {
    padding: 44px 0 24px;
  }
  .ball {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .countdown {
    gap: 7px;
  }
  .cd-num {
    font-size: 24px;
  }
}

.nav-toggle {
  background: var(--card-light);
  border: 1px solid var(--separator);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* --------------------------------------------------- utilities ------ */

.section--divided {
  border-top: 1px solid var(--hairline);
}
.u-prose {
  max-width: var(--prose);
  margin: 36px auto 0;
}
.u-mb-0 {
  margin-bottom: 0;
}
.u-mt-sm {
  margin-top: 24px;
}
.u-ml-sm {
  margin-left: 10px;
}
.support-card--lead {
  margin-bottom: 32px;
}
.support-card .hint {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 13px;
  color: var(--text-3);
}

/* ----------------------------------------------------- polish ------- */

/* Nav gains a hairline shadow once the page is scrolled. */
.nav.is-scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  border-bottom-color: var(--separator);
}

/* Scroll reveal — JS adds .reveal and toggles .is-visible. Without JS the
   content is always visible, so this is purely additive enhancement. */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Subtle, premium hover on the sample-pick balls. */
.mock .ball {
  transition: transform 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
