/* ==========================================================================
   DVLP Sports — landing page styles
   Tokens pulled from the Figma style guide (dark mode, actual variable values)
   ========================================================================== */

:root {
  /* Brand */
  --primary: #0C3260;
  --secondary: #FFD76D;
  --tertiary: #9F7200;
  --alternate: #D5DAE7;

  /* Utility (dark mode) */
  --bg: #031120;
  --surface: #061932;
  --surface-2: #0A2247;
  --text: #FFFFFF;
  --text-2: #7A8CA7;
  --link: #3B89FF;
  --border: rgba(213, 218, 231, 0.12);

  /* Semantic */
  --success: #00D388;
  --error: #E72B40;

  /* Gradients */
  --gold: linear-gradient(90deg, #9F7200 0%, #FFD76D 100%);
  --gold-soft: linear-gradient(135deg, rgba(255, 215, 109, 0.18), rgba(159, 114, 0, 0.06));
  --silver: linear-gradient(135deg, #F3F4F5 0%, #AEB4B1 100%);

  /* Type */
  --font: "Instrument Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Shape */
  --r-card: 20px;
  --r-pill: 40px;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, h4, p { margin: 0; }

.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Type scale (Figma text styles)
   -------------------------------------------------------------------------- */
.display  { font-size: clamp(40px, 6vw, 64px); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
.headline { font-size: clamp(30px, 4vw, 40px); font-weight: 700; line-height: 1.15; letter-spacing: -0.015em; }
.title    { font-size: 20px; font-weight: 700; line-height: 1.3; }
.body-lg  { font-size: 18px; font-weight: 500; line-height: 1.6; color: var(--text-2); }
.label    { font-size: 14px; font-weight: 600; line-height: 1.3; }
.eyebrow  {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--secondary);
}
.eyebrow::before { content: ""; width: 20px; height: 2px; background: var(--gold); border-radius: 2px; }

/* --------------------------------------------------------------------------
   Buttons (Figma "Button" component: 56px, radius 40, padding 24)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 56px; padding: 0 28px;
  border-radius: var(--r-pill); border: 1px solid transparent;
  font-weight: 700; font-size: 16px; white-space: nowrap;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--gold); color: #1a1200;
  box-shadow: 0 8px 24px rgba(255, 215, 109, 0.18);
}
.btn-primary:hover { box-shadow: 0 10px 32px rgba(255, 215, 109, 0.32); }
.btn-secondary {
  background: var(--surface); color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { background: var(--surface-2); }
.btn-sm { height: 44px; padding: 0 20px; font-size: 15px; }

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(3, 17, 32, 0.78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; font-size: 20px; letter-spacing: -0.01em; white-space: nowrap; flex: none; }
.brand svg { width: 38px; height: 26.5px; flex: none; }
.brand span b { color: var(--secondary); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--alternate); transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--border); color: var(--text); cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: currentColor; margin: 3px auto; border-radius: 2px; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 96px) 0 clamp(48px, 6vw, 80px); }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 55% at 78% 40%, rgba(12, 50, 96, 0.55), transparent 70%),
    radial-gradient(40% 40% at 20% 10%, rgba(255, 215, 109, 0.07), transparent 70%);
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: clamp(40px, 6vw, 80px);
}
.hero-copy { display: flex; flex-direction: column; gap: 24px; }
.hero-copy .display { max-width: 18ch; font-size: clamp(36px, 4.6vw, 56px); }
.hero-copy .display em { font-style: normal; background: var(--gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy .body-lg { max-width: 48ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 8px; color: var(--text-2); font-size: 14px; font-weight: 600; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta i { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }

/* Phone mock-up (built in CSS from the Passport screen) */
.hero-visual { display: flex; justify-content: center; position: relative; }
.hero-visual::after {
  content: ""; position: absolute; inset: 10% -10% -10% -10%; z-index: 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 215, 109, 0.12), transparent 70%);
  filter: blur(20px);
}
.phone {
  position: relative; z-index: 1;
  width: 320px; aspect-ratio: 402 / 874; max-height: 640px;
  background: var(--bg); border-radius: 44px;
  border: 1px solid rgba(213, 218, 231, 0.18);
  box-shadow: 0 0 0 8px #0a1a2e, 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255,255,255,0.04);
  padding: 22px 18px; overflow: hidden;
  transform: rotate(-3deg);
}
.phone::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px; pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 17, 32, 0), var(--bg) 85%);
}
.phone-status { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; color: var(--alternate); padding: 2px 8px 10px; }
.phone-title { display: flex; justify-content: space-between; align-items: center; font-size: 24px; font-weight: 700; padding: 6px 4px 10px; }
.phone-title .bell { width: 16px; height: 16px; border: 2px solid var(--alternate); border-radius: 6px 6px 3px 3px; opacity: .7; }

.passport-card {
  position: relative; margin-top: 44px;
  background: linear-gradient(180deg, #0A2247 0%, #061932 100%);
  border: 1.5px solid var(--secondary); border-radius: 22px;
  padding: 44px 14px 14px;
  box-shadow: 0 0 0 1px rgba(255, 215, 109, 0.15), 0 16px 40px rgba(0, 0, 0, 0.35);
}
.tier-badge {
  position: absolute; top: -38px; left: 50%; transform: translateX(-50%);
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--silver);
  display: grid; place-items: center;
  box-shadow: 0 0 0 6px var(--bg), 0 0 40px rgba(243, 244, 245, 0.35);
}
.tier-badge svg { width: 34px; height: auto; filter: grayscale(1) brightness(1.4); }
.tier-name { text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 0.2em; color: var(--alternate); margin-bottom: 12px; font-style: italic; }
.player-row { display: flex; align-items: center; gap: 12px; background: rgba(12, 50, 96, 0.45); border-radius: 14px; padding: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #3B89FF, #0C3260); flex: none; }
.player-name { font-size: 15px; font-weight: 700; }
.player-team { font-size: 11px; color: var(--secondary); font-weight: 600; }
.stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; margin-top: 12px; text-align: center; }
.stats small { display: block; font-size: 9px; color: var(--text-2); font-weight: 600; letter-spacing: .04em; white-space: nowrap; }
.stats b { font-size: 12px; font-weight: 700; white-space: nowrap; }

.phone-btn {
  margin-top: 16px; height: 42px; border-radius: 40px; display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--border); font-size: 13px; font-weight: 700;
}
.phone-section { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-2); font-weight: 600; margin: 16px 2px 8px; }
.feed-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 10px 12px; margin-bottom: 8px;
}
.feed-item .avatar { width: 30px; height: 30px; }
.feed-item .who { font-size: 12px; font-weight: 700; }
.feed-item .what { font-size: 11px; color: var(--text-2); }
.feed-item .tag { font-size: 11px; font-weight: 700; margin-top: 4px; }
.tag.gold { color: var(--secondary); }
.tag.green { color: var(--success); }
.feed-item .when { margin-left: auto; font-size: 10px; color: var(--text-2); align-self: flex-start; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: clamp(40px, 5vw, 64px) 0; }
.section:first-of-type { padding-top: clamp(56px, 7vw, 88px); }
.footer { margin-top: clamp(24px, 4vw, 48px); }
.section-head { display: flex; flex-direction: column; gap: 14px; max-width: 640px; margin-bottom: clamp(28px, 4vw, 40px); }
.section-head.wide { max-width: 900px; }
.section-head.wide .headline { white-space: nowrap; }
.section-head.center { align-items: center; text-align: center; margin-inline: auto; }

/* Feature cards */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255, 215, 109, 0.35); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35); }
.card p { color: var(--text-2); font-size: 15px; line-height: 1.6; }
.icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: var(--gold-soft); border: 1px solid rgba(255, 215, 109, 0.25); color: var(--secondary);
}
.icon svg { width: 22px; height: 22px; }

/* How it works */
.steps { position: relative; }
.step {
  position: relative;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 28px; display: flex; flex-direction: column; gap: 10px;
}
.step-num {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--gold); color: #1a1200; font-weight: 700; font-size: 16px; margin-bottom: 8px;
  box-shadow: 0 8px 20px rgba(255, 215, 109, 0.2);
}
.step h3 { margin: 0; }
.step p { color: var(--text-2); font-size: 15px; line-height: 1.6; margin: 0; }
.step::after {
  content: ""; position: absolute; top: 50px; left: calc(100% + 1px); width: 20px; height: 1px;
  background: rgba(255, 215, 109, 0.5);
}
.step:last-child::after { display: none; }

/* Tiers */
.tiers {
  background: linear-gradient(180deg, rgba(12, 50, 96, 0.35), rgba(3, 17, 32, 0));
  border: 1px solid var(--border); border-radius: 28px; padding: clamp(28px, 5vw, 56px);
}
.tier-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 8px; }
.tier { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.tier .medal {
  width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 0 0 5px var(--bg), 0 0 30px rgba(255,255,255,0.05);
}
.tier .medal svg { width: 30px; height: auto; }
.tier b { font-size: 15px; font-weight: 700; letter-spacing: .04em; }
.tier span { font-size: 13px; color: var(--text-2); font-weight: 600; }
.medal.beginner { background: linear-gradient(135deg, #3B89FF, #0C3260); }
.medal.bronze   { background: linear-gradient(135deg, #E0A36B, #7A4A1E); }
.medal.silver   { background: var(--silver); }
.medal.gold     { background: linear-gradient(135deg, #FFD76D, #9F7200); }
.medal.elite    { background: linear-gradient(135deg, #FFFFFF, #7A8CA7); box-shadow: 0 0 0 5px var(--bg), 0 0 40px rgba(255, 215, 109, 0.35); }
.medal svg { filter: grayscale(1) brightness(0.25); opacity: .75; }
.medal.beginner svg, .medal.bronze svg { filter: brightness(10); opacity: .9; }

/* Audiences */
.audiences { display: flex; flex-direction: column; gap: clamp(28px, 4vw, 48px); }
.audience-panel {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 64px); align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: 28px;
  padding: clamp(24px, 4vw, 48px);
}
.audience-panel.reverse .audience-media { order: 2; }
.audience-copy { display: flex; flex-direction: column; gap: 14px; }
.audience-copy .who { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--secondary); }
.title-lg { font-size: clamp(22px, 2.4vw, 28px); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
.audience-copy > p { color: var(--text-2); font-size: 16px; line-height: 1.65; }
.audience-copy .note { font-size: 14px; color: var(--text-2); border-left: 2px solid var(--tertiary); padding-left: 12px; }
.benefits { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.benefits li { position: relative; padding-left: 30px; font-size: 15px; line-height: 1.6; color: var(--text-2); }
.benefits li b { color: var(--text); font-weight: 700; }
.benefits li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold-soft); border: 1px solid rgba(255, 215, 109, 0.4);
}
.benefits li::after {
  content: ""; position: absolute; left: 6px; top: 8px; width: 5px; height: 8px;
  border: solid var(--secondary); border-width: 0 2px 2px 0; transform: rotate(45deg);
}

/* Mini UI illustrations inside audience panels */
.audience-media { display: grid; place-items: center; }
.mini-ui {
  width: 100%; max-width: 340px; background: var(--bg); border: 1px solid var(--border); border-radius: 20px;
  padding: 18px; display: flex; flex-direction: column; gap: 10px; font-size: 13px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}
.mini-ui-head { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.pill { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 40px; background: var(--surface-2); color: var(--alternate); }
.pill.gold { background: var(--gold); color: #1a1200; }
.pill.silver { background: var(--silver); color: #1a1a1a; }
.mini-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: var(--surface); border-radius: 12px; font-weight: 600; }
.mini-row em { margin-left: auto; font-style: normal; color: var(--text-2); font-weight: 600; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.blue { background: var(--link); } .dot.gold { background: var(--secondary); } .dot.green { background: var(--success); }
.mini-bar { height: 6px; border-radius: 6px; background: var(--surface-2); overflow: hidden; }
.mini-bar i { display: block; height: 100%; background: var(--gold); border-radius: 6px; }
.mini-ui small { color: var(--text-2); font-size: 12px; font-weight: 600; }
.mini-player { display: flex; align-items: center; gap: 10px; }
.mini-player b { display: block; font-size: 14px; }
.mini-player small { display: block; }
.mini-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { font-size: 12px; font-weight: 600; padding: 5px 10px; border-radius: 40px; background: var(--surface); border: 1px solid var(--border); color: var(--text-2); }
.chip.on { background: var(--gold-soft); border-color: rgba(255, 215, 109, 0.4); color: var(--secondary); }
.mini-text { background: var(--surface); border-radius: 12px; padding: 12px; color: var(--alternate); line-height: 1.5; }
.mini-btn { height: 38px; border-radius: 40px; display: grid; place-items: center; background: var(--gold); color: #1a1200; font-weight: 700; font-size: 13px; }
.mini-stat { display: grid; grid-template-columns: 80px 1fr; align-items: center; gap: 10px; font-weight: 600; }

/* CTA */
.cta {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(180deg, #0A2247 0%, #061932 100%);
  border: 1px solid rgba(255, 215, 109, 0.3); border-radius: 32px;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 64px);
}
.cta::before {
  content: ""; position: absolute; inset: -40% -20% auto; height: 80%; pointer-events: none;
  background: radial-gradient(50% 60% at 50% 50%, rgba(255, 215, 109, 0.16), transparent 70%);
}
.cta > * { position: relative; }
.cta .headline { max-width: 20ch; margin-inline: auto; }
.cta .body-lg { max-width: 52ch; margin: 16px auto 32px; }
.form { max-width: 720px; margin-inline: auto; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; gap: 12px; max-width: 520px; width: 100%; margin-inline: auto; }
.form input[type="email"] {
  flex: 1; min-width: 0; height: 56px; padding: 0 22px; border-radius: var(--r-pill);
  background: var(--bg); border: 1px solid var(--border); color: var(--text); font: inherit; font-size: 16px;
  outline: none; transition: border-color .15s;
}
.form input::placeholder { color: var(--text-2); }
.form input:focus { border-color: var(--secondary); }

/* Role selector */
.roles { border: 0; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.roles-legend { grid-column: 1 / -1; font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--alternate); margin-bottom: 4px; }
.role { position: relative; cursor: pointer; }
.role input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.role-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
  padding: 22px 16px 20px; border-radius: var(--r-card);
  background: var(--bg); border: 1.5px solid var(--border);
  transition: border-color .15s ease, background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.role-icon {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: var(--surface-2); color: var(--alternate); border: 1px solid var(--border);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.role-icon svg { width: 22px; height: 22px; }
.role-text { display: flex; flex-direction: column; gap: 4px; }
.role-name { font-size: 17px; font-weight: 700; }
.role-desc { font-size: 13px; color: var(--text-2); font-weight: 500; line-height: 1.4; }
.role:hover .role-card { border-color: rgba(255, 215, 109, 0.45); transform: translateY(-2px); }
.role input:focus-visible + .role-card { outline: 2px solid var(--secondary); outline-offset: 2px; }
.role input:checked + .role-card {
  border-color: var(--secondary); background: linear-gradient(180deg, rgba(255, 215, 109, 0.12), rgba(255, 215, 109, 0.03));
  box-shadow: 0 0 0 1px var(--secondary), 0 12px 30px rgba(255, 215, 109, 0.15);
}
.role input:checked + .role-card .role-icon { background: var(--gold); color: #1a1200; border-color: transparent; }
.roles.invalid .role-card { border-color: rgba(231, 43, 64, 0.6); }
.role-error { display: none; color: var(--error); font-size: 14px; font-weight: 600; margin-top: -8px; }
.form-note { margin-top: 14px; font-size: 13px; color: var(--text-2); }
.form-success { display: none; margin-top: 16px; color: var(--success); font-weight: 700; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 40px 0; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; font-size: 14px; color: var(--text-2); }
.footer-links { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.footer-links a:hover { color: var(--text); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .tier-row { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .tier .medal { width: 60px; height: 60px; }
}
@media (max-width: 900px) {
  .section-head.wide .headline { white-space: normal; }
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; left: 0; right: 0; top: 76px;
    background: var(--bg); border-bottom: 1px solid var(--border); padding: 12px var(--gutter) 20px;
  }
  .nav-links.open a { display: block; padding: 12px 0; font-size: 17px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .hero-visual { margin-top: 16px; }
  .phone { width: 280px; transform: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .audience-panel { grid-template-columns: 1fr; }
  .audience-panel.reverse .audience-media { order: 0; }
  .step::after { display: none; }
}
@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
  .brand { font-size: 18px; gap: 10px; }
  .brand svg { width: 32px; height: 22.3px; }
  .nav-cta .btn-primary { padding: 0 16px; font-size: 14px; height: 40px; }
  .tier-row { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
  .form-row { flex-direction: column; }
  .roles { grid-template-columns: 1fr; }
  .role-card { flex-direction: row; text-align: left; align-items: center; padding: 14px 16px; gap: 14px; }
  .role-text { gap: 2px; }
  .hero-actions .btn { width: 100%; }
  .phone { width: 250px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card, .btn { transition: none; }
}
