:root {
  --navy-950: #020916;
  --navy-900: #07162f;
  --navy-800: #102957;
  --green-800: #07593d;
  --green-700: #0b7650;
  --green-600: #19a865;
  --green-100: #d8f5e6;
  --gold-600: #d95d00;
  --gold-500: #ff7a18;
  --gold-300: #ffb969;
  --cyan-500: #35d98b;
  --violet-600: #6837e8;
  --lime-500: #72c93d;
  --cream: #e8f4ee;
  --cream-2: #f7fbf9;
  --white: #ffffff;
  --ink: #132037;
  --muted: #52657e;
  --line: #d6e2f2;
  --amber: #bb6509;
  --red: #a53d34;
  --rare: #4caecb;
  --epic: #9b70dd;
  --legendary: #efa92f;
  --crown: #f7d774;
  --sonar-field: #021c15;
  --sonar-glass: rgba(2, 26, 19, 0.58);
  --sonar-line: rgba(126, 255, 177, 0.24);
  --sonar-text: #effff6;
  --sonar-muted: #afd0bd;
  --locator-red: #ff4d2f;
  --shadow: 0 14px 40px rgba(7, 22, 47, 0.13);
  --shadow-soft: 0 6px 18px rgba(7, 22, 47, 0.09);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --tap: 48px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html {
  min-height: 100%;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #021c15;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button { color: inherit; }

a { color: var(--green-700); }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.skip-link:focus { top: 12px; }

.network-status {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 80;
  transform: translateX(-50%) translateY(-110%);
  padding: 8px 14px;
  border-radius: 0 0 12px 12px;
  background: var(--navy-900);
  color: white;
  font-size: 0.78rem;
  font-weight: 750;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease;
}

.network-status.is-visible { transform: translateX(-50%) translateY(0); }
.network-status.is-offline { background: var(--amber); }

.auth-recovery {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(420px, 1.2fr);
  min-height: 100vh;
  background: var(--cream-2);
}

.auth-recovery-art {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 360px;
  background:
    linear-gradient(rgba(45,124,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,124,255,.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, #123b80 0%, #07162f 46%, #020916 100%);
  background-size: 34px 34px, 34px 34px, auto;
}

.auth-recovery-art span { position: absolute; width: 62%; aspect-ratio: 1; border: 1px solid rgba(115,157,255,.3); border-radius: 50%; box-shadow: 0 0 80px rgba(45,124,255,.25); }
.auth-recovery-art img { position: relative; z-index: 1; width: 150px; height: 168px; filter: drop-shadow(0 16px 36px rgba(0,0,0,.36)); }
.auth-recovery-panel { display: grid; align-content: center; width: min(100%, 700px); padding: 44px clamp(24px, 7vw, 90px); }
.auth-recovery-logo { display: none; object-fit: contain; }
.auth-recovery h1 { max-width: 560px; margin: 9px 0 14px; color: var(--navy-900); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.5rem, 5.4vw, 4.8rem); line-height: .98; }
.auth-recovery-copy { max-width: 580px; margin: 0 0 24px; color: var(--muted); line-height: 1.55; }
.auth-recovery-form { display: grid; gap: 16px; max-width: 520px; }
.auth-recovery-form .field small { color: var(--muted); font-size: .72rem; line-height: 1.45; }
.auth-recovery-success, .auth-recovery-expired { max-width: 540px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow-soft); }
.auth-recovery-success strong, .auth-recovery-expired strong { display: block; color: var(--navy-900); font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; }
.auth-recovery-success p, .auth-recovery-expired p { color: var(--muted); line-height: 1.5; }

.action-banner {
  position: fixed;
  z-index: 70;
  left: 50%;
  bottom: calc(86px + var(--safe-bottom));
  width: min(92%, 560px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: var(--navy-900);
  color: white;
  box-shadow: 0 18px 44px rgba(4,19,31,.28);
  font-size: .88rem;
}

.action-banner span { flex: 1; }

.app-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  padding-bottom: calc(132px + var(--safe-bottom));
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(31,185,105,.25), transparent 28rem),
    radial-gradient(circle at 84% 68%, rgba(74,255,151,.12), transparent 34rem),
    linear-gradient(145deg,#011510 0%,#03281d 48%,#06412a 100%);
}

.app-shell::before {
  content: "";
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    url("./icons/align-compass.svg") center 46% / min(78vw,820px) auto no-repeat,
    repeating-radial-gradient(circle at 28% 50%,transparent 0 8vw,rgba(83,255,151,.08) 8.1vw 8.2vw),
    repeating-radial-gradient(circle at 72% 50%,transparent 0 8vw,rgba(83,255,151,.06) 8.1vw 8.2vw);
  opacity: .16;
  filter: saturate(1.2) drop-shadow(0 0 50px rgba(60,255,145,.22));
}

.app-shell::after {
  content: "";
  position: fixed;
  z-index: 0;
  left: -12vw;
  top: 8vh;
  width: 124vw;
  height: 84vh;
  pointer-events: none;
  opacity: .44;
  background:
    radial-gradient(circle at 29% 50%,transparent 0 18%,rgba(91,255,157,.42) 18.2% 18.45%,transparent 18.7%),
    radial-gradient(circle at 71% 50%,transparent 0 18%,rgba(91,255,157,.34) 18.2% 18.45%,transparent 18.7%),
    conic-gradient(from 220deg at 29% 50%,transparent 0 82%,rgba(95,255,158,.58) 89%,transparent 96%),
    conic-gradient(from 40deg at 71% 50%,transparent 0 82%,rgba(95,255,158,.5) 89%,transparent 96%);
  filter: blur(.2px) drop-shadow(0 0 14px rgba(81,255,149,.4));
  animation: alignInfinitySearch 12s linear infinite;
}

@keyframes alignInfinitySearch {
  0% { transform: translateX(-2%) rotate(0deg) scale(1); }
  50% { transform: translateX(2%) rotate(180deg) scale(1.035); }
  100% { transform: translateX(-2%) rotate(360deg) scale(1); }
}

.app-shell > * { position: relative; z-index: 1; }

.topbar {
  position: fixed;
  z-index: 70;
  top: 14px;
  right: max(16px, env(safe-area-inset-right));
  display: flex;
  align-items: center;
  background: transparent;
  pointer-events: none;
}

html[data-release-mode="test"] .topbar { top: 49px; }

.foundation-menu-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 6px 8px 6px 13px;
  border: 1px solid rgba(111,255,157,.46);
  border-radius: 16px;
  background: rgba(2,25,15,.86);
  color: #dfffea;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 10px 26px rgba(2,9,22,.28), inset 0 1px rgba(255,255,255,.10);
  font-size: .72rem;
  font-weight: 650;
  text-align: left;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.foundation-menu-button:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(2,9,22,.34),0 0 0 4px rgba(111,255,157,.10); }
.foundation-menu-copy { display: grid; line-height: 1.05; }
.foundation-menu-copy strong { font-size: .72rem; font-weight: 650; letter-spacing: .03em; }
.hamburger-icon { position: relative; display: grid; place-items: center; gap: 4px; width: 35px; height: 35px; border-radius: 11px; background: rgba(0,0,0,.24); }
.hamburger-icon::after { content: ""; position: absolute; right: 3px; top: 3px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 9px var(--gold-500); }
.hamburger-icon i { display: block; width: 20px; height: 2px; border-radius: 9px; background: currentColor; }

.icon-button {
  display: inline-grid;
  place-items: center;
  width: var(--tap);
  height: var(--tap);
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 800;
}

.icon-button:hover { background: rgba(13,42,64,.07); }

.role-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid rgba(13,42,64,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  color: var(--navy-800);
  font-size: .72rem;
  font-weight: 800;
  text-transform: capitalize;
}

.sample-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  min-height: 35px;
  padding: 7px 16px;
  background: #fff6df;
  color: #644511;
  font-size: .74rem;
  text-align: center;
}

.sample-banner span { color: #806425; }
.sample-banner button { min-height: 44px; padding: 8px 14px; border: 2px solid #c99217; border-radius: 999px; background: white; color: #644511; cursor: pointer; font-size: .68rem; font-weight: 850; }

#main-content {
  position: relative;
  isolation: isolate;
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 18px 16px calc(132px + var(--safe-bottom));
}

/* The red locator is a shared environmental layer, so it remains present in
   Player, Coach, and Administrator workspaces without belonging to any card. */
#main-content::before {
  content: "";
  position: fixed;
  z-index: 0;
  left: 50%;
  top: 48%;
  width: min(48vmin, 440px);
  height: 4px;
  border-radius: 999px;
  pointer-events: none;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(255,77,47,.98) 0, rgba(255,94,47,.72) 20%, rgba(255,122,24,.24) 67%, transparent 100%);
  box-shadow: 0 0 8px rgba(255,77,47,.9), 0 0 26px rgba(255,77,47,.5);
  filter: saturate(1.2);
  mix-blend-mode: screen;
  animation: alignLocatorSweep 6.4s linear infinite;
}

#main-content::after {
  content: "";
  position: fixed;
  z-index: 0;
  left: 50%;
  top: 48%;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255,160,117,.95);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  background: var(--locator-red);
  box-shadow: 0 0 0 7px rgba(255,77,47,.12), 0 0 24px rgba(255,77,47,.8);
}

@keyframes alignLocatorSweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

#main-content.home-launch-view { width: 100%; max-width: none; padding: 0 0 calc(148px + var(--safe-bottom)); }

#main-content:focus-visible { outline: none; }
.hub-container { position: relative; z-index: 1; width: 100%; min-width: 0; }

.page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 18px;
}

.page-head h1, .page-head h2, .hero h2, .welcome h1, .sheet h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -.025em;
}

.page-head h1 { max-width: 920px; margin: 2px 0 0; font-size: clamp(1.9rem, 4.8vw, 2.9rem); line-height: 1.02; color: var(--navy-900); }
.page-head p { margin: 7px 0 0; color: var(--muted); }
.app-shell .page-head h1 { color: #effff6; text-shadow: 0 3px 18px rgba(0,0,0,.35); }
.app-shell .page-head p { color: #b9dccb; }
.app-shell .page-head .eyebrow { color: #78f6aa; }

.foundation-landing { --foundation-accent: var(--green-600); display: grid; gap: 16px; }
.foundation-assessment { --foundation-accent: #2d7cff; }
.foundation-listening { --foundation-accent: #8a5ee8; }
.foundation-instruction { --foundation-accent: #00a9e8; }
.foundation-growth { --foundation-accent: #47a83d; }
.foundation-navigation { --foundation-accent: #ff7a18; }

.foundation-hero {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0,1fr) 150px;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  min-height: 300px;
  padding: clamp(24px,4vw,44px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 10%, color-mix(in srgb, var(--foundation-accent) 24%, transparent), transparent 35%),
    linear-gradient(135deg,#06152e,#0d2f68 72%,#102957);
  color: white;
  box-shadow: 0 20px 48px rgba(7,22,47,.20);
}

.foundation-hero::after { content: ""; position: absolute; right: -90px; bottom: -120px; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.035),0 0 0 92px rgba(255,255,255,.025); }
.foundation-hero-mark { position: relative; display: grid; place-items: center; width: 144px; height: 164px; }
.foundation-hero-mark img { width: 138px; height: 155px; filter: drop-shadow(0 12px 24px rgba(0,0,0,.32)); }
.foundation-hero-mark span { position: absolute; display: grid; place-items: center; width: 48px; height: 48px; border: 2px solid rgba(255,255,255,.86); border-radius: 50%; background: var(--foundation-accent); color: white; font-family: Georgia,serif; font-size: 1.45rem; font-weight: 900; box-shadow: 0 8px 20px rgba(0,0,0,.24); }
.foundation-hero-copy { position: relative; z-index: 1; }
.foundation-hero-copy .eyebrow { color: #ffb969; }
.foundation-hero-copy h1 { margin: 5px 0 0; font-family: Georgia,serif; font-size: clamp(3rem,7vw,5.7rem); font-weight: 600; letter-spacing: -.045em; line-height: .9; }
.foundation-hero-copy h2 { margin: 14px 0 0; color: white; font-size: clamp(1.1rem,2.2vw,1.55rem); }
.foundation-hero-copy > p:last-child { max-width: 680px; margin: 10px 0 0; color: #dce7fb; line-height: 1.55; }
.foundation-live-status { position: relative; z-index: 1; display: grid; justify-items: center; align-content: center; width: 140px; aspect-ratio: 1; padding: 16px; border: 1px solid color-mix(in srgb,var(--foundation-accent) 80%,white); border-radius: 50%; background: rgba(2,9,22,.42); text-align: center; box-shadow: inset 0 0 32px color-mix(in srgb,var(--foundation-accent) 18%,transparent); }
.foundation-live-status strong { font-family: Georgia,serif; font-size: 1.55rem; }
.foundation-live-status span { margin-top: 5px; color: #dce7fb; font-size: .58rem; font-weight: 900; line-height: 1.3; text-transform: uppercase; }

.foundation-destinations { padding: clamp(20px,3vw,30px); border: 1px solid rgba(13,42,64,.10); border-radius: 26px; background: rgba(249,251,255,.90); box-shadow: var(--shadow-soft); }
.foundation-destinations > div:last-child { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin-top: 18px; }
.foundation-destinations > div:last-child > button,.foundation-destinations > div:last-child > a { display: grid; grid-template-columns: 50px minmax(0,1fr) 18px; align-items: center; gap: 12px; min-height: 88px; padding: 14px; border: 1px solid #cbd9ec; border-radius: 18px; background: white; color: var(--navy-900); cursor: pointer; text-align: left; text-decoration: none; transition: transform 150ms ease,border-color 150ms ease,box-shadow 150ms ease; }
.foundation-destinations > div:last-child > button:hover,.foundation-destinations > div:last-child > a:hover { border-color: var(--foundation-accent); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.foundation-destinations > div:last-child > * > span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; background: color-mix(in srgb,var(--foundation-accent) 15%,white); color: var(--foundation-accent); font-weight: 950; }
.foundation-destinations strong,.foundation-destinations small { display: block; }
.foundation-destinations small { margin-top: 5px; color: var(--muted); line-height: 1.4; }
.foundation-destinations b { color: var(--muted); font-size: 1.4rem; }

.foundation-connection { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 20px; padding: 22px 24px; border: 1px solid rgba(255,122,24,.38); border-radius: 24px; background: linear-gradient(135deg,#fff9ec,#edf4ff); }
.foundation-connection > div { display: flex; align-items: center; gap: 8px; }
.foundation-connection > div span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--navy-900); color: white; font-family: Georgia,serif; font-weight: 900; }
.foundation-connection > div span:last-child { background: var(--gold-500); }
.foundation-connection > div i { color: var(--gold-600); font-style: normal; }
.foundation-connection h2 { margin: 4px 0 0; color: var(--navy-900); font-family: Georgia,serif; font-size: 1.25rem; }
.foundation-connection section > p:last-child { margin: 5px 0 0; color: var(--muted); font-size: .76rem; }

.eyebrow {
  margin: 0;
  color: var(--green-700);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.muted { color: var(--muted); }
.fine-print { color: var(--muted); font-size: .75rem; line-height: 1.5; }
.top-gap { margin-top: 22px; }

.grid { display: grid; gap: 14px; }
.grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; }
.section-heading h2, .section-heading h3 { margin: 3px 0 0; color: var(--navy-900); font-family: Georgia, "Times New Roman", serif; }
.section-heading h2 { font-size: 1.8rem; }
.section-heading h3 { font-size: 1.3rem; }
.section-heading > span { color: var(--muted); font-size: .74rem; font-weight: 750; }

.home-launch {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: calc(100svh - 35px);
  padding: 94px 22px calc(122px + var(--safe-bottom));
  background:
    radial-gradient(circle at 50% 42%, rgba(21, 192, 93, .26), transparent 19rem),
    radial-gradient(circle at 18% 12%, rgba(0,169,232,.18), transparent 27rem),
    linear-gradient(145deg, #010805, #041a10 49%, #07162f 100%);
  color: white;
  box-shadow: inset 0 -1px rgba(255,255,255,.08);
}

html[data-release-mode="live"] .home-launch { min-height: 100svh; }
.home-launch-grid { position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(rgba(108,255,160,.10) 1px,transparent 1px),linear-gradient(90deg,rgba(108,255,160,.10) 1px,transparent 1px); background-size: 38px 38px; mask-image: radial-gradient(circle at center,black,transparent 78%); }
.home-launch-radar { position: absolute; left: 50%; top: 47%; width: min(76vw,760px); aspect-ratio: 1; transform: translate(-50%,-50%); border: 1px solid rgba(104,255,157,.13); border-radius: 50%; box-shadow: 0 0 0 92px rgba(70,255,138,.026),0 0 0 184px rgba(70,255,138,.018),inset 0 0 110px rgba(62,255,135,.06); }
.home-launch-radar i { position: absolute; inset: 16%; border: 1px solid rgba(104,255,157,.13); border-radius: 50%; }
.home-launch-radar i:nth-child(2) { inset: 32%; }
.home-launch-radar i:nth-child(3) { inset: 48%; }
.home-launch-radar span { position: absolute; left: 50%; top: 50%; width: 46%; height: 1px; transform-origin: left center; background: linear-gradient(90deg,rgba(112,255,160,.82),transparent); filter: drop-shadow(0 0 8px #6effa3); animation: homeRadarSweep 5s linear infinite; }
@keyframes homeRadarSweep { to { transform: rotate(360deg); } }
.home-launch-inner { position: relative; z-index: 1; display: grid; justify-items: center; width: min(100%,920px); text-align: center; }
.home-launch-identity { display: grid; justify-items: center; }
.home-launch-identity img { width: clamp(190px,25vw,290px); height: auto; max-height: 330px; object-fit: contain; filter: drop-shadow(0 22px 38px rgba(0,0,0,.45)) drop-shadow(0 0 24px rgba(85,255,145,.24)); }
.home-launch-identity p { display: inline-flex; align-items: center; gap: 8px; margin: 2px 0 0; color: #aafdc6; font-size: .62rem; font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
.home-launch-identity p span { width: 8px; height: 8px; border-radius: 50%; background: #57ff91; box-shadow: 0 0 0 5px rgba(87,255,145,.14),0 0 18px #57ff91; animation: targetPulse 1.6s ease-in-out infinite; }
@keyframes targetPulse { 50% { opacity: .48; transform: scale(.72); } }
.home-launch-copy { margin-top: 16px; }
.home-launch-copy .eyebrow { color: #ffb969; }
.home-launch-copy h1 { margin: 7px 0 0; font-family: Georgia,"Times New Roman",serif; font-size: clamp(2.35rem,6vw,5rem); font-weight: 600; letter-spacing: -.045em; line-height: .95; }
.home-launch-copy > p:last-child { margin: 12px 0 0; color: #d5f5e0; font-size: clamp(.82rem,1.7vw,1.04rem); }
.home-launch-target { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 22px; width: min(100%,780px); margin-top: 26px; padding: 15px 16px 15px 19px; border: 1px solid rgba(109,255,159,.34); border-radius: 20px; background: rgba(1,13,8,.72); box-shadow: 0 16px 34px rgba(0,0,0,.25); backdrop-filter: blur(14px); text-align: left; }
.home-launch-target > div { display: grid; gap: 3px; min-width: 0; }
.home-launch-target small { color: #ffb969; font-size: .58rem; font-weight: 950; letter-spacing: .13em; }
.home-launch-target strong { overflow: hidden; color: white; font-size: clamp(.88rem,1.8vw,1.08rem); text-overflow: ellipsis; white-space: nowrap; }
.home-launch-target > div span { overflow: hidden; color: #a9c9b5; font-size: .68rem; text-overflow: ellipsis; white-space: nowrap; }
.home-launch-target .button { min-height: 50px; box-shadow: 0 8px 20px rgba(255,122,24,.22); }
.home-launch-scroll { display: inline-flex; align-items: center; gap: 7px; min-height: 44px; margin-top: 10px; color: #c6e9d1; font-size: .68rem; font-weight: 800; text-decoration: none; }
.home-launch-scroll:hover { color: white; }
.home-learning { width: min(calc(100% - 32px),1160px); margin: 28px auto 0; }

.gps-source-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; margin-top: 16px; }
.gps-source-grid article { display: grid; grid-template-columns: 40px minmax(0,1fr); gap: 10px; padding: 14px; border: 1px solid #c9d9ef; border-radius: 16px; background: rgba(255,255,255,.8); }
.gps-source-grid article > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--navy-900); color: #7effaa; font-weight: 950; }
.gps-source-grid strong { color: var(--navy-900); }
.gps-source-grid p { margin: 5px 0 0; color: var(--muted); font-size: .72rem; line-height: 1.48; }

@media (min-width: 681px) and (max-height: 820px) {
  .home-launch { padding-top: 62px; padding-bottom: calc(104px + var(--safe-bottom)); }
  .home-launch-identity img { width: clamp(178px,20vw,226px); max-height: 245px; }
  .home-launch-copy { margin-top: 8px; }
  .home-launch-copy h1 { font-size: clamp(2.55rem,5vw,3.65rem); }
  .home-launch-copy > p:last-child { margin-top: 8px; }
  .home-launch-target { margin-top: 14px; padding-top: 11px; padding-bottom: 11px; }
  .home-launch-scroll { display: none; }
}

.card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(13,42,64,.09);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-soft);
}

.card h2, .card h3 { margin: 0; color: var(--navy-900); }
.card h2 { font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; }
.card h3 { font-size: 1rem; }
.card p:last-child { margin-bottom: 0; }

.card-dark {
  border-color: rgba(255,255,255,.09);
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  color: white;
}

.card-dark h2, .card-dark h3, .card-dark .muted { color: white; }

.card-green {
  border-color: rgba(255,255,255,.08);
  background: linear-gradient(145deg, var(--green-800), var(--green-600));
  color: white;
}

.card-gold { background: linear-gradient(145deg, #fff8e7, #f2dfad); }

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.card-header p { margin: 5px 0 0; color: var(--muted); font-size: .82rem; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 85% 12%, rgba(231,202,131,.35), transparent 15rem),
    linear-gradient(145deg, var(--navy-900), #0b3a42 60%, var(--green-700));
  color: white;
  box-shadow: 0 18px 55px rgba(4,19,31,.22);
}

.hero::after {
  content: "";
  position: absolute;
  right: -15%;
  bottom: -75%;
  width: 65%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255,255,255,.035), 0 0 0 68px rgba(255,255,255,.025);
}

.hero > * { position: relative; z-index: 1; }
.hero .eyebrow { color: var(--gold-300); }
.hero h2 { max-width: 690px; margin: 10px 0 12px; color: white; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.25rem, 8vw, 4.3rem); font-weight: 600; letter-spacing: -.025em; line-height: .95; }
.hero p { max-width: 560px; margin: 0; color: rgba(255,255,255,.80); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-meta span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(255,255,255,.08); font-size: .76rem; font-weight: 700; }

/* ALIGN v18 connected learning experience */
.align-loop {
  position: relative;
  grid-column: 1 / -1;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 92% 5%, rgba(255,122,24,.22), transparent 22rem),
    radial-gradient(circle at 6% 100%, rgba(45,124,255,.24), transparent 25rem),
    linear-gradient(145deg, #020916, #0b2048 62%, #123b73);
  color: white;
  box-shadow: 0 22px 60px rgba(2,9,22,.25);
}

.align-loop::after {
  content: "";
  position: absolute;
  right: -76px;
  top: -92px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(255,255,255,.025), 0 0 0 64px rgba(255,255,255,.018);
  pointer-events: none;
}

.align-loop > * { position: relative; z-index: 1; }
.align-loop .eyebrow { color: var(--gold-300); }
.align-loop-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 22px; }
.align-loop-top > div:first-child { max-width: 720px; }
.align-loop-top h2 { margin: 7px 0 10px; color: white; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 6vw, 3.65rem); font-weight: 600; letter-spacing: -.035em; line-height: .95; }
.align-loop-top p { margin: 0; color: #c8d8f4; line-height: 1.55; }
.loop-score { display: grid; place-items: center; flex: 0 0 92px; width: 92px; aspect-ratio: 1; border: 1px solid rgba(255,185,105,.5); border-radius: 50%; background: radial-gradient(circle, rgba(255,122,24,.18), rgba(2,9,22,.36)); box-shadow: inset 0 0 22px rgba(255,122,24,.16), 0 0 28px rgba(255,122,24,.12); text-align: center; }
.loop-score strong { display: block; color: white; font-size: 1.55rem; line-height: 1; }
.loop-score small { color: #ffbf7a; font-size: .58rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }

.align-stage-rail { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; margin-top: 24px; }
.align-stage { display: flex; align-items: center; gap: 9px; min-width: 0; padding: 11px; border: 1px solid rgba(255,255,255,.10); border-radius: 15px; background: rgba(255,255,255,.055); }
.align-stage > span { display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.22); border-radius: 11px; color: #aebfda; font-weight: 900; }
.align-stage div { min-width: 0; }
.align-stage strong, .align-stage small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.align-stage strong { color: #cbd8eb; font-size: .75rem; }
.align-stage small { margin-top: 3px; color: #899cb9; font-size: .61rem; }
.align-stage.is-done { background: rgba(45,124,255,.15); border-color: rgba(95,155,255,.32); }
.align-stage.is-done > span { border-color: #4c93ff; background: #2d7cff; color: white; }
.align-stage.is-active { border-color: rgba(255,185,105,.62); background: rgba(255,122,24,.12); box-shadow: inset 0 0 20px rgba(255,122,24,.07); }
.align-stage.is-active > span { border-color: var(--gold-300); color: var(--gold-300); box-shadow: 0 0 16px rgba(255,122,24,.2); }
.align-stage.is-active strong { color: white; }

.loop-next { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 18px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(2,9,22,.38); }
.loop-next > div { min-width: 0; }
.loop-next small { display: block; color: var(--gold-300); font-size: .62rem; font-weight: 900; letter-spacing: .11em; }
.loop-next strong { display: block; margin-top: 4px; color: white; font-size: 1.03rem; }
.loop-next p { margin: 4px 0 0; color: #aebfda; font-size: .76rem; line-height: 1.4; }
.loop-next .button { flex: 0 0 auto; }
.loop-promise { margin: 13px 2px 0; color: #899cb9; font-size: .69rem; font-weight: 750; letter-spacing: .05em; }

@media (min-width: 681px) {
  .align-loop-hero { padding: 18px 20px; }
  .align-loop-hero .align-loop-top h2 { margin: 5px 0 7px; font-size: clamp(2rem,4vw,3rem); }
  .align-loop-hero .align-loop-top p { font-size: .82rem; line-height: 1.4; }
  .align-loop-hero .loop-score { flex-basis: 78px; width: 78px; }
  .align-loop-hero .loop-score strong { font-size: 1.3rem; }
  .align-loop-hero .align-stage-rail { margin-top: 13px; }
  .align-loop-hero .align-stage { padding: 7px 9px; }
  .align-loop-hero .align-stage > span { flex-basis: 30px; width: 30px; height: 30px; }
  .align-loop-hero .loop-next { margin-top: 11px; padding: 10px 14px; }
  .align-loop-hero .loop-promise { display: none; }
}

.coach-connection-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 16px 0; }
.coach-connection-meta span { padding: 10px; border-radius: 12px; background: var(--cream); color: var(--muted); font-size: .7rem; }
.coach-connection-meta strong { display: block; margin-top: 3px; color: var(--navy-900); font-size: .79rem; }
.day-at-a-glance > div { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin: 13px 0 16px; }
.day-at-a-glance span { padding: 11px 8px; border: 1px solid var(--line); border-radius: 13px; text-align: center; }
.day-at-a-glance small, .day-at-a-glance strong { display: block; }
.day-at-a-glance small { color: var(--muted); font-size: .62rem; }
.day-at-a-glance strong { margin-top: 3px; color: var(--navy-900); font-size: .88rem; }

/* ALIGN v24: one clear daily loop, with depth available on demand */
.focus-dashboard { align-items: stretch; }
.today-actions, .player-map-snapshot { min-height: 100%; }
.today-actions > p:not(.eyebrow), .player-map-snapshot .card-header p { color: var(--muted); line-height: 1.5; }
.today-action-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 9px; margin-top: 18px; }
.today-action-grid button { display: grid; justify-items: start; gap: 4px; min-height: 126px; padding: 14px; border: 1px solid #c8d8f2; border-radius: 17px; background: linear-gradient(145deg,#f7faff,#eaf1ff); color: var(--navy-900); cursor: pointer; text-align: left; transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease; }
.today-action-grid button:hover { transform: translateY(-2px); border-color: var(--gold-500); box-shadow: var(--shadow-soft); }
.today-action-grid button:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; }
.today-action-grid button > span { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 6px; border-radius: 12px; background: var(--navy-900); color: var(--gold-300); font-weight: 950; }
.today-action-grid strong { font-size: .9rem; }
.today-action-grid small { color: var(--muted); font-size: .68rem; line-height: 1.35; }

.player-map-snapshot { overflow: hidden; border-color: rgba(45,124,255,.34); background: linear-gradient(145deg,#07162f,#123b73); color: white; }
.player-map-snapshot h2, .player-map-snapshot .eyebrow { color: white; }
.player-map-snapshot .card-header p { color: #c8d8f4; }
.snapshot-evidence { display: grid; place-items: center; flex: 0 0 72px; width: 72px; height: 72px; border: 1px solid rgba(255,185,105,.5); border-radius: 50%; background: rgba(2,9,22,.38); text-align: center; }
.snapshot-evidence strong, .snapshot-evidence small { display: block; }
.snapshot-evidence strong { color: white; font-size: 1.4rem; line-height: 1; }
.snapshot-evidence small { margin-top: 3px; color: var(--gold-300); font-size: .55rem; font-weight: 850; text-transform: uppercase; }
.mini-map-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 8px; margin: 18px 0 14px; }
.mini-map-grid > div { display: grid; gap: 4px; padding: 10px 8px; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; background: rgba(2,9,22,.32); }
.mini-map-grid small { overflow: hidden; color: #aebfda; font-size: .57rem; font-weight: 850; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.mini-map-grid strong { color: white; font-size: 1.1rem; }
.snapshot-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.snapshot-footer > span { color: #aebfda; font-size: .65rem; line-height: 1.4; }

.player-map-next { display: flex; align-items: center; justify-content: space-between; gap: 22px; border-color: #ffc98d; background: linear-gradient(135deg,#fff7ed,#edf4ff); }
.player-map-next h2 { margin: 5px 0 6px; }
.player-map-next p { margin: 0; color: var(--muted); }
.player-map-next .button { flex: 0 0 auto; }
.progress-disclosure-list { display: grid; gap: 10px; }
.progress-disclosure { padding: 0; overflow: hidden; }
.progress-disclosure > summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 88px; padding: 17px 20px; cursor: pointer; list-style: none; }
.progress-disclosure > summary::-webkit-details-marker { display: none; }
.progress-disclosure > summary > span { display: grid; gap: 3px; min-width: 0; }
.progress-disclosure > summary small { color: var(--green-800); font-size: .61rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.progress-disclosure > summary strong { color: var(--navy-900); font-size: 1.02rem; }
.progress-disclosure > summary em { color: var(--muted); font-size: .73rem; font-style: normal; line-height: 1.4; }
.progress-disclosure > summary > b { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; color: var(--muted); font-size: .66rem; }
.progress-disclosure > summary i { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--navy-900); color: var(--gold-300); font-size: 1.2rem; font-style: normal; transition: transform 150ms ease; }
.progress-disclosure[open] > summary { border-bottom: 1px solid var(--line); background: #f7faff; }
.progress-disclosure[open] > summary i { transform: rotate(45deg); }
.progress-disclosure-body { padding: 16px; background: var(--cream); }
.progress-disclosure-body > .card { box-shadow: none; }

.practice-mode-guide { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.75); }
.practice-mode-guide h2 { margin: 4px 0 6px; color: var(--navy-900); font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; }
.practice-mode-guide p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.5; }
.practice-mode-guide .button { flex: 0 0 auto; }
.home-golf-lab { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.9fr); gap: 18px 28px; padding: clamp(22px,4vw,34px); border: 1px solid #79ccea; border-radius: var(--radius-xl); background: radial-gradient(circle at 88% 10%,rgba(255,142,40,.22),transparent 14rem),linear-gradient(145deg,#eaf9ff,#dcecff 60%,#fff8e8); box-shadow: 0 18px 45px rgba(13,75,120,.10); }
.home-golf-lab h2 { margin: 4px 0 8px; font-size: clamp(1.8rem,4vw,3rem); }
.home-golf-lab > div > p:last-child { max-width: 650px; color: var(--muted); }
.home-lab-rules { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; align-content: center; }
.home-lab-rules span { display: flex; align-items: center; gap: 9px; min-height: 52px; padding: 9px 11px; border: 1px solid rgba(12,83,130,.16); border-radius: 14px; background: rgba(255,255,255,.76); color: #123a5b; font-size: .67rem; font-weight: 800; }
.home-lab-rules b { display: grid; place-items: center; flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%; background: #0d67ad; color: white; }
.home-golf-lab aside { grid-column: 1 / -1; padding: 14px 16px; border: 1px solid #ef9b72; border-radius: 16px; background: #fff1e9; }
.home-golf-lab aside strong { color: #8b2d11; }
.home-golf-lab aside p { margin: 4px 0 0; color: #71331f; font-size: .72rem; line-height: 1.5; }

.home-game-diagram { margin: 14px 0 0; padding: 12px; border: 1px solid #c7dceb; border-radius: 18px; background: #f8fbff; }
.home-game-diagram > div { position: relative; overflow: hidden; height: 190px; border-radius: 13px; background: repeating-linear-gradient(90deg,#d5e7d0 0 20px,#c8ddc3 20px 40px); box-shadow: inset 0 0 0 1px rgba(8,55,86,.12); }
.home-game-diagram figcaption { margin-top: 8px; color: #395b74; font-size: .65rem; font-weight: 800; text-align: center; }
.home-game-diagram.is-compact { margin-top: 0; padding: 8px; }
.home-game-diagram.is-compact > div { height: 108px; }
.home-game-diagram.is-compact figcaption { font-size: .58rem; }
.diagram-ball { position: absolute; z-index: 4; left: 12%; top: 50%; width: 18px; height: 18px; border: 2px solid #9db0bf; border-radius: 50%; background: radial-gradient(circle at 35% 30%,#fff 0 38%,#dbe4e9 60%,#9aabb5); box-shadow: 0 3px 7px rgba(0,0,0,.18); transform: translateY(-50%); }
.diagram-path { position: absolute; z-index: 2; left: 20%; right: 24%; top: 50%; border-top: 3px dashed rgba(8,72,116,.48); }
.diagram-path::after { content: ""; position: absolute; right: -2px; top: -7px; border-width: 5px 0 5px 8px; border-style: solid; border-color: transparent transparent transparent #0c689e; }
.diagram-target { position: absolute; z-index: 3; right: 10%; top: 50%; transform: translateY(-50%); }
.diagram-soft-chip .diagram-path,.diagram-flat-stick .diagram-path { top: 40%; border-top-style: solid; border-radius: 50%; transform: rotate(-8deg); }
.diagram-soft-chip .diagram-target { width: 72px; height: 48px; border: 3px solid #f18a2e; border-radius: 8px; background: repeating-linear-gradient(45deg,#fff0d8 0 8px,#ffcd8c 8px 16px); }
.diagram-flat-stick > div { background: repeating-linear-gradient(90deg,#70ad62 0 18px,#66a359 18px 36px); }
.diagram-flat-stick .diagram-target { right: 18%; width: 7px; height: 78%; border-radius: 4px; background: #ff8a25; box-shadow: 0 0 0 2px white; }
.diagram-coin .diagram-target { width: 28px; height: 28px; border: 3px solid #a87518; border-radius: 50%; background: radial-gradient(circle,#ffe189,#c99026); }
.diagram-side-cup .diagram-target { right: 8%; width: 78px; height: 46px; border: 5px solid #e55345; border-left-width: 13px; border-radius: 11px 28px 28px 11px; background: repeating-linear-gradient(90deg,#fff 0 10px,#e55345 10px 20px); transform: translateY(-50%) rotate(90deg); }
.diagram-side-cup .diagram-obstacle { position: absolute; right: 4%; top: 14%; width: 9px; height: 72%; border-radius: 3px; background: #8f6b48; }
.diagram-ramp .diagram-obstacle { position: absolute; z-index: 3; right: 20%; bottom: 16%; width: 34%; height: 42%; background: linear-gradient(150deg,transparent 0 48%,#b68250 49% 100%); filter: drop-shadow(0 4px 2px rgba(0,0,0,.16)); }
.diagram-ramp .diagram-path { right: 42%; top: 61%; transform: rotate(-9deg); }
.diagram-ramp .diagram-target { right: 10%; top: 32%; width: 54px; height: 65px; border: 5px solid #ef6c50; border-radius: 7px 7px 18px 18px; background: repeating-linear-gradient(90deg,#fff 0 8px,#ef6c50 8px 16px); }
.diagram-surface > div { background: linear-gradient(90deg,#c2d9b9 0 50%,#dbe7ee 50%); }
.diagram-surface .diagram-surface-one,.diagram-surface .diagram-surface-two { position: absolute; inset: 0 50% 0 0; background: repeating-linear-gradient(90deg,rgba(27,97,43,.08) 0 12px,transparent 12px 24px); }
.diagram-surface .diagram-surface-two { inset: 0 0 0 50%; background: repeating-linear-gradient(0deg,transparent 0 28px,rgba(20,64,89,.12) 28px 30px),repeating-linear-gradient(90deg,transparent 0 52px,rgba(20,64,89,.12) 52px 54px); }
.diagram-surface .diagram-target { width: 28px; height: 28px; border: 3px solid #a87518; border-radius: 50%; background: #ffd56a; }

.loop-dialog-intro, .drill-loop-context, .active-transfer { display: flex; align-items: center; gap: 13px; padding: 15px; border: 1px solid #cbdaf2; border-radius: 17px; background: linear-gradient(145deg, #edf4ff, #fff7ed); }
.loop-dialog-intro > span, .drill-loop-context > span, .active-transfer > span { display: grid; place-items: center; flex: 0 0 44px; width: 44px; height: 44px; border-radius: 14px; background: var(--navy-900); color: var(--gold-300); font-size: 1.1rem; font-weight: 900; box-shadow: 0 7px 18px rgba(7,22,47,.18); }
.loop-dialog-intro strong, .drill-loop-context strong, .active-transfer strong { display: block; color: var(--navy-900); }
.loop-dialog-intro p, .drill-loop-context p, .active-transfer p { margin: 4px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.drill-loop-context small, .active-transfer small { display: block; margin-bottom: 3px; color: var(--green-700); font-size: .6rem; font-weight: 900; letter-spacing: .1em; }
.active-transfer { margin: 18px 0 4px; border-color: #ffc98d; background: linear-gradient(145deg, #fff7ed, #edf4ff); }
.active-transfer > span { background: var(--gold-500); color: var(--navy-950); }

.choice-cards { display: grid; gap: 9px; padding: 0; border: 0; }
.choice-cards legend { margin-bottom: 9px; color: var(--navy-900); font-size: .79rem; font-weight: 850; }
.choice-cards label { position: relative; cursor: pointer; }
.choice-cards input { position: absolute; opacity: 0; pointer-events: none; }
.choice-cards label > span { display: block; min-height: 66px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 15px; background: white; transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease; }
.choice-cards label:hover > span { border-color: var(--green-600); }
.choice-cards input:focus-visible + span { outline: 3px solid var(--gold-500); outline-offset: 2px; }
.choice-cards input:checked + span { border-color: var(--green-600); background: var(--green-100); box-shadow: 0 0 0 3px rgba(45,124,255,.11); }
.choice-cards strong, .choice-cards small { display: block; }
.choice-cards strong { color: var(--navy-900); }
.choice-cards small { margin-top: 3px; color: var(--muted); font-size: .72rem; }

.loop-handoff { text-align: center; }
.handoff-mark { display: grid; place-items: center; width: 92px; height: 58px; margin: 0 auto 18px; border: 1px solid #ffc98d; border-radius: 20px; background: linear-gradient(145deg, var(--navy-900), var(--navy-800)); color: var(--gold-300); font-size: 1.1rem; font-weight: 900; box-shadow: var(--shadow); }
.loop-handoff h3 { margin: 6px auto 9px; max-width: 480px; color: var(--navy-900); font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; }
.loop-handoff > p:not(.eyebrow) { max-width: 520px; margin: 0 auto 18px; color: var(--muted); line-height: 1.55; }
.handoff-rule { display: grid; grid-template-columns: 64px 1fr; gap: 10px; align-items: center; max-width: 520px; margin: 8px auto; padding: 11px 13px; border: 1px solid var(--line); border-radius: 13px; text-align: left; }
.handoff-rule span { color: var(--green-700); font-size: .65rem; font-weight: 900; text-transform: uppercase; }
.handoff-rule strong { color: var(--navy-900); font-size: .82rem; }

.loop-complete { position: relative; overflow: hidden; padding: 26px 18px; border-radius: var(--radius-lg); background: linear-gradient(145deg, #020916, #102957); color: white; text-align: center; }
.completion-mark { display: grid; place-items: center; width: 82px; height: 82px; margin: 0 auto 16px; border: 2px solid var(--gold-300); border-radius: 50%; background: radial-gradient(circle, rgba(255,122,24,.25), transparent 70%); color: white; font-family: Georgia, "Times New Roman", serif; font-size: 2.2rem; box-shadow: 0 0 0 8px rgba(255,122,24,.08), 0 0 36px rgba(255,122,24,.24); }
.loop-complete h3 { margin: 5px 0 9px; color: white; font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; }
.loop-complete > p:not(.eyebrow) { max-width: 500px; margin: 0 auto; color: #bed0ee; line-height: 1.55; }
.loop-complete > small { display: block; margin-top: 14px; color: var(--gold-300); font-weight: 800; }
.loop-receipt { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 7px; margin: 20px 0; color: #9fb2d1; font-size: .66rem; font-weight: 800; }
.loop-receipt i { color: var(--gold-300); font-style: normal; }
.loop-receipt strong { color: white; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--tap);
  padding: 11px 17px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-700), var(--violet-600));
  color: white;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 7px 18px rgba(20,87,217,.24);
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover { background: linear-gradient(135deg, var(--green-800), #4c27bd); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(20,87,217,.28); }
.button:active { transform: translateY(0); }
.button-gold { background: var(--gold-500); color: var(--navy-950); }
.button-gold:hover { background: var(--gold-300); }
.button-vivid { border-color: #153b82; background: linear-gradient(135deg,#2d7cff,#7040dc); color: white; box-shadow: 0 7px 18px rgba(69,50,190,.26); }
.button-vivid:hover { background: linear-gradient(135deg,#1457d9,#5630b7); }
.button-light { background: white; color: var(--navy-900); }
.button-ghost { border-color: #7084a5; background: white; color: var(--navy-800); box-shadow: 0 3px 10px rgba(7,22,47,.08); }
.button-ghost:hover { border-color: var(--green-700); background: #eef4ff; color: var(--navy-900); }
.card-dark .button-ghost, .hero .button-ghost { border-color: rgba(255,255,255,.56); background: transparent; color: white; }
.card-dark .button-ghost:hover, .hero .button-ghost:hover { border-color: var(--gold-300); background: rgba(255,255,255,.1); }
.button-small { min-height: 44px; padding: 8px 12px; font-size: .78rem; }
.button[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.quick-action {
  display: grid;
  align-content: space-between;
  min-height: 116px;
  padding: 15px;
  border: 2px solid #bfd0eb;
  border-radius: 17px;
  background: rgba(255,255,255,.8);
  color: var(--navy-900);
  cursor: pointer;
  text-align: left;
}

.quick-action:hover { border-color: var(--gold-500); background: #fff8ef; box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.quick-action span { font-size: 1.4rem; color: var(--green-700); }
.quick-action strong { font-size: .86rem; line-height: 1.15; }

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

.progress-ring {
  --value: 50;
  --ring: var(--green-600);
  display: grid;
  place-items: center;
  width: min(100%, 116px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(var(--ring) calc(var(--value) * 1%), rgba(13,42,64,.08) 0);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.75);
}

.progress-ring > span {
  display: grid;
  place-items: center;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cream-2);
  text-align: center;
}

.progress-ring strong { display: block; font-size: 1.25rem; color: var(--navy-900); }
.progress-ring small { display: block; margin-top: 1px; color: var(--muted); font-size: .68rem; font-weight: 750; text-transform: uppercase; }
.ring-love { --ring: #b36c63; }
.ring-grow { --ring: var(--green-600); }
.ring-play { --ring: var(--gold-500); }

.journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 24px 4px 8px;
}

.journey::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green-600) 0 55%, rgba(13,42,64,.12) 55%);
}

.journey-stop { position: relative; z-index: 1; display: grid; justify-items: center; gap: 8px; text-align: center; }
.journey-stop i { display: grid; place-items: center; width: 32px; height: 32px; border: 4px solid var(--cream-2); border-radius: 50%; background: #cad4d0; color: var(--navy-900); font-size: .68rem; font-style: normal; font-weight: 900; }
.journey-stop.done i { background: var(--green-600); color: white; }
.journey-stop.current i { width: 40px; height: 40px; margin-top: -4px; background: var(--gold-500); box-shadow: 0 0 0 6px rgba(199,151,55,.18); }
.journey-stop small { color: var(--muted); font-size: .64rem; font-weight: 750; }

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: .7rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-chip.amber { background: #fff0cf; color: #815209; }
.status-chip.navy { background: #e2e9ee; color: var(--navy-800); }
.status-chip.sample { background: #eee8f7; color: #634982; }

.status-dot { display: inline-block; flex: 0 0 auto; width: 9px; height: 9px; border-radius: 50%; background: var(--green-600); }
.status-amber { background: var(--amber); }
.status-red { background: var(--red); }

.list { display: grid; gap: 10px; }

.list-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.list-row:last-child { border-bottom: 0; }
.list-row > div { flex: 1; min-width: 0; }
.list-row strong, .list-row small { display: block; }
.list-row small { margin-top: 4px; color: var(--muted); line-height: 1.35; }

.avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green-100), #f1dfae);
  color: var(--navy-900);
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.player-studio {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(15,65,105,.20);
  border-radius: 30px;
  background: #f4f8ff;
  box-shadow: 0 24px 60px rgba(7,26,48,.14);
}

.player-studio-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(22px,4vw,38px);
  background: radial-gradient(circle at 85% 0%, rgba(255,135,32,.34), transparent 18rem), linear-gradient(135deg,#071d38,#0a3970 58%,#0f66ae);
  color: white;
}

.player-studio-head .eyebrow { color: #70d9ff; }
.player-studio-head h2 { margin-top: 4px; color: white; font-size: clamp(2.2rem,5vw,4rem); }
.player-studio-head p:not(.eyebrow) { max-width: 680px; margin: 7px 0 0; color: rgba(255,255,255,.72); }
.studio-points { display: grid; flex: 0 0 auto; min-width: 190px; padding: 16px 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; background: rgba(5,20,39,.48); box-shadow: inset 0 1px rgba(255,255,255,.12); }
.studio-points span { color: #ffb75f; font-size: .58rem; font-weight: 950; letter-spacing: .12em; }
.studio-points strong { color: white; font-family: Georgia,serif; font-size: 2rem; }
.studio-points small { color: rgba(255,255,255,.64); }

.player-studio-layout { display: grid; grid-template-columns: minmax(330px,.82fr) minmax(0,1.35fr); min-height: 610px; }
.studio-stage { position: relative; isolation: isolate; overflow: hidden; min-height: 610px; border-right: 1px solid rgba(255,255,255,.14); background: linear-gradient(165deg,#bfeeff,#dff7ff 42%,#72c8ec 43%,#1276b2 100%); }
.studio-stage::before { content: ""; position: absolute; z-index: -2; inset: 42% -20% -28%; border-radius: 50% 50% 0 0; background: linear-gradient(165deg,#e8fbff,#b4e4f1 50%,#6fbc98 51%,#14664a 100%); }
.studio-stage::after { content: ""; position: absolute; z-index: -1; right: 7%; bottom: 20%; width: 170px; height: 170px; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; box-shadow: 0 0 0 20px rgba(255,255,255,.05),0 0 0 52px rgba(255,255,255,.04); }
.studio-stage.art-focus-grid { background: radial-gradient(circle at 68% 22%,rgba(255,135,32,.92),transparent 8rem),linear-gradient(145deg,#061a35,#063d7a 56%,#00a7d8); }
.studio-stage.art-focus-grid::before { background: linear-gradient(165deg,rgba(255,255,255,.16),rgba(0,193,255,.12) 52%,#063763 53%,#020f25 100%); }
.studio-stage.art-founders { background: radial-gradient(circle at 50% 20%,rgba(255,186,87,.82),transparent 10rem),linear-gradient(145deg,#1b153c,#57226a 54%,#e45135); }
.studio-stage.art-founders::before { background: linear-gradient(165deg,rgba(255,238,185,.23),rgba(89,30,105,.22) 49%,#311844 50%,#120b2c 100%); }
.studio-stage-grid { position: absolute; z-index: -1; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.7) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.7) 1px,transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom,black,transparent 80%); }
.studio-stage-brand { position: absolute; top: 25px; left: 25px; z-index: 2; display: grid; }
.studio-stage-brand span { color: rgba(4,28,54,.62); font-size: .54rem; font-weight: 950; letter-spacing: .14em; }
.studio-stage-brand strong { color: #052847; font-family: Georgia,serif; font-size: 1.35rem; }

.studio-figure { --skin:#b97850; position: absolute; bottom: 78px; left: 44%; width: 180px; height: 410px; transform: translateX(-50%); filter: drop-shadow(0 22px 18px rgba(4,21,42,.24)); }
.studio-figure.tone-light { --skin:#e7b88f; }
.studio-figure.tone-warm { --skin:#b97850; }
.studio-figure.tone-deep { --skin:#7d482e; }
.studio-figure.tone-rich { --skin:#4b291e; }
.studio-head { position: absolute; z-index: 4; top: 4px; left: 59px; width: 64px; height: 76px; border-radius: 46% 46% 43% 43%; background: var(--skin); box-shadow: inset 0 -8px rgba(70,30,20,.08); }
.studio-head::before { content: ""; position: absolute; inset: -5px -2px 46px; border-radius: 52% 52% 20% 20%; background: #182132; }
.studio-head::after { content: ""; position: absolute; top: 39px; left: 15px; width: 35px; height: 4px; border-top: 2px solid rgba(31,19,17,.55); border-radius: 50%; }
.studio-head i { position: absolute; top: 31px; left: 13px; width: 8px; height: 5px; border-radius: 50%; background: #101a24; box-shadow: 30px 0 #101a24; }
.studio-neck { position: absolute; z-index: 2; top: 67px; left: 76px; width: 30px; height: 34px; border-radius: 6px; background: var(--skin); }
.studio-body { position: absolute; z-index: 3; top: 86px; left: 27px; width: 128px; height: 185px; border-radius: 34px 34px 20px 20px; background: linear-gradient(145deg,#165fb1,#0a3a79); box-shadow: inset 0 -44px rgba(3,23,50,.24); }
.studio-body::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(90deg,transparent 48%,rgba(255,255,255,.16) 49%,rgba(255,255,255,.16) 51%,transparent 52%); }
.studio-body i { position: absolute; top: 15px; left: 53px; width: 22px; height: 8px; border-radius: 0 0 10px 10px; background: #d6edff; }
.studio-body b { position: absolute; right: 14px; top: 45px; color: white; font-size: .58rem; letter-spacing: .08em; writing-mode: vertical-rl; }
.studio-arm { position: absolute; z-index: 2; top: 99px; width: 36px; height: 198px; border-radius: 22px; background: linear-gradient(to bottom,#0c4d95 0 45%,var(--skin) 46% 100%); transform-origin: top center; }
.studio-arm-left { left: 22px; transform: rotate(8deg); }
.studio-arm-right { right: 19px; transform: rotate(-9deg); }
.studio-figure::before,.studio-figure::after { content: ""; position: absolute; z-index: 1; top: 248px; width: 52px; height: 160px; border-radius: 20px 20px 9px 9px; background: linear-gradient(#172a43,#081829); box-shadow: inset 0 -24px rgba(0,0,0,.2); }
.studio-figure::before { left: 33px; transform: rotate(2deg); }
.studio-figure::after { right: 31px; transform: rotate(-2deg); }
.studio-figure.outfit-sunrise .studio-body { background: linear-gradient(145deg,#ff9b32,#f15b26); }
.studio-figure.outfit-night-drive .studio-body { background: linear-gradient(145deg,#091b39,#102959); box-shadow: inset 8px 0 #29bdf4,inset 0 -44px rgba(0,0,0,.28); }
.studio-figure.outfit-crownline .studio-body { background: linear-gradient(145deg,#fff,#dbe7f2); box-shadow: inset 0 -44px rgba(190,143,39,.26),inset 7px 0 #d5a33b; }
.studio-figure.outfit-crownline .studio-body b { color: #7b5916; }

.studio-bag { position: absolute; right: 6%; bottom: 90px; width: 92px; height: 270px; border-radius: 24px 24px 15px 15px; background: linear-gradient(90deg,#06274a,#0a5592 60%,#031a32); box-shadow: 12px 24px 24px rgba(2,20,40,.25),inset 0 0 0 2px rgba(255,255,255,.18); transform: rotate(4deg); }
.studio-bag::before { content: ""; position: absolute; left: 17px; top: -73px; width: 7px; height: 86px; border-radius: 4px; background: #d6e1e8; box-shadow: 18px -7px #c2d1dc,36px 2px #e7eef3,51px -11px #b7c8d4; }
.studio-bag::after { content: ""; position: absolute; left: -9px; top: 48px; width: 20px; height: 125px; border: 6px solid rgba(2,20,40,.78); border-right: 0; border-radius: 25px 0 0 25px; }
.studio-bag i { position: absolute; top: 15px; left: 12px; right: 12px; height: 24px; border-radius: 10px; background: rgba(255,255,255,.16); }
.studio-bag strong { display: grid; place-items: center; position: absolute; top: 69px; left: 22px; width: 48px; height: 48px; border: 2px solid rgba(255,255,255,.7); border-radius: 50%; color: white; font-family: Georgia,serif; font-size: 1.7rem; }
.studio-bag span { position: absolute; right: 8px; bottom: 28px; color: rgba(255,255,255,.75); font-size: .48rem; font-weight: 900; letter-spacing: .1em; writing-mode: vertical-rl; }
.studio-bag.bag-sunset { background: linear-gradient(90deg,#53204f,#f05b34 58%,#ffb43c); }
.studio-bag.bag-midnight { background: linear-gradient(90deg,#020d20,#101b3f 60%,#00aede); }
.studio-stage { background: #03152a; }
.studio-stage::before { z-index: 1; inset: 0; border-radius: 0; background: linear-gradient(180deg,rgba(1,12,26,.18) 0%,rgba(1,12,26,.03) 42%,rgba(1,12,26,.84) 100%); }
.studio-stage::after { z-index: 1; right: -80px; bottom: -80px; width: 260px; height: 260px; border-color: rgba(77,207,255,.24); box-shadow: 0 0 0 24px rgba(77,207,255,.04),0 0 0 60px rgba(255,134,32,.035); }
.studio-stage-image { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(1.04) contrast(1.02); }
.studio-stage-grid,.studio-figure,.studio-bag { display: none; }
.studio-stage-brand { z-index: 3; padding: 11px 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(2,17,36,.58); backdrop-filter: blur(10px); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.studio-stage-brand span { color: #77dfff; }
.studio-stage-brand strong { color: white; }
.studio-stage-brand small { margin-top: 2px; color: rgba(255,255,255,.68); font-size: .58rem; font-weight: 800; }
.studio-look-card { position: absolute; z-index: 3; left: 22px; bottom: 86px; display: flex; align-items: center; gap: 10px; min-width: 190px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; background: rgba(2,17,36,.72); color: white; backdrop-filter: blur(10px); box-shadow: 0 12px 30px rgba(0,0,0,.22); }
.studio-look-card div { display: grid; }
.studio-look-card small { color: #77dfff; font-size: .48rem; font-weight: 950; letter-spacing: .1em; }
.studio-look-card strong { margin-top: 2px; font-size: .72rem; }
.studio-look-card em { color: rgba(255,255,255,.62); font-size: .55rem; font-style: normal; text-transform: capitalize; }
.studio-look-swatch { display: block; width: 34px; height: 34px; border: 2px solid rgba(255,255,255,.72); border-radius: 50%; background: linear-gradient(145deg,#165fb1,#0a3a79); box-shadow: 0 0 0 4px rgba(255,255,255,.08); }
.studio-look-swatch.outfit-sunrise { background: linear-gradient(145deg,#ffb044,#f15b26); }
.studio-look-swatch.outfit-night-drive { background: linear-gradient(145deg,#07162f,#0f4a84 64%,#22cdf3); }
.studio-look-swatch.outfit-crownline { background: linear-gradient(145deg,#fff,#dce8f2 62%,#d5a33b); }
.studio-equipped-strip { position: absolute; z-index: 3; right: 18px; bottom: 18px; left: 18px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 5px; padding: 6px; border: 1px solid rgba(255,255,255,.38); border-radius: 16px; background: rgba(2,24,47,.76); backdrop-filter: blur(8px); }
.studio-equipped-strip span { overflow: hidden; padding: 7px 8px; color: white; font-size: .6rem; font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }
.studio-equipped-strip small { display: block; color: #72d9ff; font-size: .44rem; letter-spacing: .1em; }

.studio-shop { min-width: 0; padding: clamp(18px,3vw,28px); background: linear-gradient(145deg,#fff,#eef5ff); }
.studio-room-tabs { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 7px; }
.studio-room-tabs button { display: grid; grid-template-columns: 34px minmax(0,1fr); align-items: center; gap: 0 8px; min-height: 68px; padding: 9px 10px; border: 1px solid #c8d8e8; border-radius: 16px; background: rgba(255,255,255,.82); color: #17334f; cursor: pointer; text-align: left; }
.studio-room-tabs button > span { grid-row: 1 / 3; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; background: #e2efff; color: #0d68b7; font-weight: 950; }
.studio-room-tabs button strong,.studio-room-tabs button small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.studio-room-tabs button strong { font-size: .7rem; }
.studio-room-tabs button small { color: #627589; font-size: .52rem; }
.studio-room-tabs button[aria-pressed="true"] { border-color: #ff8620; background: linear-gradient(145deg,#0a2e59,#0d65ad); color: white; box-shadow: 0 9px 22px rgba(8,67,119,.24); }
.studio-room-tabs button[aria-pressed="true"] > span { background: #ff8620; color: #071d38; }
.studio-room-tabs button[aria-pressed="true"] small { color: rgba(255,255,255,.65); }
.studio-shop-heading { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin: 24px 0 13px; }
.studio-shop-heading h3 { font-size: 1.45rem; }
.studio-shop-heading > span { color: #60758b; font-size: .62rem; font-weight: 800; }
.studio-item-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.studio-item { display: grid; grid-template-columns: 92px minmax(0,1fr); gap: 12px; min-height: 166px; padding: 10px; border: 1px solid #ccdbea; border-radius: 18px; background: rgba(255,255,255,.88); box-shadow: 0 7px 18px rgba(9,41,74,.06); }
.studio-item.is-equipped { border-color: #ff8620; box-shadow: 0 0 0 2px rgba(255,134,32,.12),0 10px 24px rgba(9,41,74,.09); }
.studio-item.is-locked:not(.is-equipped) { background: rgba(242,246,252,.82); }
.studio-item-art { position: relative; overflow: hidden; min-height: 102px; border-radius: 13px; background: linear-gradient(145deg,#d7eaff,#82c5f2); }
.studio-item-art > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .28s ease; }
.studio-item:hover .studio-item-art > img { transform: scale(1.04); }
.studio-item-art > span { display: grid; place-items: center; position: absolute; inset: 0; color: rgba(255,255,255,.9); font-family: Georgia,serif; font-size: 2.5rem; text-shadow: 0 5px 18px rgba(0,20,40,.34); }
.studio-item-art.room-equipment { background: linear-gradient(145deg,#ffcf74,#f16b29 58%,#41224c); }
.studio-item-art.room-art { background: repeating-linear-gradient(45deg,#0a2c59 0 10px,#0e67ae 10px 20px,#ff8620 20px 30px); }
.studio-item-art.room-audio { background: radial-gradient(circle,#72e0ff 0 4%,transparent 5% 20%,rgba(114,224,255,.25) 21% 34%,transparent 35%),linear-gradient(145deg,#081a38,#42226f); }
.studio-item-art.visual-sunrise { background: linear-gradient(145deg,#ffd47e,#f15d2c); }
.studio-item-art.visual-night-drive,.studio-item-art.visual-midnight { background: linear-gradient(145deg,#020c22,#102b5e 64%,#00b9ef); }
.studio-item-art.visual-crownline,.studio-item-art.visual-founders { background: linear-gradient(145deg,#fff2bf,#d89e31 55%,#6c2d6b); }
.studio-item-copy { min-width: 0; }
.studio-item-copy small,.studio-item-copy strong,.studio-item-copy em { display: block; }
.studio-item-copy small { color: #0f6cb5; font-size: .54rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.studio-item-copy strong { margin-top: 3px; color: #071d38; font-size: .84rem; }
.studio-item-copy p { margin: 5px 0; color: #5d7083; font-size: .61rem; line-height: 1.35; }
.studio-item-copy em { color: #8a5a19; font-size: .55rem; font-style: normal; font-weight: 800; }
.studio-item-action { grid-column: 1 / -1; display: flex; justify-content: flex-end; }
.studio-preview-button { position: absolute; right: 6px; bottom: 6px; min-height: 28px; padding: 4px 7px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: rgba(2,15,35,.70); color: white; cursor: pointer; font-size: .52rem; font-weight: 900; }

.studio-tone-picker,.studio-audio-local { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 18px; margin-top: 14px; padding: 15px; border: 1px solid #cbddec; border-radius: 18px; background: white; }
.studio-tone-picker h3,.studio-audio-local h3 { font-size: 1rem; }
.studio-tone-picker p:not(.eyebrow),.studio-audio-local p:not(.eyebrow) { margin: 3px 0 0; color: #627589; font-size: .64rem; }
.studio-tone-picker > div:last-child { display: flex; gap: 7px; }
.studio-tone-picker button { display: grid; place-items: center; width: 42px; height: 42px; padding: 3px; border: 2px solid transparent; border-radius: 50%; background: transparent; color: #071d38; cursor: pointer; font-weight: 950; }
.studio-tone-picker button span { display: block; width: 30px; height: 30px; border-radius: 50%; background: #e7b88f; box-shadow: inset 0 -5px rgba(40,20,10,.10); }
.studio-tone-picker button.tone-warm span { background: #b97850; }
.studio-tone-picker button.tone-deep span { background: #7d482e; }
.studio-tone-picker button.tone-rich span { background: #4b291e; }
.studio-tone-picker button[aria-pressed="true"] { border-color: #ff8620; box-shadow: 0 0 0 3px rgba(255,134,32,.14); }
.studio-audio-local form { display: grid; grid-template-columns: minmax(180px,1fr) auto; align-items: end; gap: 8px; }
.studio-audio-local form small { grid-column: 1 / -1; color: #60758b; }
.studio-audio-local input[type="file"] { max-width: 280px; padding: 7px; font-size: .62rem; }

.studio-achievement-track { padding: clamp(22px,4vw,34px); border-top: 1px solid #d1deec; background: #eaf3ff; }
.studio-achievement-track .studio-shop-heading { margin-top: 0; }
.studio-achievement-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.studio-achievement { display: grid; grid-template-rows: 1fr auto auto; min-height: 230px; padding: 17px; border: 1px solid #c6d9ec; border-radius: 20px; background: rgba(255,255,255,.82); }
.studio-achievement.is-complete { border-color: rgba(255,134,32,.65); background: linear-gradient(145deg,#fff,#fff4e7); box-shadow: 0 10px 24px rgba(95,54,14,.10); }
.studio-achievement > div:first-child span { display: inline-flex; padding: 4px 7px; border-radius: 999px; background: #0d65ad; color: white; font-size: .53rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.studio-achievement > div:first-child strong { display: block; margin-top: 8px; color: #071d38; }
.studio-achievement p { margin: 5px 0 0; color: #61758a; font-size: .65rem; }
.studio-achievement-progress { margin-top: 14px; }
.studio-achievement-progress small { color: #536a80; font-weight: 800; }
.studio-achievement-progress > span { display: block; overflow: hidden; height: 7px; margin-top: 5px; border-radius: 99px; background: #dbe5ef; }
.studio-achievement-progress i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg,#0d68b7,#26b8d6,#ff8620); }
.studio-achievement footer { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 2px 10px; margin-top: 14px; padding-top: 12px; border-top: 1px solid #d9e2eb; }
.studio-achievement footer small,.studio-achievement footer strong { display: block; }
.studio-achievement footer small { color: #96601d; font-size: .5rem; font-weight: 950; }
.studio-achievement footer strong { font-size: .68rem; }
.studio-achievement footer button,.studio-achievement footer b { grid-column: 2; grid-row: 1 / 3; }
.studio-achievement footer b { color: #14734d; font-size: .66rem; }
.studio-boundary { display: grid; grid-template-columns: minmax(240px,.55fr) minmax(0,1fr); gap: 20px; padding: 16px clamp(22px,4vw,34px); background: #071d38; color: white; }
.studio-boundary strong { color: #ffb75f; }
.studio-boundary span { color: rgba(255,255,255,.65); font-size: .64rem; line-height: 1.45; }

@media (max-width: 940px) {
  .player-studio-layout { grid-template-columns: 1fr; }
  .studio-stage { min-height: 520px; border-right: 0; border-bottom: 1px solid rgba(7,29,56,.12); }
  .studio-figure { left: 43%; }
  .studio-bag { right: 12%; }
}

@media (max-width: 680px) {
  .home-golf-lab { grid-template-columns: 1fr; padding: 20px 16px; }
  .home-lab-rules { grid-template-columns: 1fr; }
  .player-studio { border-radius: 22px; }
  .player-studio-head { align-items: stretch; flex-direction: column; }
  .studio-points { min-width: 0; }
  .studio-stage { min-height: 450px; }
  .studio-figure { bottom: 68px; left: 43%; width: 165px; height: 390px; transform: translateX(-50%) scale(.88); transform-origin: bottom center; }
  .studio-bag { right: 5%; bottom: 74px; transform: rotate(4deg) scale(.78); transform-origin: bottom right; }
  .studio-equipped-strip { grid-template-columns: 1fr; }
  .studio-equipped-strip span:not(:first-child) { display: none; }
  .studio-room-tabs { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .studio-item-grid,.studio-achievement-grid { grid-template-columns: 1fr; }
  .studio-tone-picker,.studio-audio-local { grid-template-columns: 1fr; }
  .studio-audio-local form { grid-template-columns: 1fr; align-items: stretch; }
  .studio-audio-local form small { grid-column: 1; }
  .studio-boundary { grid-template-columns: 1fr; gap: 7px; }
}

.meter { overflow: hidden; height: 8px; border-radius: 99px; background: rgba(13,42,64,.08); }
.meter span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--green-600), var(--gold-500)); }

.goal { padding: 14px 0; border-bottom: 1px solid var(--line); }
.goal:last-child { border-bottom: 0; }
.goal-top { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 9px; }
.goal-top strong { max-width: 70%; font-size: .9rem; }
.goal p { margin: 7px 0 0; color: var(--muted); font-size: .74rem; }

.drill-hero { background: radial-gradient(circle at 82% 14%, rgba(239,169,47,.42), transparent 14rem), linear-gradient(145deg, #071c2d, #0d3d45 54%, #116044); }
.drill-library { padding: 20px; border: 1px solid rgba(13,42,64,.08); border-radius: var(--radius-xl); background: rgba(255,255,255,.42); }
.filter-row { display: flex; gap: 8px; margin: 16px -4px 0; padding: 4px; overflow-x: auto; scrollbar-width: thin; }
.filter-chip { flex: 0 0 auto; min-height: 44px; padding: 8px 14px; border: 1px solid rgba(13,42,64,.12); border-radius: 999px; background: white; color: var(--navy-800); cursor: pointer; font-size: .76rem; font-weight: 800; }
.filter-chip[aria-pressed="true"] { border-color: var(--gold-500); background: var(--navy-900); color: white; box-shadow: 0 6px 16px rgba(4,19,31,.17); }
.drill-card { display: grid; gap: 14px; transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.drill-card:hover { transform: translateY(-3px); border-color: rgba(199,151,55,.45); box-shadow: var(--shadow); }
.drill-card.is-complete { border-color: rgba(24,116,83,.28); background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(220,235,227,.82)); }
.drill-meta { display: flex; flex-wrap: wrap; gap: 7px; }
.drill-cue { padding: 12px 14px; border-left: 4px solid var(--gold-500); border-radius: 0 12px 12px 0; background: #fff9e9; color: var(--navy-900); }
.fundamentals-card { overflow: hidden; padding: clamp(18px,3vw,28px); border-color: rgba(199,151,55,.28); background: radial-gradient(circle at 100% 0%, rgba(199,151,55,.23), transparent 22rem), linear-gradient(145deg,#071c2d,#0b3b3f 60%,#126142); color: white; }
.fundamentals-card h2 { color: white; font-size: clamp(1.75rem,4vw,2.7rem); }
.fundamentals-card .eyebrow { color: var(--gold-300); }
.fundamentals-head { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 18px; }
.fundamentals-head p:not(.eyebrow) { max-width: 680px; margin: 7px 0 0; color: rgba(255,255,255,.68); }
.foundation-mark { display: grid; place-items: center; min-width: 126px; min-height: 66px; padding: 12px 18px; border: 1px solid rgba(231,202,131,.30); border-radius: 19px; background: rgba(255,255,255,.07); color: var(--gold-300); font-family: Georgia,serif; font-size: 1.4rem; font-weight: 900; }
.fundamental-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; margin-top: 20px; }
.fundamental-grid article { display: grid; grid-template-columns: 46px minmax(0,1fr); align-items: center; gap: 12px; min-height: 104px; padding: 15px; border: 1px solid rgba(255,255,255,.10); border-radius: 17px; background: rgba(255,255,255,.07); }
.fundamental-grid article > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--gold-500); color: var(--navy-900); font-weight: 950; }
.fundamental-grid strong { display: block; color: white; font-family: Georgia,serif; font-size: 1.08rem; }
.fundamental-grid p { margin: 5px 0 0; color: rgba(255,255,255,.62); font-size: .68rem; line-height: 1.4; }
.direction-distance-equation { display: grid; grid-template-columns: minmax(0,1fr) 32px minmax(0,1fr) 32px minmax(116px,.45fr); align-items: center; gap: 8px; margin-top: 12px; padding: 12px; border-radius: 18px; background: rgba(4,19,31,.36); }
.direction-distance-equation > div { padding: 10px 13px; border-radius: 13px; background: rgba(255,255,255,.07); }
.direction-distance-equation small, .direction-distance-equation strong { display: block; }
.direction-distance-equation small { color: var(--gold-300); font-size: .58rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.direction-distance-equation strong { margin-top: 3px; color: white; font-size: .78rem; }
.direction-distance-equation b { color: var(--gold-300); font-family: Georgia,serif; font-size: 1.35rem; text-align: center; }
.direction-distance-equation .equation-result { background: var(--gold-500); }
.direction-distance-equation .equation-result small, .direction-distance-equation .equation-result strong { color: var(--navy-900); }
.foundation-note { margin: 13px 0 0; color: rgba(255,255,255,.64); font-size: .72rem; text-align: center; }
.shot-planner { padding: clamp(18px,3vw,28px); background: radial-gradient(circle at 100% 0%, rgba(199,151,55,.15), transparent 24rem), rgba(255,255,255,.92); }
.flip-switch { padding: clamp(18px,3vw,28px); border-color: rgba(255,255,255,.10); background: radial-gradient(circle at 92% 0%, rgba(231,202,131,.18), transparent 20rem), linear-gradient(145deg,#061827,#0b3440 58%,#0f543e); color: white; }
.flip-switch h2, .flip-switch h3 { color: white; }
.flip-switch .eyebrow { color: var(--gold-300); }
.flip-switch .button-ghost { border-color: rgba(255,255,255,.25); color: white; }
.flip-switch-head { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 18px; }
.flip-switch-head h2 { margin-top: 3px; font-size: clamp(2rem,5vw,3.2rem); }
.flip-switch-head p { max-width: 650px; color: rgba(255,255,255,.68); line-height: 1.5; }
.mode-switch { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 5px; min-width: 250px; padding: 5px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.06); }
.mode-switch button { display: grid; min-height: 62px; padding: 9px 13px; border: 0; border-radius: 13px; background: transparent; color: rgba(255,255,255,.58); cursor: pointer; text-align: left; }
.mode-switch button[aria-pressed="true"] { background: white; color: var(--navy-900); box-shadow: 0 7px 20px rgba(0,0,0,.22); }
.mode-switch span, .mode-switch strong { display: block; }
.mode-switch span { font-size: .58rem; font-weight: 900; text-transform: uppercase; }
.mode-switch strong { margin-top: 3px; font-size: .76rem; }
.switch-path { display: grid; grid-template-columns: minmax(0,1fr) 38px minmax(0,1fr); align-items: center; gap: 10px; margin-top: 20px; }
.switch-path section { display: grid; grid-template-columns: 52px minmax(0,1fr); align-items: center; gap: 13px; min-height: 122px; padding: 16px; border: 1px solid rgba(255,255,255,.09); border-radius: 18px; background: rgba(255,255,255,.045); opacity: .58; transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease; }
.switch-path section.active { transform: translateY(-2px); border-color: rgba(231,202,131,.38); background: rgba(255,255,255,.09); opacity: 1; box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.switch-path section > span { display: grid; place-items: center; width: 50px; height: 50px; border: 1px solid rgba(231,202,131,.30); border-radius: 16px; color: var(--gold-300); font-weight: 950; }
.switch-path small, .switch-path strong { display: block; }
.switch-path small { color: var(--gold-300); font-size: .6rem; font-weight: 850; text-transform: uppercase; }
.switch-path strong { margin-top: 4px; font-size: .82rem; }
.switch-path p { margin: 6px 0 0; color: rgba(255,255,255,.62); font-size: .69rem; line-height: 1.4; }
.switch-path > i { color: var(--gold-300); font-size: 1.5rem; font-style: normal; text-align: center; }
.topic-deck { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 18px; margin-top: 14px; padding: 17px; border: 1px solid rgba(255,255,255,.09); border-radius: 18px; background: rgba(4,19,31,.28); }
.topic-deck h3 { margin-top: 5px; font-family: Georgia,serif; font-size: 1.3rem; }
.topic-deck p:not(.eyebrow) { margin: 6px 0 0; color: rgba(255,255,255,.61); font-size: .72rem; }
.topic-deck .form-actions { margin-top: 0; }
.flip-switch > .fine-print { color: rgba(255,255,255,.54); }
.topic-list { display: grid; gap: 8px; margin-top: 16px; }
.topic-list > div { display: grid; grid-template-columns: 34px minmax(0,1fr); align-items: center; gap: 10px; padding: 10px; border: 1px solid var(--line); border-radius: 13px; background: white; }
.topic-list span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; background: var(--green-100); color: var(--green-800); font-weight: 900; }
.topic-list p { margin: 0; font-size: .78rem; }
.shot-planner-head { display: grid; grid-template-columns: minmax(0,1fr) minmax(210px,.35fr); align-items: center; gap: 18px; }
.shot-planner-head h2 { margin-top: 3px; font-size: clamp(2rem,5vw,3.25rem); }
.shot-planner-head p { max-width: 720px; color: var(--muted); line-height: 1.55; }
.guess-mark { display: grid; padding: 16px; border-radius: 18px; background: linear-gradient(145deg,var(--navy-900),var(--green-800)); color: white; }
.guess-mark span { color: var(--gold-300); font-size: .63rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.guess-mark strong { margin-top: 5px; font-family: Georgia,serif; font-size: 1.35rem; }
.guess-mark small { margin-top: 4px; color: rgba(255,255,255,.65); }
.routine-loop { display: grid; grid-template-columns: minmax(0,1fr) 30px minmax(0,1fr); align-items: center; gap: 10px; margin-top: 18px; }
.routine-loop section { display: grid; grid-template-columns: 44px minmax(0,1fr); align-items: center; gap: 12px; min-height: 100px; padding: 14px; border: 1px solid rgba(13,42,64,.09); border-radius: 17px; background: white; }
.routine-loop section > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: var(--navy-900); color: var(--gold-300); font-size: .66rem; font-weight: 900; text-transform: uppercase; }
.routine-loop small, .routine-loop strong { display: block; }
.routine-loop small { color: var(--green-700); font-size: .6rem; font-weight: 850; text-transform: uppercase; }
.routine-loop strong { margin-top: 4px; color: var(--navy-900); font-size: .78rem; }
.routine-loop p { margin: 5px 0 0; color: var(--muted); font-size: .66rem; line-height: 1.35; }
.routine-loop > i { color: var(--gold-600); font-size: 1.4rem; font-style: normal; text-align: center; }
.swing-type-picker { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 8px; margin-top: 20px; }
.swing-type-picker button { display: grid; align-content: start; min-width: 0; min-height: 118px; padding: 13px 10px; border: 1px solid rgba(13,42,64,.10); border-radius: 16px; background: white; color: var(--navy-900); cursor: pointer; text-align: left; }
.swing-type-picker button:hover { transform: translateY(-2px); border-color: var(--gold-500); box-shadow: var(--shadow-soft); }
.swing-type-picker button[aria-pressed="true"] { border-color: var(--gold-500); background: linear-gradient(145deg,var(--navy-900),#0c493e); color: white; box-shadow: 0 10px 24px rgba(4,19,31,.18); }
.swing-type-picker button > span { color: var(--gold-600); font-family: Georgia,serif; font-size: 1.35rem; }
.swing-type-picker button[aria-pressed="true"] > span { color: var(--gold-300); }
.swing-type-picker strong { margin-top: 9px; font-size: .76rem; }
.swing-type-picker small { overflow: hidden; margin-top: 4px; color: var(--muted); font-size: .61rem; line-height: 1.25; }
.swing-type-picker button[aria-pressed="true"] small { color: rgba(255,255,255,.64); }
.shot-equation { margin-top: 14px; padding: 20px; border: 1px solid rgba(13,42,64,.08); border-radius: 20px; background: #f5f6f2; }
.advanced-shot-details { border: 1px solid rgba(13,42,64,.10); border-radius: 16px; background: white; }
.advanced-shot-details summary { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 58px; padding: 12px 15px; cursor: pointer; list-style: none; }
.advanced-shot-details summary::-webkit-details-marker { display: none; }
.advanced-shot-details summary span { min-width: 0; }
.advanced-shot-details summary strong, .advanced-shot-details summary small { display: block; }
.advanced-shot-details summary strong { color: var(--navy-900); font-size: .78rem; }
.advanced-shot-details summary small { margin-top: 3px; color: var(--muted); font-size: .64rem; }
.advanced-shot-details summary > b { display: grid; place-items: center; flex: 0 0 auto; width: 34px; height: 34px; border-radius: 11px; background: var(--green-100); color: var(--green-800); font-size: 1.15rem; transition: transform 180ms ease; }
.advanced-shot-details[open] summary > b { transform: rotate(45deg); }
.advanced-shot-details[open] summary { border-bottom: 1px solid var(--line); }
.advanced-shot-details > .form-grid, .advanced-shot-details > .review-facts { padding: 0 15px 15px; }
.habit-checks { padding: 15px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.habit-checks legend { display: flex; align-items: center; gap: 9px; padding: 0 8px; color: var(--navy-900); }
.habit-checks legend > span { display: grid; place-items: center; min-width: 32px; height: 32px; padding: 0 7px; border-radius: 50%; background: var(--navy-900); color: var(--gold-300); font-size: .66rem; font-weight: 900; text-transform: uppercase; }
.habit-checks .check-line span { display: grid; }
.habit-checks .check-line small { margin-top: 3px; color: var(--muted); }
.equation-heading { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; }
.equation-heading > span { display: grid; place-items: center; flex: 0 0 auto; width: 36px; height: 36px; border-radius: 50%; background: var(--navy-900); color: var(--gold-300); font-weight: 900; }
.equation-heading strong, .equation-heading small { display: block; }
.equation-heading strong { color: var(--navy-900); font-family: Georgia,serif; font-size: 1.05rem; }
.equation-heading small { margin-top: 2px; color: var(--muted); font-size: .69rem; }
.input-pair { display: grid; grid-template-columns: minmax(0,1fr) 94px; gap: 7px; }
.guess-summary { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 18px; padding: 13px; overflow-x: auto; border-radius: 14px; background: var(--navy-900); color: white; white-space: nowrap; }
.guess-summary span { color: rgba(255,255,255,.65); font-size: .68rem; font-weight: 800; }
.guess-summary b { color: var(--gold-300); }
.guess-summary strong { color: var(--gold-300); font-size: .76rem; text-transform: uppercase; }
.recent-guesses { margin-top: 22px; }
.recent-guess-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 9px; margin-top: 12px; }
.recent-guess-grid article { display: grid; gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.recent-guess-grid article > div { display: flex; gap: 10px; min-width: 0; }
.recent-guess-grid article > div > span { display: grid; place-items: center; flex: 0 0 auto; width: 42px; height: 42px; border-radius: 13px; background: var(--green-100); color: var(--green-800); font-family: Georgia,serif; font-size: 1.1rem; }
.recent-guess-grid p { min-width: 0; margin: 0; }
.recent-guess-grid small, .recent-guess-grid strong, .recent-guess-grid em { display: block; }
.recent-guess-grid small { color: var(--muted); font-size: .62rem; }
.recent-guess-grid strong { margin-top: 3px; color: var(--navy-900); font-size: .78rem; }
.recent-guess-grid em { overflow: hidden; margin-top: 4px; color: var(--muted); font-size: .65rem; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
.swing-progress-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 9px; }
.swing-progress-grid article { display: grid; grid-template-columns: 48px minmax(0,1fr); gap: 11px; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: #f7f8f5; }
.swing-progress-grid article > span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--navy-900); color: var(--gold-300); font-family: Georgia,serif; font-size: 1.15rem; }
.swing-progress-grid small, .swing-progress-grid strong, .swing-progress-grid em { display: block; }
.swing-progress-grid small { color: var(--muted); font-size: .58rem; }
.swing-progress-grid strong { margin-top: 2px; color: var(--navy-900); font-size: .8rem; }
.swing-progress-grid em { margin-top: 5px; color: var(--muted); font-size: .62rem; font-style: normal; }
.mini-rail { overflow: hidden; height: 5px; margin-top: 8px; border-radius: 99px; background: rgba(13,42,64,.08); }
.mini-rail i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--green-600),var(--gold-500)); }
.routine-stats { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 7px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.routine-stats div { padding: 11px; border-radius: 13px; background: #eef3f0; }
.routine-stats small, .routine-stats strong { display: block; }
.routine-stats small { color: var(--muted); font-size: .58rem; }
.routine-stats strong { margin-top: 4px; color: var(--navy-900); font-family: Georgia,serif; font-size: 1.3rem; }
.shot-review-plan { padding: 18px; border-radius: 18px; background: linear-gradient(145deg,#f5f2e7,#fff); }
.shot-review-plan h3 { font-family: Georgia,serif; font-size: 1.45rem; }
.review-facts { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; margin-top: 14px; }
.review-facts span { padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: white; }
.review-facts.primary span { border-color: rgba(199,151,55,.30); background: #fff9e9; }
.review-facts small, .review-facts strong { display: block; }
.review-facts small { color: var(--muted); font-size: .6rem; text-transform: uppercase; }
.review-facts strong { margin-top: 3px; color: var(--navy-900); font-size: .76rem; }
.routine-receipt { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 13px; }
.routine-receipt span { padding: 6px 9px; border-radius: 999px; background: #e7e9e8; color: #68747a; font-size: .65rem; font-weight: 800; }
.routine-receipt span.done { background: var(--green-100); color: var(--green-800); }
.routine-receipt.post span { background: rgba(255,255,255,.10); color: rgba(255,255,255,.55); }
.routine-receipt.post span.done { background: rgba(231,202,131,.16); color: var(--gold-300); }
.shot-result-card { display: flex; align-items: flex-start; gap: 14px; padding: 19px; border-radius: 18px; background: linear-gradient(145deg,var(--navy-900),var(--green-800)); color: white; }
.shot-result-card > span { display: grid; place-items: center; flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; background: var(--gold-500); color: var(--navy-900); font-weight: 900; }
.shot-result-card h3 { color: white; font-family: Georgia,serif; font-size: 1.5rem; }
.shot-result-card p { color: rgba(255,255,255,.75); }
.shot-result-card small { color: rgba(255,255,255,.60); }
.result-pair { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; margin: 12px 0; }
.result-pair span { padding: 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(255,255,255,.07); }
.result-pair small, .result-pair strong { display: block; }
.result-pair strong { margin-top: 3px; color: white; font-size: .75rem; }
.outcome-review { padding: 16px; border: 1px solid rgba(199,151,55,.30); border-radius: 18px; background: linear-gradient(145deg,#fff9e9,#f5f6f2); }
.drill-steps { display: grid; gap: 12px; margin: 14px 0 0; padding: 0; list-style: none; counter-reset: drill-step; }
.drill-steps li { position: relative; min-height: 38px; padding: 3px 0 0 48px; color: var(--ink); line-height: 1.5; counter-increment: drill-step; }
.drill-steps li::before { content: counter(drill-step); position: absolute; top: 0; left: 0; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--navy-900); color: var(--gold-300); font-weight: 900; }
.success-card, .safety-card, .mindset-card { display: flex; align-items: flex-start; gap: 12px; padding: 15px; border-radius: 15px; }
.success-card { background: #e8f3ed; color: var(--green-800); }
.safety-card { background: #fff2dc; color: #70460c; }
.mindset-card { background: #eee8f7; color: #503a70; }
.success-card > span, .safety-card > span, .mindset-card > span { display: grid; place-items: center; flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; background: currentColor; color: white; font-weight: 900; }
.success-card p, .safety-card p, .mindset-card p { margin: 5px 0 0; line-height: 1.5; }
.score-rules { padding: 17px; border: 1px solid #dcc27f; border-radius: 16px; background: linear-gradient(145deg,#fffaf0,#f7e8be); color: #664c18; }
.score-rules strong { display: block; margin-top: 4px; color: var(--navy-900); font-family: Georgia, serif; font-size: 1.2rem; }
.score-rules p:last-child { margin-bottom: 0; line-height: 1.55; }
.swing-thoughts { padding: 18px; border-radius: 18px; background: linear-gradient(145deg,#0d2a40,#116044); color: white; }
.swing-thoughts h3 { color: white; font-family: Georgia, serif; font-size: 1.35rem; }
.swing-thoughts > div { display: grid; gap: 10px; margin-top: 14px; }
.swing-thoughts > div p { display: grid; grid-template-columns: 30px 1fr; align-items: start; gap: 10px; margin: 0; color: rgba(255,255,255,.78); line-height: 1.5; }
.swing-thoughts > div span { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid rgba(231,202,131,.34); border-radius: 50%; color: var(--gold-300); font-size: .7rem; font-weight: 900; }
.score-entry { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.attempt-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
.attempt-card { display: grid; gap: 4px; padding: 14px; border: 1px solid var(--line); border-radius: 15px; background: white; }
.attempt-card small { color: var(--muted); font-weight: 800; text-transform: uppercase; }
.attempt-card strong { color: var(--navy-900); font-family: Georgia, serif; font-size: 1.3rem; }
.attempt-card span { color: var(--muted); font-size: .7rem; }
.attempt-card.is-best { border-color: var(--gold-500); background: #fff8e7; box-shadow: 0 7px 18px rgba(169,119,27,.12); }
.scoreboard-best { display: grid; justify-items: center; padding: 22px; border-radius: 20px; background: linear-gradient(145deg,var(--navy-900),var(--green-800)); color: white; text-align: center; }
.scoreboard-best strong { color: var(--gold-300); font-family: Georgia, serif; font-size: 2.6rem; }
.scoreboard-best span { color: rgba(255,255,255,.68); font-size: .75rem; }
.mindset-quote { padding: 15px; border-left: 4px solid #8063a7; background: #f1edf7; color: #503a70; font-family: Georgia, serif; line-height: 1.55; }

.segmented {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(13,42,64,.07);
}

.segmented button { min-height: 44px; padding: 8px 13px; border: 0; border-radius: 999px; background: transparent; cursor: pointer; color: var(--muted); font-size: .77rem; font-weight: 800; }
.segmented button[aria-pressed="true"] { background: white; color: var(--navy-900); box-shadow: 0 2px 8px rgba(4,19,31,.10); }

.field { display: grid; gap: 7px; }
.field label { color: var(--navy-800); font-size: .77rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: var(--tap);
  padding: 11px 12px;
  border: 1px solid #b9c4c0;
  border-radius: 12px;
  background: white;
  color: var(--ink);
}

.field textarea { min-height: 96px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #7b898f; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

.hole-strip { display: grid; grid-template-columns: repeat(9, minmax(34px,1fr)); gap: 5px; overflow-x: auto; padding: 4px; }
.hole-strip button { min-width: 40px; min-height: 44px; border: 1px solid var(--line); border-radius: 11px; background: white; cursor: pointer; font-weight: 800; }
.hole-strip button[aria-pressed="true"] { border-color: var(--green-600); background: var(--green-700); color: white; }

.score-stepper { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 18px; }
.score-stepper button { width: 54px; height: 54px; border: 1px solid var(--line); border-radius: 50%; background: white; cursor: pointer; font-size: 1.5rem; }
.score-stepper strong { min-width: 52px; color: var(--navy-900); font-family: Georgia, serif; font-size: 2.5rem; text-align: center; }

.bag-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.club-card { padding: 15px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.club-card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.club-card .distance { margin: 14px 0 2px; color: var(--navy-900); font-family: Georgia, serif; font-size: 2rem; }
.club-card .distance small { font-family: inherit; font-size: .8rem; }
.club-card p { margin: 4px 0; color: var(--muted); font-size: .74rem; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; background: white; }
table { width: 100%; border-collapse: collapse; font-size: .78rem; }
th, td { padding: 11px 12px; border-bottom: 1px solid var(--line); text-align: left; white-space: nowrap; }
th { background: #eef2ef; color: var(--navy-800); font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; }
tr:last-child td { border-bottom: 0; }

.bar-chart { display: grid; gap: 12px; }
.bar-row { display: grid; grid-template-columns: 86px 1fr 40px; align-items: center; gap: 9px; font-size: .75rem; }
.bar-row span:first-child { color: var(--muted); }
.bar { overflow: hidden; height: 10px; border-radius: 99px; background: rgba(13,42,64,.08); }
.bar i { display: block; height: 100%; border-radius: inherit; background: var(--green-600); }

.trophy-cabinet {
  isolation: isolate;
  padding: clamp(18px, 3vw, 28px);
  border-color: rgba(231,202,131,.22);
  background:
    radial-gradient(circle at 82% 5%, rgba(239,169,47,.20), transparent 22rem),
    radial-gradient(circle at 0% 100%, rgba(24,116,83,.28), transparent 25rem),
    linear-gradient(145deg, #04131f, #08283a 58%, #0b3a35);
  color: white;
  box-shadow: 0 24px 60px rgba(4,19,31,.26);
}
.trophy-cabinet::before { content: ""; position: absolute; z-index: -1; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 32px 32px; mask-image: linear-gradient(to bottom, black, transparent 70%); }
.cabinet-glow { position: absolute; z-index: -1; top: -160px; right: -120px; width: 360px; height: 360px; border: 1px solid rgba(231,202,131,.18); border-radius: 50%; box-shadow: 0 0 0 44px rgba(231,202,131,.025), 0 0 0 88px rgba(231,202,131,.018); }
.trophy-cabinet h2, .trophy-cabinet h3 { color: white; }
.trophy-cabinet .eyebrow { color: var(--gold-300); }
.cabinet-header { position: relative; z-index: 1; }
.cabinet-header p { max-width: 590px; color: rgba(255,255,255,.68); }
.cabinet-header .status-chip { background: rgba(231,202,131,.13); color: var(--gold-300); }
.cabinet-stage { position: relative; display: grid; grid-template-columns: minmax(0,1fr) minmax(240px,.55fr); gap: 16px; align-items: stretch; margin-top: 18px; }
.cabinet-season, .featured-trophy { min-height: 150px; padding: 20px; border: 1px solid rgba(255,255,255,.10); border-radius: 20px; background: rgba(255,255,255,.055); backdrop-filter: blur(8px); }
.cabinet-season { display: grid; align-content: center; }
.cabinet-kicker { color: rgba(255,255,255,.62); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.cabinet-season > strong { margin-top: 6px; color: white; font-family: Georgia, serif; font-size: clamp(1.7rem, 5vw, 2.7rem); }
.cabinet-rail, .trophy-detail-rail { overflow: hidden; height: 10px; margin-top: 16px; border-radius: 99px; background: rgba(255,255,255,.10); }
.cabinet-rail i, .trophy-detail-rail i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold-500), #fff0b9); box-shadow: 0 0 18px rgba(239,169,47,.5); }
.cabinet-season > small { margin-top: 7px; color: rgba(255,255,255,.65); }
.featured-trophy { position: relative; overflow: hidden; display: flex; align-items: center; gap: 16px; color: white; cursor: pointer; text-align: left; }
.featured-trophy:hover { border-color: rgba(231,202,131,.45); background: rgba(255,255,255,.09); }
.featured-rays { position: absolute; right: -38px; width: 170px; height: 170px; border-radius: 50%; background: repeating-conic-gradient(from 0deg, rgba(255,255,255,.08) 0deg 8deg, transparent 8deg 18deg); animation: cabinet-spin 24s linear infinite; }
.featured-emblem { position: relative; display: grid; place-items: center; flex: 0 0 auto; width: 78px; height: 78px; border: 1px solid rgba(255,255,255,.30); border-radius: 24px; background: linear-gradient(145deg, #805ad0, #4d2d7d); box-shadow: 0 12px 30px rgba(0,0,0,.25), inset 0 0 22px rgba(255,255,255,.15); font-family: Georgia, serif; font-size: 2rem; }
.featured-trophy > span:last-child { position: relative; display: grid; }
.featured-trophy small { color: rgba(255,255,255,.66); font-size: .65rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.featured-trophy strong { margin-top: 5px; font-family: Georgia, serif; font-size: 1.15rem; }
.collection-strip { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 8px; margin-top: 14px; }
.collection-strip div { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-height: 54px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; background: rgba(255,255,255,.045); }
.collection-strip span { color: rgba(255,255,255,.62); font-size: .7rem; }
.collection-strip strong { color: var(--gold-300); }
.near-unlocks, .cabinet-collection { margin-top: 24px; }
.trophy-cabinet .section-heading > span { color: rgba(255,255,255,.58); }
.near-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 9px; margin-top: 12px; }
.near-grid button { display: grid; grid-template-columns: 48px minmax(0,1fr) auto; align-items: center; gap: 10px; min-height: 88px; padding: 12px; border: 1px solid rgba(255,255,255,.09); border-radius: 16px; background: rgba(255,255,255,.05); color: white; cursor: pointer; text-align: left; }
.near-grid button:hover { transform: translateY(-2px); border-color: rgba(231,202,131,.38); background: rgba(255,255,255,.08); }
.near-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 15px; background: #7955bd; font-family: Georgia, serif; font-size: 1.25rem; }
.near-grid small, .near-grid strong, .near-grid em { display: block; }
.near-grid small { color: rgba(255,255,255,.54); font-size: .59rem; font-weight: 800; text-transform: uppercase; }
.near-grid strong { margin-top: 3px; font-size: .8rem; }
.near-grid em { overflow: hidden; margin-top: 4px; color: rgba(255,255,255,.62); font-size: .65rem; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
.near-grid b { color: var(--gold-300); font-size: .75rem; }
.trophy-grid, .trophy-showcase { display: grid; gap: 10px; margin-top: 13px; }
.trophy-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
.trophy-showcase { grid-template-columns: repeat(5,minmax(0,1fr)); }
.trophy-card { --tier: var(--rare); position: relative; overflow: hidden; display: grid; align-content: start; gap: 8px; min-width: 0; min-height: 164px; padding: 15px 12px 13px; border: 1px solid color-mix(in srgb, var(--tier) 55%, transparent); border-radius: 18px; background: linear-gradient(150deg, color-mix(in srgb, var(--tier) 22%, #0b2030), rgba(255,255,255,.035)); color: white; cursor: pointer; text-align: left; box-shadow: inset 0 1px rgba(255,255,255,.10); }
.trophy-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 14px 30px rgba(0,0,0,.24), 0 0 24px color-mix(in srgb, var(--tier) 28%, transparent); }
.tier-rare { --tier: var(--rare); }
.tier-epic { --tier: var(--epic); }
.tier-legendary { --tier: var(--legendary); }
.tier-crown { --tier: var(--crown); }
.trophy-emblem { position: relative; display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid color-mix(in srgb, var(--tier) 75%, white); border-radius: 18px; background: color-mix(in srgb, var(--tier) 68%, #132437); box-shadow: 0 8px 20px rgba(0,0,0,.25), inset 0 0 18px rgba(255,255,255,.15); font-family: Georgia, serif; font-size: 1.45rem; }
.trophy-copy { min-width: 0; }
.trophy-copy small, .trophy-copy strong, .trophy-copy > span { display: block; }
.trophy-copy small { overflow: hidden; color: color-mix(in srgb, var(--tier) 62%, white); font-size: .58rem; font-weight: 850; letter-spacing: .04em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.trophy-copy strong { margin-top: 4px; font-size: .76rem; line-height: 1.2; }
.trophy-copy > span { margin-top: 4px; color: rgba(255,255,255,.55); font-size: .62rem; }
.trophy-shine { position: absolute; top: -30%; left: -65%; width: 44%; height: 165%; transform: rotate(22deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent); transition: left 480ms ease; }
.trophy-card:hover .trophy-shine { left: 125%; }
.trophy-progress { align-self: end; overflow: hidden; height: 4px; border-radius: 99px; background: rgba(255,255,255,.10); }
.trophy-progress i { display: block; height: 100%; border-radius: inherit; background: var(--tier); }
.trophy-lock { position: absolute; top: 10px; right: 10px; color: rgba(255,255,255,.55); }
.trophy-card.state-locked { filter: saturate(.25); opacity: .62; }
.trophy-card.state-near { animation: near-pulse 3.6s ease-in-out infinite; }
.cabinet-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 15px; }
.cabinet-actions > span { color: rgba(255,255,255,.65); font-size: .75rem; }
.cabinet-ethics { margin: 18px 0 0; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.58); font-size: .71rem; line-height: 1.5; }
.trophy-detail { --tier: var(--rare); padding: 22px; border-radius: 22px; background: radial-gradient(circle at 85% 5%, color-mix(in srgb, var(--tier) 32%, transparent), transparent 15rem), linear-gradient(145deg, #071c2d, #0d2a40); color: white; text-align: center; }
.trophy-detail h3 { color: white; font-family: Georgia, serif; font-size: 1.55rem; }
.trophy-detail p:not(.eyebrow) { color: rgba(255,255,255,.72); line-height: 1.55; }
.trophy-detail-emblem, .victory-emblem { display: grid; place-items: center; width: 104px; height: 104px; margin: 0 auto 17px; border: 1px solid color-mix(in srgb, var(--tier) 70%, white); border-radius: 32px; background: color-mix(in srgb, var(--tier) 60%, #15283b); box-shadow: 0 18px 40px rgba(0,0,0,.34), 0 0 34px color-mix(in srgb, var(--tier) 28%, transparent), inset 0 0 25px rgba(255,255,255,.17); font-family: Georgia, serif; font-size: 2.7rem; }
.trophy-detail-rail { background: rgba(255,255,255,.10); }
.trophy-detail-meta { display: flex; justify-content: space-between; gap: 10px; margin-top: 8px; color: rgba(255,255,255,.58); font-size: .72rem; }
.trophy-detail-meta strong { color: var(--gold-300); }
.victory-reveal { --tier: var(--legendary); position: relative; overflow: hidden; padding: 28px 20px; border-radius: 24px; background: radial-gradient(circle at 50% 28%, color-mix(in srgb, var(--tier) 38%, transparent), transparent 13rem), linear-gradient(145deg, #061827, #0b3440); color: white; text-align: center; }
.victory-reveal h3 { color: white; font-family: Georgia, serif; font-size: 2rem; }
.victory-reveal p:not(.eyebrow) { color: rgba(255,255,255,.72); line-height: 1.55; }
.victory-orbit { position: absolute; top: -60px; left: calc(50% - 140px); width: 280px; height: 280px; border: 1px solid color-mix(in srgb, var(--tier) 35%, transparent); border-radius: 50%; box-shadow: 0 0 0 35px color-mix(in srgb, var(--tier) 4%, transparent), 0 0 0 70px color-mix(in srgb, var(--tier) 2%, transparent); animation: victory-enter 700ms ease-out both; }
.victory-emblem { position: relative; animation: victory-pop 720ms cubic-bezier(.2,.8,.2,1.25) both; }
.victory-xp { display: inline-flex; margin-top: 9px; padding: 8px 13px; border: 1px solid rgba(231,202,131,.24); border-radius: 999px; background: rgba(231,202,131,.10); color: var(--gold-300); }
.victory-reveal .form-actions { position: relative; justify-content: center; }
@keyframes cabinet-spin { to { transform: rotate(360deg); } }
@keyframes near-pulse { 0%,100% { box-shadow: inset 0 1px rgba(255,255,255,.10); } 50% { box-shadow: 0 0 24px color-mix(in srgb, var(--tier) 23%, transparent), inset 0 1px rgba(255,255,255,.10); } }
@keyframes victory-pop { 0% { opacity: 0; transform: translateY(22px) scale(.62) rotate(-8deg); } 100% { opacity: 1; transform: translateY(0) scale(1) rotate(0); } }
@keyframes victory-enter { 0% { opacity: 0; transform: scale(.65); } 100% { opacity: 1; transform: scale(1); } }

.setup-card { display: grid; gap: 12px; padding: 16px; border: 1px dashed #be9a4e; border-radius: 15px; background: #fff9e9; }
.setup-card h3 { display: flex; align-items: center; gap: 8px; }
.setup-card p { margin: 0; color: #705927; font-size: .82rem; line-height: 1.5; }

.metric-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.metric { padding: 15px; border-radius: 15px; background: #eef3f0; }
.metric strong { display: block; color: var(--navy-900); font-family: Georgia, serif; font-size: 1.75rem; }
.metric span { display: block; margin-top: 4px; color: var(--muted); font-size: .72rem; }

.note-card { padding: 15px; border-left: 4px solid var(--green-600); border-radius: 0 14px 14px 0; background: white; box-shadow: var(--shadow-soft); }
.note-card p { margin: 7px 0 0; line-height: 1.5; }
.note-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--muted); font-size: .7rem; }

.consent-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 60px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.consent-row:last-child { border-bottom: 0; }
.consent-row strong, .consent-row small { display: block; }
.consent-row small { margin-top: 4px; color: var(--muted); }
.switch { position: relative; flex: 0 0 auto; width: 56px; height: 44px; }
.switch input { position: absolute; opacity: 0; }
.switch span { position: absolute; inset: 6px 0; border-radius: 99px; background: #84918c; cursor: pointer; transition: background .2s; }
.switch span::after { content: ""; position: absolute; top: 4px; left: 4px; width: 24px; height: 24px; border-radius: 50%; background: white; box-shadow: 0 2px 5px rgba(0,0,0,.2); transition: transform .2s; }
.switch input:checked + span { background: var(--green-600); }
.switch input:checked + span::after { transform: translateX(20px); }
.switch input:focus-visible + span { outline: 3px solid var(--gold-500); outline-offset: 3px; }

.price-grid { display: grid; gap: 10px; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.price-row:last-child { border-bottom: 0; }
.price-row strong, .price-row small { display: block; }
.price-row small { margin-top: 4px; color: var(--muted); }
.price-row b { color: var(--green-700); font-family: Georgia, serif; font-size: 1.2rem; white-space: nowrap; }

.plan-price { color: var(--green-700); font-family: Georgia, serif; font-size: 1.85rem; white-space: nowrap; }
.card-dark .plan-price { color: var(--gold-300); }
.skillz-pass-hero {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: start;
  gap: 20px;
  overflow: hidden;
  padding: clamp(22px,4vw,38px);
  border: 2px solid #69d3ff;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 10%,rgba(255,122,24,.42),transparent 17rem),
    radial-gradient(circle at 8% 90%,rgba(87,255,164,.22),transparent 17rem),
    linear-gradient(135deg,#020916,#123b80 58%,#5224a5);
  color: white;
  box-shadow: 0 22px 60px rgba(10,36,80,.28);
}
.skillz-pass-hero h2 { margin: 6px 0 8px; color: white; font-family: Georgia,"Times New Roman",serif; font-size: clamp(2rem,5vw,3.8rem); line-height: 1; }
.skillz-pass-hero p:not(.eyebrow) { max-width: 48rem; color: #dce7fb; line-height: 1.55; }
.skillz-pass-score { display: grid; justify-items: end; }
.skillz-pass-score > span { color: white; font-size: clamp(2rem,5vw,3.4rem); font-weight: 950; line-height: 1; }
.skillz-pass-score small { margin-top: 5px; color: #ffcf7d; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.skillz-pass-rail { grid-column: 1 / -1; overflow: hidden; height: 16px; border: 2px solid rgba(255,255,255,.34); border-radius: 999px; background: rgba(2,9,22,.5); }
.skillz-pass-rail > i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg,#57ffa4,#69d3ff 55%,#ffb34f); box-shadow: 0 0 22px rgba(105,211,255,.65); }
.skillz-pass-meta { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.skillz-pass-meta > span { display: grid; gap: 3px; min-height: 70px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.24); border-radius: 15px; background: rgba(2,9,22,.28); }
.skillz-pass-meta strong { color: white; }
.skillz-pass-meta small { color: #c7d8f7; line-height: 1.35; }
.skillz-pass-hero > .form-actions { grid-column: 1 / -1; }
.skillz-earn-card { border: 2px solid #9eb8e7; background: linear-gradient(145deg,#fff,#eef4ff); }
.skillz-earn-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; margin-top: 15px; }
.skillz-earn-grid article { min-height: 126px; padding: 16px; border: 2px solid #c9d9f4; border-radius: 17px; background: white; }
.skillz-earn-grid span { display: inline-grid; place-items: center; min-width: 54px; min-height: 32px; padding: 0 10px; border-radius: 999px; background: #123b80; color: white; font-weight: 950; }
.skillz-earn-grid strong { display: block; margin-top: 10px; color: var(--navy-900); }
.skillz-earn-grid small { display: block; margin-top: 5px; color: var(--muted); line-height: 1.4; }
.skillz-tier-track { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.skillz-tier-track article { display: grid; align-content: start; gap: 5px; min-height: 184px; padding: 16px; border: 2px solid #b8cff2; border-radius: 18px; background: linear-gradient(145deg,#fff,#eef4ff); }
.skillz-tier-track article > span { display: grid; place-items: center; width: 44px; height: 44px; border: 2px solid currentColor; border-radius: 14px; color: #123b80; font-size: 1rem; font-weight: 950; }
.skillz-tier-track article > small { margin-top: 4px; color: var(--green-800); font-size: .65rem; font-weight: 950; letter-spacing: .06em; text-transform: uppercase; }
.skillz-tier-track article > strong { min-height: 42px; color: var(--navy-900); line-height: 1.3; }
.skillz-tier-track article > .button { align-self: end; margin-top: 7px; }
.skillz-tier-track article.is-earned { border-color: #19a364; background: linear-gradient(145deg,#effff7,#d8f8e8); }
.skillz-tier-track article.is-earned > span { background: #0b7a49; color: white; }
.skillz-tier-track article.is-locked { border-style: dashed; }
.skillz-history { display: grid; gap: 8px; }
.skillz-history > div { display: grid; grid-template-columns: auto minmax(0,1fr); align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.skillz-history > div:last-child { border-bottom: 0; }
.skillz-history > div > span { min-width: 72px; color: #0b7a49; font-weight: 950; }
.skillz-history p { margin: 0; }
.skillz-history strong,.skillz-history small { display: block; }
.skillz-history small { margin-top: 3px; color: var(--muted); }
.skillz-invite-intro { padding: 18px; border: 2px solid #69d3ff; border-radius: 18px; background: linear-gradient(135deg,#07162f,#123b80); color: white; }
.skillz-invite-intro h3 { margin: 4px 0; color: white; }
.skillz-invite-intro p { margin: 4px 0 0; color: #c7d8f7; line-height: 1.5; }
.card-dark .list-row { border-color: rgba(255,255,255,.15); }
.fair-play-note { padding: 15px 17px; border-left: 4px solid var(--gold-500); border-radius: 0 14px 14px 0; background: #fff9e9; color: #705927; line-height: 1.55; }
.vs-feature-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; margin-top: 16px; }
.od-preview { display: grid; padding: 14px 16px; border: 1px solid rgba(231,202,131,.24); border-radius: 15px; background: rgba(231,202,131,.09); }
.od-preview.clock { border-color: rgba(76,174,203,.25); background: rgba(76,174,203,.08); }
.od-preview span { color: var(--gold-300); font-size: .58rem; font-weight: 900; letter-spacing: .1em; }
.od-preview strong { margin-top: 4px; color: white; font-family: Georgia,serif; font-size: 1.2rem; }
.od-preview small { margin-top: 4px; color: rgba(255,255,255,.62); }
.od-hero { display: grid; grid-template-columns: minmax(0,1fr) minmax(190px,.55fr); align-items: center; gap: 16px; padding: 22px; border-radius: 22px; background: radial-gradient(circle at 90% 0%,rgba(239,169,47,.26),transparent 14rem),linear-gradient(145deg,#061827,#0c493e); color: white; }
.od-hero h3 { margin-top: 6px; color: white; font-family: Georgia,serif; font-size: 2rem; line-height: 1; }
.od-hero p:not(.eyebrow) { color: rgba(255,255,255,.68); line-height: 1.5; }
.od-score { display: grid; grid-template-columns: 1fr; justify-items: center; padding: 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 17px; background: rgba(255,255,255,.07); text-align: center; }
.od-score span { color: var(--gold-300); font-size: .58rem; font-weight: 900; letter-spacing: .1em; }
.od-score strong { margin-top: 2px; font-size: .72rem; }
.od-score i { display: grid; place-items: center; width: 34px; height: 34px; margin: 8px 0; border-radius: 50%; background: var(--gold-500); color: var(--navy-900); font-size: .65rem; font-style: normal; font-weight: 950; }
.role-rotation { display: grid; gap: 7px; }
.role-rotation > div { display: grid; grid-template-columns: 58px minmax(0,1fr) 24px minmax(0,1fr); align-items: center; gap: 8px; padding: 9px; border-radius: 13px; background: #f2f5f2; }
.role-rotation b { color: var(--navy-900); font-size: .7rem; }
.role-rotation span { display: grid; color: var(--navy-900); font-size: .72rem; font-weight: 800; }
.role-rotation small { color: var(--muted); font-size: .55rem; font-weight: 700; text-transform: uppercase; }
.role-rotation i { color: var(--gold-600); font-style: normal; text-align: center; }
.od-rules { padding: 18px; border-radius: 18px; background: #e9f1ed; }
.od-rules > div { display: grid; gap: 9px; margin-top: 12px; }
.od-rules > div p { display: grid; grid-template-columns: 30px 1fr; align-items: center; gap: 10px; margin: 0; color: var(--green-800); line-height: 1.4; }
.od-rules > div span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--green-800); color: white; font-size: .66rem; font-weight: 900; }
.drive-duel { padding: 18px; border: 1px solid #d8bc75; border-radius: 18px; background: linear-gradient(145deg,#fff9e9,#f1dfae); color: #664b15; }
.drive-duel > div:first-child { display: flex; align-items: center; gap: 10px; }
.drive-duel > div:first-child > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--navy-900); color: var(--gold-300); font-size: 1.2rem; }
.drive-duel small, .drive-duel strong { display: block; }
.drive-duel small { font-size: .58rem; font-weight: 850; text-transform: uppercase; }
.drive-duel strong { margin-top: 3px; color: var(--navy-900); font-family: Georgia,serif; font-size: 1.2rem; }
.drive-duel > p { line-height: 1.5; }
.duel-example { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; padding: 11px; border-radius: 13px; background: rgba(255,255,255,.62); text-align: center; }
.duel-example span { display: grid; }
.duel-example i { color: var(--green-800); font-size: .64rem; font-style: normal; font-weight: 950; }
.stat-battle-grid { display: grid; gap: 8px; margin-top: 12px; }
.stat-battle-grid article { display: grid; grid-template-columns: 44px minmax(0,1fr) auto; align-items: start; gap: 11px; padding: 13px; border: 1px solid var(--line); border-radius: 15px; background: white; }
.stat-battle-grid article > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--navy-900); color: var(--gold-300); font-family: Georgia,serif; font-size: 1.05rem; }
.stat-battle-grid small, .stat-battle-grid strong { display: block; }
.stat-battle-grid small { color: var(--muted); font-size: .57rem; text-transform: uppercase; }
.stat-battle-grid strong { margin-top: 3px; color: var(--navy-900); font-size: .82rem; }
.stat-battle-grid p { margin: 5px 0 0; color: var(--muted); font-size: .68rem; line-height: 1.4; }
.stat-battle-grid article > b { padding: 5px 7px; border-radius: 999px; background: #fff0cf; color: #755009; font-size: .6rem; white-space: nowrap; }
.stat-picker { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); column-gap: 14px; padding: 13px; border: 1px solid var(--line); border-radius: 15px; }
.stat-picker legend { padding: 0 8px; color: var(--navy-900); font-weight: 850; }
.clock-hero { display: grid; grid-template-columns: minmax(0,1fr) minmax(220px,.55fr); align-items: center; gap: 16px; padding: 22px; border-radius: 22px; background: radial-gradient(circle at 85% 0%,rgba(76,174,203,.25),transparent 15rem),linear-gradient(145deg,#061827,#0c493e); color: white; }
.clock-hero h3 { margin-top: 6px; color: white; font-family: Georgia,serif; font-size: 2rem; line-height: 1; }
.clock-hero p:not(.eyebrow) { color: rgba(255,255,255,.67); line-height: 1.5; }
.live-clock { display: grid; justify-items: center; padding: 16px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(4,19,31,.32); text-align: center; }
.live-clock > small { color: var(--gold-300); font-size: .6rem; font-weight: 900; letter-spacing: .11em; }
.live-clock > strong { margin-top: 3px; color: white; font-family: ui-monospace,"SFMono-Regular",Consolas,monospace; font-size: 3.5rem; letter-spacing: -.06em; line-height: 1; }
.live-clock > strong.is-urgent { color: #ffd586; }
.live-clock > span { min-height: 32px; margin-top: 7px; color: rgba(255,255,255,.62); font-size: .66rem; line-height: 1.35; }
.live-clock .form-actions { justify-content: center; margin-top: 10px; }
.live-clock .button { min-height: 42px; padding: 8px 11px; font-size: .68rem; }
.clock-format-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
.clock-format-grid article { display: grid; grid-template-columns: 42px minmax(0,1fr); align-items: start; gap: 10px; padding: 13px; border: 1px solid var(--line); border-radius: 15px; background: #f6f8f5; }
.clock-format-grid article > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 13px; background: var(--navy-900); color: var(--gold-300); font-family: Georgia,serif; }
.clock-format-grid strong { color: var(--navy-900); }
.clock-format-grid p { margin: 5px 0 0; color: var(--muted); font-size: .68rem; line-height: 1.4; }
.course-zone-flow { padding: 18px; border-radius: 18px; background: #e9f1ed; }
.course-zone-flow > div { display: grid; grid-template-columns: 1fr 22px 1.15fr 22px 1fr; align-items: stretch; gap: 6px; margin-top: 12px; }
.course-zone-flow article { display: grid; align-content: start; justify-items: start; padding: 13px; border: 1px solid rgba(13,42,64,.08); border-radius: 14px; background: rgba(255,255,255,.74); }
.course-zone-flow article.parallel { border-color: rgba(199,151,55,.42); background: #fff8e7; }
.course-zone-flow article > span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; background: var(--navy-900); color: var(--gold-300); font-family: Georgia,serif; }
.course-zone-flow small { margin-top: 8px; color: var(--green-700); font-size: .56rem; font-weight: 900; text-transform: uppercase; }
.course-zone-flow strong { margin-top: 3px; color: var(--navy-900); font-size: .74rem; }
.course-zone-flow article p { margin: 5px 0 0; color: var(--muted); font-size: .65rem; line-height: 1.4; }
.course-zone-flow > div > i { align-self: center; color: var(--gold-600); font-style: normal; text-align: center; }
.hitting-zone { padding: 18px; border: 1px solid #d8bc75; border-radius: 18px; background: #fff9e9; }
.hitting-zone > div { display: grid; grid-template-columns: 1fr 24px 1.25fr 24px 1fr; align-items: center; gap: 5px; margin-top: 12px; }
.hitting-zone > div span { display: grid; place-items: center; min-height: 48px; padding: 8px; border-radius: 12px; background: #e7ece9; color: var(--navy-800); font-size: .62rem; font-weight: 900; text-align: center; }
.hitting-zone > div span.active { background: var(--navy-900); color: var(--gold-300); }
.hitting-zone > div span.clear { background: var(--green-100); color: var(--green-800); }
.hitting-zone > div i { color: var(--gold-600); font-style: normal; text-align: center; }
.hitting-zone > p:last-child { margin-bottom: 0; color: #6a501e; font-size: .72rem; line-height: 1.5; }
.team-role-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; margin-top: 12px; }
.team-role-grid article { padding: 13px; border-left: 4px solid var(--green-600); border-radius: 0 14px 14px 0; background: white; box-shadow: var(--shadow-soft); }
.team-role-grid strong { color: var(--navy-900); }
.team-role-grid p { margin: 5px 0 0; color: var(--muted); font-size: .69rem; line-height: 1.4; }
.clock-rotation { display: grid; gap: 7px; }
.clock-rotation > div { display: grid; grid-template-columns: 56px repeat(3,minmax(0,1fr)); align-items: center; gap: 8px; padding: 9px; border-radius: 13px; background: #f2f5f2; }
.clock-rotation b { color: var(--navy-900); font-size: .7rem; }
.clock-rotation span { display: grid; color: var(--navy-900); font-size: .73rem; font-weight: 800; }
.clock-rotation small { color: var(--muted); font-size: .55rem; text-transform: uppercase; }
.clock-rules { padding: 18px; border-radius: 18px; background: #e9f1ed; }
.clock-rules > div { display: grid; gap: 9px; margin-top: 12px; }
.clock-rules p { display: grid; grid-template-columns: 30px 1fr; align-items: start; gap: 10px; margin: 0; color: var(--green-800); line-height: 1.45; }
.clock-rules p span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--green-800); color: white; font-size: .65rem; font-weight: 900; }
.event-product { padding: 19px; border: 1px solid #d8bc75; border-radius: 19px; background: linear-gradient(145deg,#fff9e9,#f3e4ba); color: #604817; }
.event-product h3 { margin-top: 4px; color: var(--navy-900); font-family: Georgia,serif; font-size: 1.45rem; }
.event-product > div:first-child > p:last-child { line-height: 1.5; }
.event-product-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; margin-top: 13px; }
.event-product-grid article { display: grid; gap: 7px; padding: 13px; border-radius: 14px; background: rgba(255,255,255,.62); }
.event-product-grid small { color: var(--navy-900); font-weight: 900; text-transform: uppercase; }
.event-product-grid span { color: #6b521e; font-size: .68rem; line-height: 1.35; }
.banter-card { display: grid; grid-template-columns: minmax(0,1fr) 56px; align-items: center; gap: 14px; padding: 18px; border-radius: 18px; background: linear-gradient(145deg,#eee8f7,#f7f4fb); color: #503a70; }
.banter-card h3 { margin-top: 4px; color: #3f2e57; font-family: Georgia,serif; font-size: 1.35rem; }
.banter-card p:not(.eyebrow) { line-height: 1.5; }
.banter-card > span { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 17px; background: #5f447e; color: white; font-size: 1.3rem; }
.check-line { display: flex; align-items: flex-start; gap: 11px; min-height: 48px; padding: 10px 0; color: var(--navy-800); font-size: .82rem; line-height: 1.45; cursor: pointer; }
.check-line input { flex: 0 0 auto; width: 22px; height: 22px; margin: 0; accent-color: var(--green-700); }

.bottom-nav {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(calc(100% - 20px), 820px);
  min-height: calc(72px + var(--safe-bottom));
  padding: 5px 7px var(--safe-bottom);
  transform: translateX(-50%);
  border: 1px solid rgba(13,42,64,.10);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  background: rgba(255,255,255,.95);
  box-shadow: 0 -10px 30px rgba(4,19,31,.14),0 0 0 5px rgba(255,255,255,.22);
  backdrop-filter: blur(18px);
}

.bottom-nav button {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  min-height: 58px;
  padding: 5px;
  border: 2px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: #435772;
  cursor: pointer;
  transition: transform 150ms ease, color 150ms ease, background 150ms ease, border-color 150ms ease;
}

.bottom-nav button:hover { border-color: #a8bce0; background: #f2f6ff; color: var(--navy-900); transform: translateY(-2px); }
.bottom-nav button span { font-size: 1.25rem; line-height: 1; }
.bottom-nav button small { font-size: .66rem; font-weight: 900; letter-spacing: .01em; }
.bottom-nav button[aria-current="page"] { border-color: var(--gold-500); background: linear-gradient(145deg, var(--navy-900), var(--green-800)); color: white; box-shadow: 0 5px 16px rgba(7,22,47,.22); }
.nav-align-logo { width: 25px; height: 28px; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(7,22,47,.22)); }
.nav-svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nav-svg-fill { fill: currentColor; stroke: none; }
.bottom-nav button[aria-current="page"] .nav-align-logo { filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,.2)); }

.welcome {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 100svh;
  padding: 58px 20px calc(112px + var(--safe-bottom));
  background:
    radial-gradient(circle at 50% 42%, rgba(43,210,106,.22), transparent 24rem),
    radial-gradient(circle at 12% 18%, rgba(0,169,232,.12), transparent 26rem),
    linear-gradient(145deg,#010805,#03170e 52%,#061d16);
  color: white;
}

.welcome::before {
  content: "";
  position: absolute;
  inset: -8%;
  background: url("./icons/align-compass.svg") center / min(82vh,760px) auto no-repeat;
  opacity: .07;
  filter: blur(1px) saturate(1.25);
  transform: scale(1.12);
}

.welcome::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center,transparent 42%,rgba(0,0,0,.34) 100%);
}

.welcome-field { position: absolute; left: 50%; top: 45%; width: min(84vw,800px); aspect-ratio: 1; transform: translate(-50%,-50%); border: 1px solid rgba(101,255,154,.13); border-radius: 50%; box-shadow: 0 0 0 100px rgba(101,255,154,.022),0 0 0 200px rgba(101,255,154,.014); }
.welcome-field span { position: absolute; border: 1px solid rgba(101,255,154,.11); border-radius: 50%; }
.welcome-field span:nth-child(1) { inset: 16%; }
.welcome-field span:nth-child(2) { inset: 32%; }
.welcome-field span:nth-child(3) { inset: 48%; }
.welcome-field i { position: absolute; left: 50%; top: 50%; width: 46%; height: 1px; transform-origin: left center; background: linear-gradient(90deg,rgba(108,255,159,.74),transparent); filter: drop-shadow(0 0 8px #6cff9f); animation: welcomeSweep 6.5s linear infinite; }
@keyframes welcomeSweep { to { transform: rotate(360deg); } }

.welcome-stage { position: relative; z-index: 2; display: grid; justify-items: center; width: min(100%,720px); text-align: center; }
.welcome-logo { width: clamp(235px,31vw,390px); height: auto; max-height: 47svh; object-fit: contain; filter: drop-shadow(0 22px 45px rgba(0,0,0,.48)) drop-shadow(0 0 24px rgba(84,255,143,.20)); }
.welcome-copy-group { margin-top: 6px; }
.welcome-copy-group .eyebrow { color: #9dffbe; font-size: .62rem; font-weight: 700; letter-spacing: .13em; }
.welcome-account-cta { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.welcome-account-cta .button { min-height: 44px; padding: 9px 18px; border-radius: 14px; font-size: .78rem; }
.welcome-account-cta .button-ghost { border-color: rgba(176,255,203,.42); background: rgba(0,14,9,.5); color: #effff5; }
.welcome-account-cta small { flex-basis: 100%; color: rgba(232,255,240,.72); font-size: .68rem; }
.welcome h1 { margin: 7px 0 0; color: white; font-family: Inter,ui-sans-serif,sans-serif; font-size: clamp(1.28rem,2.4vw,1.72rem); font-weight: 520; letter-spacing: -.015em; line-height: 1.2; }
.welcome-philosophy { margin: 8px 0 0; color: #bddbc7; font-size: .78rem; letter-spacing: .02em; }

.welcome-menu-button {
  position: fixed;
  z-index: 90;
  top: max(14px,env(safe-area-inset-top));
  right: max(16px,env(safe-area-inset-right));
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 6px 8px 6px 13px;
  border: 1px solid rgba(111,255,157,.46);
  border-radius: 16px;
  background: rgba(2,25,15,.86);
  color: #dfffea;
  box-shadow: 0 10px 26px rgba(0,0,0,.34),inset 0 1px rgba(255,255,255,.1);
  cursor: pointer;
  backdrop-filter: blur(15px);
}
.welcome-menu-copy { font-size: .72rem; font-weight: 650; letter-spacing: .03em; }
.welcome-menu-button:hover { border-color: #82ffa9; box-shadow: 0 12px 30px rgba(0,0,0,.38),0 0 0 4px rgba(111,255,157,.10); }

.test-drive-cta { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; }
.test-drive-cta .button { min-height: 46px; padding: 9px 16px; border-radius: 14px; font-size: .76rem; box-shadow: none; }
.test-drive-cta .button-ghost { border-color: rgba(176,255,203,.35); background: rgba(1,12,7,.45); color: #dfffea; }
.welcome-test-note { margin: 9px 0 0; color: #87ad94; font-size: .62rem; }

.welcome-toolbar {
  position: fixed;
  z-index: 80;
  left: 50%;
  bottom: max(12px,var(--safe-bottom));
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  width: min(calc(100% - 24px),820px);
  min-height: 72px;
  padding: 6px;
  transform: translateX(-50%);
  border: 1px solid rgba(111,255,157,.28);
  border-radius: 23px;
  background: rgba(1,18,10,.84);
  box-shadow: 0 14px 36px rgba(0,0,0,.36),inset 0 1px rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.welcome-toolbar button { display: grid; place-items: center; align-content: center; gap: 2px; min-height: 58px; padding: 5px; border: 1px solid transparent; border-radius: 16px; background: transparent; color: #bad5c3; cursor: pointer; }
.welcome-toolbar button:hover,.welcome-toolbar button:first-child { border-color: rgba(255,122,24,.54); background: rgba(255,122,24,.11); color: white; }
.welcome-toolbar button span { font-size: 1.15rem; }
.welcome-toolbar button small { font-size: .65rem; font-weight: 650; }
.welcome-toolbar .nav-align-logo { filter: drop-shadow(0 0 7px rgba(91,255,147,.32)); }

.welcome-menu-sheet .sheet-header > div > p:last-child { margin: 5px 0 0; color: var(--muted); font-size: .78rem; }
.welcome-account-actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
.welcome-account-actions > button { display: grid; grid-template-columns: 42px minmax(0,1fr); align-items: center; gap: 11px; min-height: 76px; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: white; color: var(--navy-900); cursor: pointer; text-align: left; }
.welcome-account-actions > button:hover { border-color: var(--green-600); box-shadow: var(--shadow-soft); }
.welcome-account-actions > button > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 13px; background: #e5f9eb; color: #0a6b35; font-weight: 800; }
.welcome-account-actions strong,.welcome-account-actions small { display: block; }
.welcome-account-actions strong { font-size: .82rem; }
.welcome-account-actions small { margin-top: 4px; color: var(--muted); font-size: .67rem; }
.welcome-preview-roles { margin-top: 12px; border-top: 1px solid var(--line); }
.welcome-preview-roles > summary { min-height: 48px; padding: 14px 2px; color: var(--muted); cursor: pointer; font-size: .72rem; }
.account-form { display: grid; gap: 14px; }

.role-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.role-grid button { display: grid; grid-template-columns: 40px 1fr; column-gap: 10px; min-height: 82px; padding: 13px; border: 1px solid var(--line); border-radius: 16px; background: white; cursor: pointer; text-align: left; }
.role-grid button:hover { border-color: var(--gold-500); box-shadow: var(--shadow-soft); }
.role-grid button > span { grid-row: 1 / span 2; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--green-100); color: var(--green-800); font-size: 1.1rem; }
.role-grid strong { align-self: end; color: var(--navy-900); }
.role-grid small { align-self: start; margin-top: 3px; color: var(--muted); }
.privacy-line { margin: 18px 0 0; color: var(--muted); font-size: .72rem; }

.sheet {
  width: min(100% - 20px, 620px);
  max-height: min(88vh, 820px);
  margin: auto auto 0;
  padding: 10px 18px calc(24px + var(--safe-bottom));
  border: 0;
  border-radius: 24px 24px 0 0;
  background: var(--cream-2);
  color: var(--ink);
  box-shadow: 0 -20px 60px rgba(4,19,31,.25);
}

.sheet::backdrop { background: rgba(4,19,31,.54); backdrop-filter: blur(3px); }
.sheet-handle { width: 44px; height: 5px; margin: 2px auto 10px; border-radius: 99px; background: #c5ccca; }
.sheet-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.sheet h2 { margin: 2px 0 0; color: var(--navy-900); font-size: 2rem; }
.sheet-footer { margin: 22px 0 0; color: var(--muted); font-family: Georgia, serif; text-align: center; }

.foundation-sheet { width: min(100% - 20px, 980px); max-height: min(92vh,900px); overflow-y: auto; }
.foundation-sheet .sheet-header { align-items: flex-start; }
.foundation-sheet .sheet-header > div > p:last-child { max-width: 650px; margin: 6px 0 0; color: var(--muted); font-size: .8rem; }
.foundation-menu-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 8px; }
.foundation-account-card { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 12px; padding: 12px 14px; border: 1px solid #b9cbe5; border-radius: 17px; background: linear-gradient(135deg,#f7faff,#eef5ff); color: var(--navy-900); }
.foundation-account-card > div { display: flex; align-items: center; gap: 10px; min-width: 0; }
.foundation-account-card > div > span { display: grid; place-items: center; flex: 0 0 38px; width: 38px; height: 38px; border-radius: 12px; background: #153e7f; color: white; font-weight: 900; }
.foundation-account-card p,.foundation-account-card small,.foundation-account-card strong { display: block; margin: 0; }
.foundation-account-card small { color: var(--muted); font-size: .65rem; text-transform: uppercase; letter-spacing: .06em; }
.foundation-account-card strong { overflow: hidden; margin-top: 2px; font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.foundation-account-card button { min-height: 40px; padding: 8px 12px; border: 1px solid #153e7f; border-radius: 12px; background: #153e7f; color: white; cursor: pointer; font-weight: 850; }
.foundation-account-card.is-signed-in > div > span { background: #0d8c68; }
.foundation-menu-grid > button { position: relative; display: grid; align-content: start; justify-items: start; min-height: 190px; padding: 14px; border: 1px solid #c8d7ed; border-radius: 19px; background: white; color: var(--navy-900); cursor: pointer; text-align: left; transition: transform 150ms ease,border-color 150ms ease,box-shadow 150ms ease; }
.foundation-menu-grid > button:hover { border-color: var(--gold-500); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.foundation-menu-grid > button > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: linear-gradient(145deg,#123c83,#07162f); color: white; font-family: Georgia,serif; font-size: 1.15rem; font-weight: 900; }
.foundation-menu-grid > button:nth-child(2) > span { background: #6d47ca; }
.foundation-menu-grid > button:nth-child(3) > span { background: #008abf; }
.foundation-menu-grid > button:nth-child(4) > span { background: #378a30; }
.foundation-menu-grid > button:nth-child(5) > span { background: var(--gold-500); }
.foundation-menu-grid strong { display: block; margin-top: 12px; font-size: .88rem; }
.foundation-menu-grid small { display: block; margin-top: 6px; color: var(--muted); font-size: .68rem; line-height: 1.4; }
.foundation-menu-grid em { display: block; margin-top: 10px; color: var(--green-700); font-size: .58rem; font-style: normal; font-weight: 900; line-height: 1.45; text-transform: uppercase; }
.foundation-menu-grid b { position: absolute; top: 14px; right: 14px; color: #8ba0bd; font-size: 1.25rem; }
.foundation-utility-heading { margin: 24px 0 10px; }
.foundation-utility-heading h3 { margin: 4px 0 0; color: var(--navy-900); font-family: Georgia,serif; }
.foundation-utility-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.foundation-destination-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
.foundation-destination-grid > button { min-height: 82px; margin: 0; border-color: rgba(14,67,83,.18); background: linear-gradient(145deg,#fbfdff,#f1f6f5); }
.foundation-destination-grid > button > span { background: linear-gradient(145deg,#0c326f,#07543d); color: white; }

.menu-list { display: grid; gap: 4px; }
.menu-list > button, .menu-list > .menu-link { display: grid; grid-template-columns: 42px 1fr 18px; align-items: center; gap: 10px; min-height: 66px; margin-bottom: 7px; padding: 9px 10px; border: 2px solid #d2def0; border-radius: 15px; background: white; color: inherit; cursor: pointer; text-align: left; text-decoration: none; transition: border-color 150ms ease, background 150ms ease, transform 150ms ease; }
.menu-list > button:hover, .menu-list > .menu-link:hover { border-color: var(--gold-500); background: #fff8ef; transform: translateX(2px); }
.menu-list > button > span, .menu-list > .menu-link > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--green-100); color: var(--green-800); font-weight: 900; }
.menu-list strong, .menu-list small { display: block; }
.menu-list small { margin-top: 4px; color: var(--muted); }
.menu-list b { color: var(--muted); font-size: 1.4rem; }

.detail-sheet { overflow-y: auto; }
.detail-sheet .setup-card + .setup-card { margin-top: 10px; }

.toast { position: fixed; z-index: 100; left: 50%; bottom: calc(92px + var(--safe-bottom)); width: max-content; max-width: min(90%, 520px); padding: 12px 15px; transform: translateX(-50%); border-radius: 12px; background: var(--navy-950); color: white; box-shadow: var(--shadow); font-size: .82rem; font-weight: 700; text-align: center; }

/* ALIGN v13 performance interface */
.cockpit-card {
  overflow: hidden;
  border-color: rgba(45,124,255,.34);
  background:
    linear-gradient(90deg, rgba(2,9,22,.98) 0%, rgba(2,9,22,.9) 40%, rgba(2,9,22,.48) 100%),
    url("./art/align-player-curve-v1.webp") right center / cover no-repeat,
    #07162f;
  color: white;
}
.cockpit-card h2, .cockpit-card .eyebrow { color: white; }
.cockpit-card .card-header p { color: #bed0f5; }
.player-overall { display: grid; place-items: center; flex: 0 0 84px; min-height: 84px; border: 1px solid rgba(255,122,24,.55); border-radius: 18px; background: rgba(2,9,22,.55); box-shadow: inset 0 0 28px rgba(255,122,24,.12), 0 0 22px rgba(255,122,24,.12); }
.player-overall small { color: #ffb969; font-size: .58rem; font-weight: 900; letter-spacing: .14em; }
.player-overall strong { color: white; font-size: 2rem; line-height: 1; }
.performance-hud { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; margin-top: 18px; }
.hud-dial { display: grid; place-items: center; gap: 7px; min-width: 0; padding: 13px 6px; border: 1px solid rgba(115,157,255,.28); border-radius: 18px; background: rgba(2,9,22,.48); color: white; cursor: pointer; }
.hud-dial > span { display: grid; place-items: center; width: min(11vw,96px); min-width: 64px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle,#07162f 57%,transparent 59%), conic-gradient(#ff7a18 calc(var(--value) * 1%),rgba(115,157,255,.18) 0); box-shadow: inset 0 0 18px rgba(45,124,255,.22), 0 0 18px rgba(45,124,255,.12); }
.hud-dial > span > b { font-size: clamp(1.35rem,3vw,2rem); line-height: 1; }
.hud-dial small { color: #bed0f5; font-size: .58rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.hud-dial em { color: #ffb969; font-size: .65rem; font-style: normal; font-weight: 850; text-transform: uppercase; }
.curve-summary { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; margin-top: 16px; }
.curve-summary > div, .curve-detail-grid > div, .monitor-proof > div { display: grid; gap: 4px; min-width: 0; padding: 13px; border: 1px solid rgba(115,157,255,.28); border-radius: 15px; background: rgba(2,9,22,.62); }
.curve-summary small, .monitor-proof small { color: #c7d8f7; font-size: .61rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.curve-summary strong { color: white; font-size: 1.55rem; }
.curve-summary span { color: #c7d8f7; font-size: .68rem; }
.curve-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; }
.curve-actions p { margin: 0; color: #e4edff; font-size: .74rem; line-height: 1.5; }
.curve-detail-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.curve-detail-grid > div { border-color: #c9d9f4; background: #f5f8ff; }
.curve-detail-grid small { color: var(--muted); font-size: .64rem; font-weight: 900; text-transform: uppercase; }
.curve-detail-grid strong { color: var(--navy-900); font-size: 1.55rem; }
.curve-detail-grid span { color: var(--muted); font-size: .7rem; }
.par-free-note { display: grid; grid-template-columns: 46px minmax(0,1fr); gap: 12px; align-items: center; padding: 15px; border: 1px solid #9eb8e7; border-radius: 16px; background: #eef4ff; }
.par-free-note > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--navy-900); color: #ffb969; font-size: 1.25rem; font-weight: 900; }
.par-free-note strong { color: var(--navy-900); }
.par-free-note p { margin: 4px 0 0; color: var(--muted); font-size: .76rem; line-height: 1.5; }
.credit-rail { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; padding: 12px 14px; border: 1px solid rgba(115,157,255,.24); border-radius: 14px; background: rgba(2,9,22,.42); }
.credit-rail span { display: grid; }
.credit-rail small { margin-top: 2px; color: #bed0f5; }
.ratings-panel { border-color: rgba(45,124,255,.3); }
.swing-rating-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin-top: 15px; }
.swing-rating-grid > button { display: grid; grid-template-columns: 46px minmax(0,1fr) 48px; align-items: center; gap: 11px; min-height: 92px; padding: 12px; border: 1px solid #c9d9f4; border-radius: 16px; background: linear-gradient(135deg,#f8fbff,#e8f0ff); color: var(--ink); cursor: pointer; text-align: left; box-shadow: var(--shadow-soft); }
.swing-rating-grid > button:hover { border-color: var(--green-600); transform: translateY(-1px); }
.swing-rating-grid .rating-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--navy-900); color: #ffb969; font-weight: 900; }
.swing-rating-grid strong, .swing-rating-grid small { display: block; }
.swing-rating-grid small { margin-top: 3px; color: var(--muted); }
.swing-rating-grid b { display: grid; place-items: center; width: 46px; height: 46px; border: 2px solid var(--gold-500); border-radius: 50%; background: white; color: var(--navy-900); font-size: 1.15rem; }
.swing-rating-grid i { grid-column: 2 / -1; color: var(--green-800); font-size: .62rem; font-style: normal; font-weight: 850; letter-spacing: .04em; }
.goal-next { display: grid; gap: 5px; margin-top: 10px; padding: 12px; border-left: 4px solid var(--gold-500); border-radius: 0 12px 12px 0; background: #f0f5ff; }
.goal-next > span { color: var(--green-800); font-size: .62rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.goal-next small { color: var(--gold-600); font-weight: 800; }
.goal-next .button { justify-self: start; margin-top: 4px; }
.quick-action { text-decoration: none; }
.player-portal-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; margin-top: 12px; }
.player-portal-grid > button { display: grid; grid-template-columns: 48px minmax(0,1fr); gap: 10px; min-height: 100px; padding: 13px; border: 2px solid #b8cbe9; border-radius: 16px; background: white; text-align: left; cursor: pointer; transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease; }
.player-portal-grid > button:hover { border-color: var(--gold-500); box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.player-portal-grid > button b { grid-column: 1 / -1; color: var(--green-800); font-size: .7rem; }
.portal-summary { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: 16px; background: #e8f0ff; }
.portal-summary p { margin: 3px 0 0; color: var(--muted); }
.portal-action { min-height: 112px; padding: 15px; border: 2px solid #b8cbe9; border-radius: 16px; background: white; text-align: left; cursor: pointer; transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease; }
.portal-action:hover { border-color: var(--gold-500); box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.portal-action strong, .portal-action small { display: block; }
.portal-action small { margin-top: 6px; color: var(--muted); line-height: 1.4; }
.portal-action-primary { border-color: var(--gold-500); background: linear-gradient(145deg, #fff1df, #ffffff); box-shadow: 0 7px 20px rgba(255,122,24,.14); }
.coach-access-card { align-self: start; }
.locker-account-action { display: flex; align-items: center; gap: 10px; }
.locker-account-action span,.locker-account-action small,.locker-account-action strong { display: block; }
.locker-account-action span { max-width: 240px; text-align: right; }
.locker-account-action small { color: var(--muted); font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; }
.locker-account-action strong { overflow: hidden; margin-top: 2px; color: var(--navy-900); font-size: .72rem; text-overflow: ellipsis; white-space: nowrap; }
.auth-choice-actions { align-items: stretch; }
.auth-choice-actions .button { min-width: 145px; }
.account-access-note { margin: 15px 0 0; padding: 13px 15px; border: 1px solid #9eb8e7; border-left: 5px solid #2d7cff; border-radius: 0 14px 14px 0; background: #eef4ff; color: var(--muted); font-size: .76rem; line-height: 1.5; }
.account-access-note strong { color: var(--navy-900); }
.account-create-intro,.account-create-success { display: grid; grid-template-columns: 54px minmax(0,1fr); align-items: start; gap: 14px; padding: 18px; border: 2px solid #69d3ff; border-radius: 18px; background: radial-gradient(circle at 100% 0,rgba(255,122,24,.28),transparent 13rem),linear-gradient(135deg,#07162f,#123b80); color: white; }
.account-create-intro > span,.account-create-success > span { display: grid; place-items: center; width: 52px; height: 52px; border: 2px solid #ffcf7d; border-radius: 16px; background: #ff7a18; color: #07162f; font-size: 1.6rem; font-weight: 950; }
.account-create-intro h3,.account-create-success h3 { margin: 4px 0; color: white; font-family: Georgia,"Times New Roman",serif; font-size: 1.6rem; }
.account-create-intro p:not(.eyebrow),.account-create-success p:not(.eyebrow) { margin: 5px 0 0; color: #dce7fb; line-height: 1.5; }
.account-create-intro .eyebrow,.account-create-success .eyebrow { color: #69d3ff; }
.coach-access-hero { background: linear-gradient(145deg, var(--navy-900), #163f58); color: white; }
.coach-access-hero h2, .coach-access-hero .eyebrow { color: white; }
.coach-access-hero .hero-meta span { background: rgba(255,255,255,.1); color: white; }
.coach-utility-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 13px; padding: 0 4px; }
.coach-utility-row p { margin: 0 0 3px; }
.coach-utility-row strong { color: var(--navy-900); font-size: 1.05rem; }
.coach-launchpad { overflow: hidden; border: 2px solid #1db56f; border-radius: 25px; background: rgba(248,253,250,.97); box-shadow: 0 20px 50px rgba(0,20,13,.3); }
.coach-launchpad-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 20px; background: radial-gradient(circle at 90% 15%,rgba(91,255,157,.2),transparent 17rem),linear-gradient(135deg,#011c14,#07573a); color: white; }
.coach-launchpad-head .eyebrow { color: #ffcf7d; }
.coach-launchpad-head h1 { margin: 3px 0 5px; color: white; font-family: Georgia,"Times New Roman",serif; font-size: clamp(2rem,4vw,2.85rem); line-height: .98; }
.coach-launchpad-head p:not(.eyebrow) { max-width: 660px; margin: 0; color: #d9e8ff; }
.coach-cycle-badge { display: grid; flex: 0 0 190px; gap: 2px; padding: 10px 14px; border: 2px solid #ffb34f; border-radius: 16px; background: linear-gradient(145deg,#ff7a18,#ffb34f); color: #07162f; box-shadow: 0 9px 24px rgba(0,0,0,.2); }
.coach-cycle-badge small,.coach-cycle-badge span { font-weight: 850; }
.coach-cycle-badge small { font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; }
.coach-cycle-badge strong { font-size: 1.05rem; }
.coach-cycle-badge span { font-size: .72rem; }
.coach-cycle-track { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; padding: 10px 14px 0; background: #eef4ff; }
.coach-cycle-track > span { display: grid; grid-template-columns: 32px minmax(0,1fr); align-items: center; gap: 0 8px; min-height: 50px; padding: 7px 9px; border: 2px solid #b8cbe9; border-radius: 13px; background: white; color: var(--navy-900); }
.coach-cycle-track > span > b { grid-row: 1 / 3; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 10px; background: #dbe7fb; color: #153e7f; }
.coach-cycle-track > span strong,.coach-cycle-track > span small { display: block; }
.coach-cycle-track > span small { color: var(--muted); }
.coach-cycle-track > span.is-current { border-color: #ff7a18; background: #fff4e7; box-shadow: 0 7px 18px rgba(255,122,24,.16); }
.coach-cycle-track > span.is-current > b { background: #ff7a18; color: #07162f; }
.coach-cycle-message { margin: 0; padding: 7px 16px 10px; background: #eef4ff; color: #3f567d; font-size: .74rem; }
.coach-cycle-message strong { color: var(--navy-900); }
.coach-cycle-footer { border-top: 1px solid #ccd9ed; background: #eef4ff; }
.coach-cycle-footer .coach-cycle-message { padding-top: 11px; padding-bottom: 4px; }
.coach-cycle-footer .coach-cycle-track { padding-bottom: 12px; }
.coach-flow-steps { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 8px; padding: 10px 16px; border-top: 1px solid #b8dcc9; border-bottom: 1px solid #b8dcc9; background: white; }
.coach-flow-steps > span { display: flex; align-items: center; gap: 8px; min-width: 0; color: #7789a6; }
.coach-flow-steps > span:not(:last-child)::after { content: ""; flex: 1; height: 3px; margin-left: 5px; border-radius: 99px; background: #dbe4f1; }
.coach-flow-steps b { display: grid; place-items: center; flex: 0 0 28px; width: 28px; height: 28px; border: 2px solid #aebdd2; border-radius: 50%; background: white; }
.coach-flow-steps small { font-weight: 900; }
.coach-flow-steps .is-complete b { border-color: #0d8c68; background: #0d8c68; color: white; }
.coach-flow-steps .is-active { color: var(--navy-900); }
.coach-flow-steps .is-active b { border-color: #ff7a18; background: #ff7a18; color: #07162f; box-shadow: 0 0 0 4px rgba(255,122,24,.15); }
.coach-flow-panel { padding: 16px 18px 18px; }
.coach-flow-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.coach-flow-heading > span { display: grid; place-items: center; flex: 0 0 42px; width: 42px; height: 42px; border-radius: 14px; background: linear-gradient(135deg,#0a7b51,#31d47f); color: white; font-size: 1rem; font-weight: 950; box-shadow: 0 8px 18px rgba(9,110,72,.24); }
.coach-flow-heading h2 { margin: 1px 0 2px; font-family: Georgia,"Times New Roman",serif; font-size: clamp(1.35rem,2.5vw,1.85rem); }
.coach-flow-heading p { margin: 0; color: var(--muted); }
.coach-flow-heading .eyebrow { color: #1457d9; }
.coach-roster-count { margin-left: auto; padding: 9px 12px; border-radius: 999px; background: #dce7f7; color: #153e7f; font-size: .72rem; white-space: nowrap; }
.coach-program-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.coach-program-grid button { display: grid; grid-template-columns: 64px minmax(0,1fr) auto; grid-template-rows: auto auto; align-items: center; gap: 2px 14px; min-height: 132px; padding: 20px; border: 3px solid #8fcbb0; border-radius: 22px; background: linear-gradient(145deg,#f7fff9,#e4f7ed); color: #052f22; cursor: pointer; text-align: left; box-shadow: 0 10px 24px rgba(4,80,52,.1); }
.coach-program-grid button:hover { transform: translateY(-3px); border-color: #16a566; box-shadow: 0 16px 30px rgba(4,80,52,.2); }
.coach-program-grid button > span { grid-row: 1 / 3; display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: radial-gradient(circle,#0a8455,#013323); color: #baffd3; font-family: Georgia,serif; font-size: 1.65rem; box-shadow: inset 0 0 0 2px #58ed98,0 0 22px rgba(39,225,126,.24); }
.coach-program-grid button strong { font-family: Georgia,serif; font-size: 1.7rem; }
.coach-program-grid button small { color: #426756; }
.coach-program-grid button b { grid-column: 3; grid-row: 1 / 3; color: #08734c; font-size: .78rem; }
.coach-day-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 10px; }
.coach-day-grid button { display: grid; justify-items: start; min-height: 100px; padding: 12px 14px; border: 3px solid #b6c9e8; border-radius: 18px; background: white; color: var(--navy-900); cursor: pointer; text-align: left; transition: transform 150ms ease,border-color 150ms ease,box-shadow 150ms ease; }
.coach-day-grid button:hover { transform: translateY(-3px); border-color: #2d7cff; box-shadow: 0 12px 24px rgba(45,124,255,.18); }
.coach-day-grid button:focus-visible,.coach-class-grid button:focus-visible,.coach-student-actions button:focus-visible,.coach-back-button:focus-visible { outline: 4px solid #69d3ff; outline-offset: 3px; }
.coach-day-grid button > span { display: inline-grid; place-items: center; min-width: 43px; min-height: 29px; margin-bottom: 8px; border-radius: 9px; background: #153e7f; color: white; font-size: .66rem; font-weight: 950; letter-spacing: .08em; }
.coach-day-grid button strong { font-size: 1rem; }
.coach-day-grid button small { margin-top: 4px; color: var(--muted); font-weight: 750; }
.coach-day-grid button.is-today { border-color: #ff7a18; background: linear-gradient(145deg,#fff2e2,#fff); box-shadow: 0 9px 22px rgba(255,122,24,.15); }
.coach-day-grid button.is-today > span { background: #ff7a18; color: #07162f; }
.coach-day-grid button.is-today small { color: #a14300; }
.coach-day-grid button.is-empty { opacity: .45; cursor: not-allowed; }
.coach-class-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.coach-class-grid button { display: grid; grid-template-columns: minmax(0,1fr) auto; min-height: 134px; padding: 18px; border: 3px solid #b6c9e8; border-radius: 18px; background: white; color: var(--navy-900); cursor: pointer; text-align: left; }
.coach-class-grid button:hover { border-color: #7040dc; background: #f5f0ff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(112,64,220,.15); }
.coach-class-grid button > span { grid-column: 1 / -1; color: #1457d9; font-size: .72rem; font-weight: 950; letter-spacing: .05em; text-transform: uppercase; }
.coach-class-grid button strong { margin-top: 6px; font-size: 1.25rem; }
.coach-class-grid button small { grid-column: 1; margin-top: 5px; color: var(--muted); }
.coach-class-grid button b { grid-column: 2; grid-row: 2 / 4; align-self: center; color: #7040dc; font-size: .76rem; }
.coach-student-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.coach-student-grid > article { overflow: hidden; border: 2px solid #b6c9e8; border-radius: 20px; background: white; box-shadow: 0 8px 22px rgba(7,22,47,.08); }
.coach-student-identity { display: flex; align-items: center; gap: 12px; padding: 16px; }
.coach-student-identity strong,.coach-student-identity small { display: block; }
.coach-student-identity strong { color: var(--navy-900); font-size: 1.06rem; }
.coach-student-identity small { margin-top: 3px; color: var(--muted); }
.coach-student-actions { display: grid; grid-template-columns: 1fr 1.15fr; gap: 8px; padding: 0 12px 12px; }
.coach-student-actions button { display: grid; grid-template-columns: 36px minmax(0,1fr); align-items: center; min-height: 76px; padding: 10px; border: 2px solid #809bc7; border-radius: 15px; background: #eef4ff; color: var(--navy-900); cursor: pointer; text-align: left; }
.coach-student-actions button:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(7,22,47,.14); }
.coach-student-actions button > span { grid-row: 1 / 3; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: #153e7f; color: white; font-weight: 950; }
.coach-student-actions button strong,.coach-student-actions button small { display: block; }
.coach-student-actions button small { color: #536783; font-size: .65rem; }
.coach-student-actions .student-assessment-button { border-color: #ff7a18; background: linear-gradient(135deg,#ff7a18,#ffb34f); color: #07162f; box-shadow: 0 7px 16px rgba(255,122,24,.22); }
.coach-student-actions .student-assessment-button > span { background: #07162f; color: #ffcf7d; }
.coach-student-actions .student-assessment-button small { color: #5e2b00; }
.coach-back-button { min-height: 48px; margin-top: 18px; padding: 9px 13px; border: 2px solid #93a9ca; border-radius: 13px; background: white; color: #153e7f; cursor: pointer; font-weight: 900; }
.coach-back-button:hover { border-color: #2d7cff; background: #eef4ff; }
.coach-philosophy-strip { display: flex; align-items: center; gap: 15px; padding: 14px 18px; border: 2px solid #d19a26; border-radius: 18px; background: linear-gradient(90deg,#fff0be,#fff8e6); color: var(--navy-900); }
.coach-philosophy-strip > strong { font-family: Georgia,"Times New Roman",serif; font-size: 1.5rem; letter-spacing: .08em; }
.coach-philosophy-strip > span { font-weight: 900; }
.coach-philosophy-strip > small { margin-left: auto; color: #5b5037; text-align: right; }
.align-coach-way { overflow: hidden; background: radial-gradient(circle at 94% 8%, rgba(0,210,255,.25), transparent 15rem), linear-gradient(135deg,#fff1c9,#ffe0a7 55%,#d9f9ff); }
.align-way-flow { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 8px; margin-top: 18px; }
.align-way-flow span { position: relative; display: grid; place-items: center; min-height: 48px; padding: 8px; border: 2px solid rgba(2,9,22,.78); border-radius: 13px; background: var(--navy-900); color: white; font-size: .72rem; font-weight: 900; letter-spacing: .02em; text-align: center; box-shadow: 0 6px 0 rgba(122,69,255,.18); }
.align-way-flow span:nth-child(2) { background: #006a78; }
.align-way-flow span:nth-child(3) { background: #6840cf; }
.align-way-flow span:nth-child(4) { background: #08704f; }
.align-way-flow span:nth-child(5) { background: #b14c00; }
.form-status { min-height: 1.25rem; margin: 12px 0 0; color: var(--muted); font-size: .76rem; font-weight: 700; }
.form-status-error { color: #a12a24; }
.form-status-success { color: var(--green-800); }
.empty-state { padding: 20px; border: 1px dashed var(--line); border-radius: 16px; background: var(--cream); text-align: center; }
.empty-state p { margin: 6px 0 0; color: var(--muted); }
.assessment-form { display: grid; gap: 16px; }
.assessment-intro { display: flex; gap: 13px; align-items: center; padding: 14px; border-radius: 16px; background: #e8f0ff; }
.assessment-intro p { margin: 4px 0 0; color: var(--muted); line-height: 1.45; }
.assessment-recipient-status { display: grid; align-content: center; gap: 4px; min-height: 96px; padding: 14px 16px; border: 2px solid #afd5bd; border-radius: 16px; background: #edf8f0; }
.assessment-recipient-status small { color: #176b3d; font-weight: 950; letter-spacing: .08em; }
.assessment-recipient-status strong { color: var(--navy-900); }
.assessment-recipient-status span { color: var(--muted); font-size: .86rem; line-height: 1.4; }
.assessment-recipient-status.is-missing { border-color: #edbd73; background: #fff6e8; }
.assessment-recipient-status.is-missing small { color: #9a4d00; }
.assessment-section { margin: 0; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: #fffdf8; }
.assessment-section legend { padding: 0 8px; color: var(--navy-900); font-family: Georgia, "Times New Roman", serif; font-size: 1.04rem; font-weight: 900; }
.assessment-section > p { margin: 0 0 13px; color: var(--muted); font-size: .75rem; }
.assessment-score-field small, .assessment-form .field > small { color: var(--muted); font-size: .68rem; line-height: 1.35; }
.optional { color: var(--muted); font-size: .67rem; font-weight: 600; }
.ten-ball-scorecard { overflow: hidden; border: 2px solid #28ce7c; border-radius: 22px; background: linear-gradient(145deg,#011911,#06432d); color: white; box-shadow: 0 16px 36px rgba(0,30,19,.28); }
.scorecard-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px; }
.scorecard-head h3 { margin: 3px 0 5px; color: white; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.scorecard-head p { margin: 0; color: #d8e6ff; font-size: .78rem; line-height: 1.45; }
.scorecard-head .eyebrow { color: var(--gold-300); }
.scorecard-total { display: flex; align-items: baseline; flex: 0 0 auto; min-width: 112px; padding: 12px 14px; border: 2px solid var(--gold-500); border-radius: 18px; background: rgba(255,122,24,.13); }
.scorecard-total strong { color: white; font-size: 2.45rem; line-height: 1; }
.scorecard-total span { color: var(--gold-300); font-size: .78rem; font-weight: 900; }
.scorecard-tool-bar { display: grid; grid-template-columns: minmax(0,1fr) minmax(220px,320px); align-items: stretch; gap: 12px; padding: 0 20px 16px; }
.voice-score-bar { display: grid; grid-template-columns: minmax(220px,360px) minmax(0,1fr); align-items: center; gap: 14px; padding: 0; }
.voice-score-bar button { display: grid; grid-template-columns: 36px minmax(0,1fr); align-items: center; min-height: 66px; padding: 10px 14px; border: 2px solid #5effa3; border-radius: 16px; background: rgba(31,208,113,.15); color: white; cursor: pointer; text-align: left; box-shadow: 0 0 20px rgba(61,255,145,.12); }
.voice-score-bar button > span { grid-row: 1 / 3; color: #5effa3; font-size: 1.4rem; text-shadow: 0 0 12px #5effa3; }
.voice-score-bar button strong,.voice-score-bar button small { display: block; }
.voice-score-bar button small,.voice-score-bar p { color: #b8dac8; font-size: .7rem; line-height: 1.4; }
.voice-score-bar button[aria-pressed="true"] { background: #0d8d59; box-shadow: 0 0 0 4px rgba(94,255,163,.17),0 0 34px rgba(94,255,163,.25); }
.scorecard-camera-button { position: relative; display: grid; grid-template-columns: 36px minmax(0,1fr); align-items: center; min-height: 66px; padding: 10px 14px; border: 2px solid #78e9b1; border-radius: 16px; background: rgba(255,255,255,.08); color: white; cursor: pointer; text-align: left; }
.scorecard-camera-button input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.scorecard-camera-button > span { grid-row: 1 / 3; color: #78e9b1; font-size: 1.45rem; }
.scorecard-camera-button strong,.scorecard-camera-button small { display: block; }
.scorecard-camera-button small { color: #b8dac8; font-size: .7rem; }
.scorecard-camera-button:focus-within { outline: 3px solid var(--gold-500); outline-offset: 3px; }
.scorecard-photo-preview { display: grid; grid-template-columns: 90px minmax(0,1fr); align-items: center; gap: 12px; margin: 0 20px 16px; padding: 10px; border: 1px solid rgba(120,233,177,.5); border-radius: 15px; background: rgba(0,0,0,.2); }
.scorecard-photo-preview img { width: 90px; height: 68px; border-radius: 10px; object-fit: cover; background: #fff; }
.scorecard-photo-preview strong,.scorecard-photo-preview small { display: block; }
.scorecard-photo-preview small { color: #b8dac8; font-size: .68rem; }
.scorecard-photo-preview button { margin-top: 6px; padding: 0; border: 0; background: transparent; color: #ffbd77; cursor: pointer; font-size: .7rem; font-weight: 850; text-decoration: underline; }

@media (max-width: 760px) {
  .coach-program-grid { grid-template-columns: 1fr; }
  .coach-flow-steps { grid-template-columns: repeat(5,1fr); overflow-x: auto; }
  .coach-flow-steps small { font-size: .58rem; }
  .scorecard-tool-bar,.voice-score-bar { grid-template-columns: 1fr; }
  .scorecard-tool-bar { padding-inline: 12px; }
  .voice-score-bar { gap: 7px; }
  .score-combo-head,.score-combo-row { grid-template-columns: minmax(116px,1.2fr) repeat(3,minmax(52px,.55fr)); gap: 5px; }
  .score-combo-row > strong { padding: 6px 7px; font-size: .62rem; }
  .score-combo-row button { min-height: 54px; padding: 4px 2px; }
  .score-combo-row button small { font-size: .52rem; }
}
.score-rules { border-top: 1px solid rgba(255,255,255,.12); background: rgba(0,0,0,.12); }
.score-rules summary { min-height: 48px; padding: 14px 20px; color: #dff9ea; cursor: pointer; font-weight: 850; }
.score-key { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 20px 16px; }
.score-key span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.08); color: #e8f0ff; font-size: .7rem; font-weight: 800; }
.score-key b { color: var(--gold-300); }
.win-win-rule { margin: 0; padding: 0 20px 18px; color: #e7f1ff; font-size: .75rem; line-height: 1.45; }
.win-win-rule strong { color: var(--gold-300); }
.score-ball-tabs { display: grid; grid-template-columns: repeat(10,minmax(42px,1fr)); gap: 6px; overflow-x: auto; padding: 12px 16px; border-top: 1px solid rgba(255,255,255,.14); background: rgba(2,9,22,.38); }
.score-ball-tabs button { min-width: 42px; min-height: 44px; border: 2px solid #647da8; border-radius: 12px; background: #183762; color: white; cursor: pointer; font-weight: 950; }
.score-ball-tabs button:hover { border-color: #69d3ff; }
.score-ball-tabs button[aria-current="step"] { border-color: #ffb34f; background: #ff7a18; color: #07162f; box-shadow: 0 0 0 3px rgba(255,122,24,.18); }
.score-shot-deck { padding: 16px; background: #f4f7fc; color: var(--ink); }
.score-shot-card { padding: 16px; border: 2px solid #b8cbe9; border-radius: 20px; background: white; box-shadow: 0 10px 26px rgba(7,22,47,.1); }
.score-shot-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 13px; }
.score-shot-heading p { margin: 0; color: #1457d9; font-size: .68rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.score-shot-heading h4 { margin: 2px 0 0; color: var(--navy-900); font-family: Georgia,"Times New Roman",serif; font-size: 1.45rem; }
.score-hole-button { display: grid; grid-template-columns: 52px minmax(0,1fr); align-items: center; width: 100%; min-height: 78px; padding: 11px 14px; border: 3px solid #ff7a18; border-radius: 17px; background: linear-gradient(135deg,#fff1df,#fff); color: var(--navy-900); cursor: pointer; text-align: left; box-shadow: 0 7px 18px rgba(255,122,24,.13); }
.score-hole-button > span { grid-row: 1 / 3; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: #07162f; color: #ffcf7d; font-size: 1.1rem; font-weight: 950; }
.score-hole-button strong,.score-hole-button small { display: block; }
.score-hole-button strong { font-size: 1.1rem; }
.score-hole-button small { color: var(--muted); }
.score-hole-button[aria-pressed="true"] { background: linear-gradient(135deg,#ff7a18,#ffb34f); color: #07162f; box-shadow: 0 10px 24px rgba(255,122,24,.28); }
.score-choice-section { margin-top: 14px; }
.score-choice-section > p { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 0 0 8px; color: var(--navy-900); }
.score-choice-section > p > span { color: var(--muted); font-size: .7rem; }
.score-proximity-buttons { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
.score-line-buttons { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
.score-proximity-buttons button,.score-line-buttons button { display: grid; grid-template-columns: 34px minmax(0,1fr); align-items: center; gap: 8px; min-height: 66px; padding: 9px; border: 2px solid #a8bce0; border-radius: 14px; background: #f4f8ff; color: var(--navy-900); cursor: pointer; text-align: left; }
.score-proximity-buttons button:hover,.score-line-buttons button:hover { border-color: #2d7cff; transform: translateY(-1px); }
.score-proximity-buttons button > span,.score-line-buttons button > span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; background: #d9e6fa; color: #153e7f; font-weight: 950; }
.score-proximity-buttons button strong,.score-line-buttons button strong { font-size: .7rem; line-height: 1.3; }
.score-proximity-buttons button[aria-pressed="true"],.score-line-buttons button[aria-pressed="true"] { border-color: #7040dc; background: #eee8ff; box-shadow: inset 0 0 0 1px #7040dc; }
.score-proximity-buttons button[aria-pressed="true"] > span,.score-line-buttons button[aria-pressed="true"] > span { background: #7040dc; color: white; }
.score-shot-card.is-holed .score-choice-section { opacity: .5; }
.score-combo-head,.score-combo-row { display: grid; grid-template-columns: minmax(170px,1.35fr) repeat(3,minmax(70px,.55fr)); gap: 7px; align-items: stretch; }
.score-combo-head { padding: 0 4px 6px; color: #496b5c; font-size: .67rem; text-align: center; }
.score-combo-head span { text-align: left; }
.score-combo-grid { display: grid; gap: 7px; }
.score-combo-row > strong { display: flex; align-items: center; padding: 7px 10px; border-radius: 12px; background: #ecf6f0; color: #173f30; font-size: .72rem; line-height: 1.25; }
.score-combo-row button { display: grid; place-items: center; min-height: 58px; padding: 6px; border: 2px solid #9bbfac; border-radius: 12px; background: #f7fcf9; color: #0b3828; cursor: pointer; }
.score-combo-row button b { font-size: 1.15rem; }
.score-combo-row button small { font-size: .58rem; }
.score-combo-row button:hover { border-color: #16a566; transform: translateY(-1px); }
.score-combo-row button[aria-pressed="true"] { border-color: #0f9d60; background: #d8f6e6; box-shadow: inset 0 0 0 1px #0f9d60,0 5px 14px rgba(12,122,75,.14); }
.score-card-nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; padding: 12px 16px 16px; background: #f4f7fc; color: var(--navy-900); }
.score-card-nav button { min-height: 48px; padding: 9px 13px; border: 2px solid #809bc7; border-radius: 13px; background: white; color: #153e7f; cursor: pointer; font-weight: 900; }
.score-card-nav button:last-child { justify-self: end; border-color: #ff7a18; background: #ff7a18; color: #07162f; }
.score-card-nav button:disabled { opacity: .48; cursor: not-allowed; }
.score-card-nav strong { font-size: .76rem; text-align: center; }
.scorecard-table-wrap { overflow-x: auto; background: white; }
.scorecard-table { width: 100%; min-width: 700px; border-collapse: separate; border-spacing: 0; color: var(--ink); }
.scorecard-table th, .scorecard-table td { padding: 9px 10px; border-bottom: 1px solid #dbe5f3; text-align: left; }
.scorecard-table thead th { background: #e9f1ff; color: var(--navy-900); font-size: .7rem; letter-spacing: .04em; text-transform: uppercase; }
.scorecard-table tbody th { width: 58px; color: var(--navy-900); font-size: 1rem; text-align: center; }
.scorecard-table tbody tr:nth-child(even) { background: #f8faff; }
.scorecard-table tbody tr.is-holed { background: #fff1df; }
.scorecard-table select { width: 100%; min-height: 46px; padding: 8px 10px; border: 2px solid #9fb5d5; border-radius: 11px; background: white; color: var(--ink); font-size: .76rem; }
.scorecard-table select:disabled { border-color: #d6dfec; background: #edf1f7; color: #66758b; opacity: .72; }
.score-hole { display: inline-flex; align-items: center; gap: 7px; min-height: 46px; padding: 7px 9px; border: 2px solid #b7c8e1; border-radius: 11px; background: white; color: var(--navy-900); cursor: pointer; font-size: .72rem; font-weight: 900; }
.score-hole input { width: 22px; height: 22px; margin: 0; accent-color: var(--gold-500); }
.is-holed .score-hole { border-color: var(--gold-500); background: #fff8ef; }
.shot-points { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--navy-900); color: white; font-size: 1.15rem; font-weight: 950; box-shadow: inset 0 0 0 3px var(--cyan-500); }
.is-holed .shot-points { background: var(--gold-500); color: var(--navy-950); box-shadow: inset 0 0 0 3px #ffd09a; }
.scorecard-summary { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 1px; background: rgba(255,255,255,.14); }
.scorecard-summary > div { display: grid; gap: 3px; min-height: 74px; padding: 14px; background: rgba(7,22,47,.8); text-align: center; }
.scorecard-summary small { color: #bfcfee; font-size: .66rem; font-weight: 800; }
.scorecard-summary strong { color: white; font-size: 1.15rem; }
.assessment-technology { border: 2px solid #aec5e9; border-radius: 18px; background: #f4f8ff; }
.assessment-technology summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 54px; padding: 13px 16px; color: var(--navy-900); cursor: pointer; font-weight: 900; }
.assessment-technology summary small { color: var(--muted); font-size: .7rem; font-weight: 700; }
.assessment-technology[open] summary { border-bottom: 1px solid #c9d7eb; }
.assessment-technology > .form-grid { padding: 16px; }
.assessment-technology > p { margin: 0; padding: 0 16px 16px; color: var(--muted); font-size: .72rem; line-height: 1.45; }
.assessment-conversation { border-color: #b9d89c; background: linear-gradient(145deg,#f4faee,#fff); }
.align-philosophy-line { margin: 0; padding: 15px 17px; border-left: 5px solid var(--gold-500); border-radius: 0 16px 16px 0; background: #eef4ff; color: var(--navy-800); font-size: .77rem; line-height: 1.55; }
.align-philosophy-line strong { color: var(--green-800); }
.assessment-success { display: flex; gap: 15px; align-items: flex-start; padding: 18px; border-radius: 18px; background: #edf8f0; border: 1px solid #b8ddc1; }
.assessment-success > span { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%; background: var(--green-800); color: white; font-size: 1.3rem; font-weight: 900; }
.assessment-success h3 { margin: 0 0 5px; }
.assessment-success p { margin: 5px 0; color: var(--muted); }
.assessment-success small { display: block; margin-top: 10px; color: var(--muted); overflow-wrap: anywhere; }
.rating-explainer { display: grid; justify-items: center; padding: 26px; border-radius: 20px; background: radial-gradient(circle at 50% 0,#17458f,#07162f); color: white; text-align: center; }
.rating-explainer strong { font-size: 4rem; line-height: 1; }
.rating-explainer span { margin-top: 5px; color: #ffb969; font-weight: 900; text-transform: uppercase; }
.rating-explainer p { max-width: 38rem; line-height: 1.55; }
.launch-monitor-card { border-color: rgba(45,124,255,.38); background: linear-gradient(135deg,#fff,#edf4ff); }
.monitor-proof { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin: 15px 0; }
.monitor-proof > div { border-color: #c9d9f4; background: white; }
.monitor-proof small { color: var(--muted); }
.monitor-proof strong { color: var(--navy-900); }
.monitor-proof span { color: var(--muted); font-size: .72rem; line-height: 1.4; }
.monitor-import-intro, .monitor-result { display: grid; grid-template-columns: 56px minmax(0,1fr); gap: 14px; align-items: center; padding: 18px; border-radius: 18px; background: radial-gradient(circle at 0 0,#194a9b,#07162f 70%); color: white; }
.monitor-import-intro > span, .monitor-result > span { display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid rgba(255,185,105,.55); border-radius: 17px; color: #ffb969; font-size: 1.6rem; font-weight: 900; }
.monitor-import-intro h3, .monitor-result h3 { margin: 2px 0; color: white; }
.monitor-import-intro p, .monitor-result p { margin: 3px 0 0; color: #dce7fb; line-height: 1.45; }
.provider-route-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.provider-route-grid article { padding: 15px; border: 1px solid #c9d9f4; border-radius: 16px; background: #f5f8ff; }
.provider-route-grid small, .provider-route-grid strong { display: block; }
.provider-route-grid small { color: var(--green-800); font-size: .62rem; font-weight: 900; text-transform: uppercase; }
.provider-route-grid strong { margin-top: 5px; color: var(--navy-900); }
.provider-route-grid p { margin: 5px 0 0; color: var(--muted); font-size: .74rem; line-height: 1.45; }

/* Public 10-ball acquisition loop */
.quick-challenge-promo {
  display: grid;
  grid-template-columns: 160px minmax(0,1fr);
  align-items: center;
  gap: 22px;
  overflow: hidden;
  border-color: rgba(45,124,255,.42);
  background:
    radial-gradient(circle at 12% 50%,rgba(45,124,255,.34),transparent 14rem),
    linear-gradient(135deg,#020916,#0a2450 62%,#123b80);
  color: white;
}
.quick-challenge-promo h2, .quick-challenge-promo .eyebrow { color: white; }
.quick-challenge-promo p:not(.eyebrow) { max-width: 52rem; color: #cfddf8; line-height: 1.55; }
.quick-challenge-promo > div:last-child > small { display: block; margin-top: 10px; color: #9fb6df; font-weight: 750; }
.challenge-orbit { position: relative; display: grid; place-items: center; align-content: center; width: 146px; aspect-ratio: 1; border: 1px solid rgba(115,157,255,.42); border-radius: 50%; background: radial-gradient(circle,#07162f 0 44%,transparent 45%),conic-gradient(from 220deg,#2d7cff,#69d3ff,#ff7a18,#2d7cff); box-shadow: 0 0 42px rgba(45,124,255,.32),inset 0 0 24px #020916; }
.challenge-orbit::before,.challenge-orbit::after { content:""; position:absolute; border:1px solid rgba(115,157,255,.28); border-radius:50%; }
.challenge-orbit::before { inset:12px; }
.challenge-orbit::after { inset:27px; }
.challenge-orbit i { position:absolute; left:50%; top:50%; width:45%; height:2px; transform:rotate(-35deg); transform-origin:left center; background:linear-gradient(90deg,#ffb969,transparent); box-shadow:0 0 13px #ff7a18; }
.challenge-orbit b { position:relative; z-index:1; color:white; font-size:2.15rem; line-height:1; }
.challenge-orbit span { position:relative; z-index:1; margin-top:4px; color:#ffb969; font-size:.56rem; font-weight:900; letter-spacing:.14em; }

.challenge-arena { display:grid; grid-template-columns:minmax(0,1.2fr) minmax(230px,.55fr); align-items:center; gap:24px; min-height:330px; padding:clamp(22px,5vw,48px); overflow:hidden; border:1px solid rgba(45,124,255,.28); border-radius:var(--radius-xl); background:linear-gradient(90deg,rgba(2,9,22,.98),rgba(2,9,22,.82) 48%,rgba(2,9,22,.42)),url("./art/align-player-curve-v1.webp") right center/cover no-repeat,#07162f; color:white; box-shadow:var(--shadow); }
.challenge-copy h2 { max-width:680px; margin:8px 0 12px; color:white; font-family:Georgia,"Times New Roman",serif; font-size:clamp(2.3rem,6vw,4.8rem); line-height:.95; }
.challenge-copy > p:not(.eyebrow) { max-width:650px; color:#c7d8f7; line-height:1.6; }
.challenge-principles { display:flex; flex-wrap:wrap; gap:8px; margin-top:22px; }
.challenge-principles span { display:flex; align-items:center; gap:7px; padding:8px 10px; border:1px solid rgba(115,157,255,.28); border-radius:999px; background:rgba(2,9,22,.5); color:#e6eeff; font-size:.72rem; font-weight:800; }
.challenge-principles b { display:grid; place-items:center; width:20px; height:20px; border-radius:50%; background:#ff7a18; color:#07162f; font-size:.65rem; }
.challenge-radar { position:relative; display:grid; place-items:center; align-content:center; justify-self:center; width:min(30vw,240px); min-width:210px; aspect-ratio:1; border:1px solid rgba(115,157,255,.5); border-radius:50%; background:radial-gradient(circle,rgba(7,22,47,.96) 0 28%,transparent 29%),repeating-radial-gradient(circle,transparent 0 17%,rgba(115,157,255,.16) 18% 18.5%),conic-gradient(from 210deg,rgba(45,124,255,.12),rgba(105,211,255,.5),rgba(255,122,24,.76),rgba(45,124,255,.12)); box-shadow:0 0 70px rgba(45,124,255,.25),inset 0 0 34px rgba(2,9,22,.72); }
.challenge-radar i:first-child { position:absolute; left:50%; top:50%; width:48%; height:2px; transform:rotate(-48deg); transform-origin:left center; background:linear-gradient(90deg,#ff7a18,transparent); box-shadow:0 0 18px #ff7a18; }
.challenge-radar i:nth-child(2) { position:absolute; width:9px; height:9px; translate:50px -52px; border-radius:50%; background:#69d3ff; box-shadow:0 0 18px #69d3ff; }
.challenge-radar b { position:relative; z-index:1; color:white; font-size:3.25rem; line-height:1; }
.challenge-radar span { position:relative; z-index:1; margin-top:4px; color:#ffb969; font-size:.62rem; font-weight:900; letter-spacing:.16em; }
.challenge-form { border-color:#b8cff2; }
.challenge-form .field small { margin-top:5px; color:var(--muted); font-size:.68rem; line-height:1.35; }
.challenge-result { display:grid; grid-template-columns:180px minmax(0,1fr); align-items:center; gap:25px; min-height:280px; padding:clamp(24px,5vw,48px); overflow:hidden; border:1px solid rgba(45,124,255,.36); border-radius:var(--radius-xl); background:radial-gradient(circle at 10% 50%,rgba(45,124,255,.38),transparent 16rem),linear-gradient(135deg,#020916,#0b2b60); color:white; box-shadow:var(--shadow); }
.challenge-result h2 { margin:5px 0 8px; color:white; font-family:Georgia,"Times New Roman",serif; font-size:clamp(2.6rem,7vw,5.2rem); line-height:.95; }
.challenge-result p:not(.eyebrow) { max-width:650px; color:#c7d8f7; font-size:1rem; line-height:1.6; }
.challenge-result > div:last-child > small { color:#9fb6df; }
.challenge-result-score { display:grid; place-items:center; width:172px; aspect-ratio:1; border-radius:50%; background:radial-gradient(circle,#07162f 0 54%,transparent 55%),conic-gradient(#ff7a18 calc(var(--challenge-score) * 1%),rgba(115,157,255,.2) 0); box-shadow:0 0 50px rgba(45,124,255,.3),inset 0 0 24px #020916; }
.challenge-result-score span { display:grid; justify-items:center; }
.challenge-result-score b { color:white; font-size:2.7rem; }
.challenge-result-score small { color:#ffb969; font-size:.6rem; font-weight:900; letter-spacing:.16em; }
.skillz-challenge-banner { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 16px; padding: 18px; border: 2px solid #ff9d3a; border-radius: 18px; background: linear-gradient(110deg,#fff3df,#e8f4ff); }
.skillz-challenge-banner h3 { margin: 4px 0; color: var(--navy-900); }
.skillz-challenge-banner p { margin: 4px 0 0; color: var(--muted); line-height: 1.45; }
.skillz-result-card { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 20px; padding: clamp(20px,4vw,32px); border: 2px solid #57ffa4; border-radius: var(--radius-xl); background: radial-gradient(circle at 95% 0,rgba(255,179,79,.3),transparent 15rem),linear-gradient(135deg,#07162f,#123b80); color: white; box-shadow: var(--shadow); }
.skillz-result-card h2 { margin: 5px 0; color: white; font-family: Georgia,"Times New Roman",serif; font-size: clamp(2rem,5vw,3.2rem); }
.skillz-result-card p:not(.eyebrow) { color: #c7d8f7; line-height: 1.5; }
.skillz-result-actions { display: grid; gap: 9px; min-width: 230px; }
.skillz-result-actions .button { width: 100%; }
.skillz-practice-banner { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 20px; padding: 22px; border: 2px solid #69d3ff; border-radius: 20px; background: radial-gradient(circle at 92% 10%,rgba(255,122,24,.4),transparent 14rem),linear-gradient(135deg,#07162f,#123b80 68%,#5224a5); color: white; }
.skillz-practice-banner h2 { margin: 4px 0; color: white; }
.skillz-practice-banner p:not(.eyebrow) { color: #dce7fb; line-height: 1.5; }
.drill-card.is-skillz-locked { border: 2px dashed #7d91b7; background: linear-gradient(145deg,#f2f5fa,#e7edf7); }
.skillz-lock-note { display: grid; grid-template-columns: 36px minmax(0,1fr); align-items: start; gap: 9px; margin-top: 12px; padding: 11px; border: 1px solid #9eb8e7; border-radius: 13px; background: #eef4ff; }
.skillz-lock-note > span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; background: #123b80; color: white; font-size: 1.1rem; }
.skillz-lock-note strong,.skillz-lock-note small { display: block; }
.skillz-lock-note strong { color: var(--navy-900); }
.skillz-lock-note small { margin-top: 3px; color: var(--muted); line-height: 1.35; }
.challenge-metric-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:10px; }
.challenge-metric-grid article { display:grid; gap:4px; min-width:0; padding:16px; border:1px solid #b8cff2; border-radius:17px; background:white; box-shadow:var(--shadow-soft); }
.challenge-metric-grid small { color:var(--green-800); font-size:.64rem; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
.challenge-metric-grid strong { color:var(--navy-900); font-size:1.8rem; }
.challenge-metric-grid span { color:var(--muted); font-size:.7rem; }
.challenge-next { display:grid; grid-template-columns:minmax(0,1fr) auto; align-items:center; gap:20px; border-left:6px solid #ff7a18; }
.challenge-next p:not(.eyebrow) { color:var(--muted); line-height:1.55; }
.challenge-next .form-actions { justify-content:flex-end; }
.challenge-trust { padding:17px 19px; border:1px solid #9eb8e7; border-radius:17px; background:#eef4ff; }
.challenge-trust p { margin:5px 0 12px; color:var(--muted); line-height:1.5; }
.balance-result { display: flex; align-items: baseline; gap: 10px; margin-top: 16px; padding: 16px; border-radius: 16px; background: #e8f0ff; }
.balance-result strong { color: var(--green-800); font-size: 2.3rem; }
.balance-result span { color: var(--muted); font-weight: 800; }
.credit-pack-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.credit-pack-grid article { display: grid; justify-items: center; gap: 5px; padding: 17px 10px; border: 1px solid #c9d9f4; border-radius: 17px; background: linear-gradient(160deg,#fff,#e8f0ff); text-align: center; }
.credit-pack-grid article > span { color: var(--gold-500); font-size: 1.6rem; }
.credit-pack-grid article > strong { color: var(--navy-900); font-size: 1.7rem; }
.credit-pack-grid article > em { color: var(--muted); font-size: .62rem; font-style: normal; }
.admin-control-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.admin-control-grid article { display: grid; gap: 5px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: #f8fbff; }
.admin-control-grid span { color: var(--muted); font-size: .73rem; }
.admin-preview-bar { position: sticky; top: 72px; z-index: 18; display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; padding: 14px 16px; border: 2px solid #ff9d3a; border-radius: 17px; background: linear-gradient(105deg,#fff3df,#e8f4ff); box-shadow: 0 12px 32px rgba(7,22,47,.18); }
.admin-preview-bar p { margin: 0; }
.admin-preview-bar strong,.admin-preview-bar small { display: block; }
.admin-preview-bar strong { margin-top: 3px; color: var(--navy-900); }
.admin-preview-bar small { margin-top: 3px; color: var(--muted); }
.admin-developer-console { overflow: hidden; padding: clamp(22px,4vw,34px); border: 2px solid #69d3ff; border-radius: var(--radius-xl); background: radial-gradient(circle at 94% 0,rgba(255,122,24,.38),transparent 17rem),radial-gradient(circle at 4% 100%,rgba(87,255,164,.18),transparent 17rem),linear-gradient(135deg,#020916,#123b80 60%,#5224a5); color: white; box-shadow: 0 22px 56px rgba(7,22,47,.28); }
.admin-console-head { display: flex; align-items: start; justify-content: space-between; gap: 18px; }
.admin-console-head h2 { max-width: 760px; margin: 5px 0 8px; color: white; font-family: Georgia,"Times New Roman",serif; font-size: clamp(1.9rem,4vw,3.2rem); line-height: 1.02; }
.admin-console-head p:not(.eyebrow) { max-width: 760px; color: #dce7fb; line-height: 1.55; }
.admin-console-head .eyebrow,.admin-screen-explorer .eyebrow { color: #69d3ff; }
.admin-mode-switch { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin-top: 20px; }
.admin-mode-switch button { display: grid; grid-template-columns: 52px minmax(0,1fr); align-items: center; gap: 3px 12px; min-height: 116px; padding: 16px; border: 2px solid rgba(255,255,255,.42); border-radius: 18px; background: rgba(255,255,255,.1); color: white; text-align: left; cursor: pointer; transition: transform 150ms ease,border-color 150ms ease,background 150ms ease; }
.admin-mode-switch button:hover { border-color: #ffcf7d; background: rgba(255,255,255,.16); transform: translateY(-2px); }
.admin-mode-switch button > span { grid-row: 1 / 3; display: grid; place-items: center; width: 50px; height: 50px; border-radius: 16px; background: linear-gradient(135deg,#69d3ff,#7040dc); color: white; font-size: 1.25rem; font-weight: 950; }
.admin-mode-switch button:nth-child(2) > span { background: linear-gradient(135deg,#ffb34f,#ff6f3c); color: #07162f; }
.admin-mode-switch strong { font-size: 1rem; }
.admin-mode-switch small { color: #c7d8f7; line-height: 1.35; }
.admin-screen-explorer { margin-top: 20px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.22); }
.admin-screen-explorer > div { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.admin-runtime-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 9px; margin-top: 18px; }
.admin-runtime-grid article { display: grid; gap: 4px; min-height: 96px; padding: 13px; border: 1px solid rgba(255,255,255,.24); border-radius: 15px; background: rgba(2,9,22,.3); }
.admin-runtime-grid small { color: #69d3ff; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.admin-runtime-grid strong { color: white; }
.admin-runtime-grid span { color: #c7d8f7; font-size: .7rem; line-height: 1.35; }
.report-preview { display: flex; align-items: center; gap: 16px; padding: 18px; border-radius: 18px; background: linear-gradient(135deg,#07162f,#123b80); color: white; }
.report-preview h3 { margin: 3px 0; color: white; }
.report-preview p { margin: 0; color: #bed0f5; }
.report-preview img { filter: drop-shadow(0 6px 14px rgba(0,0,0,.2)); }
.gps-locator { display: grid; justify-items: center; padding: 30px 18px; text-align: center; }
.gps-pulse { width: 76px; height: 76px; border: 3px solid var(--green-600); border-radius: 50%; background: radial-gradient(circle,var(--gold-500) 0 8px,rgba(45,124,255,.24) 9px 28px,transparent 29px); box-shadow: 0 0 0 12px rgba(45,124,255,.08),0 0 0 24px rgba(45,124,255,.04); animation: gps-pulse 1.8s ease-in-out infinite; }
@keyframes gps-pulse { 50% { transform: scale(1.07); box-shadow: 0 0 0 18px rgba(45,124,255,.06),0 0 0 32px rgba(45,124,255,.02); } }
.gps-readout { display: grid; justify-items: center; gap: 10px; padding: 24px; border-radius: 20px; background: radial-gradient(circle at 50% 0,#17458f,#07162f); color: white; text-align: center; }
.gps-readout > div { display: grid; justify-items: center; }
.gps-readout small { color: #bed0f5; font-weight: 900; letter-spacing: .12em; }
.gps-readout strong { margin-top: 6px; font-size: 3.2rem; line-height: 1; }
.gps-readout span { margin-top: 7px; color: #ffb969; font-weight: 900; text-transform: uppercase; }
.gps-readout p { margin: 4px 0 0; color: #bed0f5; }
.security-center { border-color: rgba(45,124,255,.32); }
.security-gates { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.security-gates article { display: grid; grid-template-columns: 34px minmax(0,1fr); gap: 10px; padding: 13px; border: 1px solid #f0c08f; border-radius: 14px; background: #fff8ef; }
.security-gates article.ready { border-color: #a8c6ff; background: #eff5ff; }
.security-gates article > span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; background: var(--gold-500); color: white; font-weight: 900; }
.security-gates article.ready > span { background: var(--green-700); }
.security-gates strong, .security-gates small { display: block; }
.security-gates small { margin-top: 4px; color: var(--muted); line-height: 1.35; }

.pilot-card { border-color: rgba(255,122,24,.48); background: linear-gradient(135deg,#fff8ef,#eef4ff); }
.pilot-card .form-actions { align-items: center; justify-content: space-between; }
.pilot-card .form-actions small { color: var(--muted); font-weight: 750; }
.guest-feedback-intro { display: flex; align-items: center; gap: 14px; padding: 18px; border-radius: 18px; background: radial-gradient(circle at 0 0,#194a9b,#07162f 72%); color: white; }
.guest-feedback-intro > span { display: grid; place-items: center; flex: 0 0 54px; width: 54px; height: 54px; border: 1px solid rgba(255,185,105,.7); border-radius: 18px; color: var(--gold-300); font-size: 1.35rem; font-weight: 900; }
.guest-feedback-intro h3 { margin: 4px 0 6px; color: white; font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; }
.guest-feedback-intro p:last-child { margin: 0; color: #dce7fb; font-size: .82rem; line-height: 1.5; }
.feedback-tools { padding: 14px 16px; border: 1px solid var(--line); border-radius: 15px; background: white; }
.feedback-tools > summary { min-height: 44px; color: var(--navy-800); cursor: pointer; font-size: .78rem; font-weight: 850; }
.feedback-tools[open] > summary { margin-bottom: 10px; }
.pilot-progress { overflow: hidden; height: 10px; margin-top: 16px; border-radius: 999px; background: #dce6f7; }
.pilot-progress i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg,#2d7cff,#ff7a18); transition: width .25s ease; }
.pilot-intro { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 12px; padding: 18px; border-radius: 18px; background: radial-gradient(circle at 0 0,#194a9b,#07162f 70%); color: white; }
.pilot-intro > div { display: grid; gap: 4px; }
.pilot-intro small { color: #bed0f5; font-size: .62rem; font-weight: 900; letter-spacing: .12em; }
.pilot-intro strong { color: white; font-size: 1.65rem; }
.pilot-intro p { grid-column: 1 / -1; margin: 0; color: #dce7fb; line-height: 1.5; }
.pilot-intro > span { align-self: start; padding: 7px 10px; border: 1px solid rgba(255,185,105,.55); border-radius: 999px; color: #ffb969; font-size: .72rem; font-weight: 900; }
.pilot-boundaries { padding: 16px; border: 1px solid #f0c08f; border-radius: 16px; background: #fff8ef; }
.pilot-boundaries h3 { margin: 0; color: var(--navy-900); }
.pilot-boundaries ul { margin: 12px 0 0; padding-left: 20px; color: #614523; font-size: .8rem; line-height: 1.55; }
.pilot-task-list { display: grid; gap: 9px; }
.pilot-task { display: grid; grid-template-columns: 42px minmax(0,1fr) auto; align-items: center; gap: 11px; padding: 12px; border: 1px solid var(--line); border-radius: 15px; background: white; }
.pilot-task.is-complete { border-color: #8fb6ff; background: #eef4ff; }
.pilot-task p { margin: 4px 0 0; color: var(--muted); font-size: .75rem; line-height: 1.45; }
.pilot-check { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid #9eb8e7; border-radius: 12px; background: #e8f0ff; color: var(--navy-900); font-weight: 900; cursor: pointer; }
.pilot-task.is-complete .pilot-check { border-color: var(--green-700); background: var(--green-700); color: white; }
.button:disabled { opacity: .48; cursor: not-allowed; }

@media (prefers-reduced-motion: reduce) { .radar-sweep, .gps-pulse, .home-launch-radar span, .home-launch-identity p span, .app-shell::after { animation: none; } }

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

@media (min-width: 760px) {
  #main-content { padding: 22px 28px 154px; }
  #main-content.home-launch-view { padding: 0 0 154px; }
  .dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr); gap: 14px; }
  .span-two { grid-column: 1 / -1; }
  .bag-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .quick-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .bottom-nav { bottom: 14px; min-height: 70px; padding-bottom: 5px; border: 1px solid rgba(13,42,64,.10); border-radius: 22px; }
  .app-shell { padding-bottom: 132px; }
  .action-banner, .toast { bottom: 98px; }
}

@media (max-width: 900px) {
  .auth-recovery { grid-template-columns: 1fr; }
  .auth-recovery-art { display: none; }
  .auth-recovery-panel { min-height: 100vh; padding-top: 32px; padding-bottom: 52px; }
  .auth-recovery-logo { display: block; width: 92px; height: 104px; margin-bottom: 12px; }
  .auth-recovery h1 { font-size: 2.6rem; }
  .welcome-logo { width: clamp(230px,42vw,340px); }
  .coach-launchpad-head { align-items: stretch; flex-direction: column; }
  .coach-cycle-badge { flex-basis: auto; }
  .coach-day-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .foundation-hero { grid-template-columns: 112px minmax(0,1fr); }
  .foundation-hero-mark { width: 108px; height: 126px; }
  .foundation-hero-mark img { width: 105px; height: 118px; }
  .foundation-live-status { grid-column: 1 / -1; width: auto; aspect-ratio: auto; grid-template-columns: auto 1fr; justify-items: start; gap: 10px; border-radius: 18px; text-align: left; }
  .foundation-live-status span { align-self: center; margin: 0; }
  .foundation-menu-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .foundation-menu-grid > button { min-height: 150px; }
}

@media (max-width: 680px) {
  .topbar { right: 12px; top: 10px; }
  html[data-release-mode="test"] .topbar { top: 44px; }
  html[data-release-mode="test"] .sample-banner { padding-right: 78px; }
  .foundation-menu-copy { display: none; }
  .foundation-menu-button { width: 56px; min-height: 56px; padding: 0; justify-content: center; border-radius: 18px; }
  .hamburger-icon { width: 40px; height: 40px; }
  .home-launch { min-height: calc(100svh - 35px); padding: 76px 16px calc(112px + var(--safe-bottom)); }
  .home-launch-radar { top: 43%; width: 116vw; }
  .home-launch-identity img { width: min(56vw,228px); }
  .home-launch-copy { margin-top: 12px; }
  .home-launch-copy h1 { font-size: clamp(2.25rem,12vw,3.55rem); }
  .home-launch-copy > p:last-child { margin-top: 9px; }
  .home-launch-target { grid-template-columns: 1fr; gap: 11px; margin-top: 20px; padding: 14px; }
  .home-launch-target strong,.home-launch-target > div span { white-space: normal; }
  .home-launch-target .button { width: 100%; }
  .home-launch-scroll { display: none; }
  .home-learning { width: min(calc(100% - 24px),1160px); margin-top: 18px; }
  .gps-source-grid { grid-template-columns: 1fr; }
  .foundation-hero { grid-template-columns: 82px minmax(0,1fr); gap: 14px; min-height: 0; padding: 22px 18px; border-radius: 23px; }
  .foundation-hero-mark { width: 80px; height: 94px; }
  .foundation-hero-mark img { width: 78px; height: 88px; }
  .foundation-hero-mark span { width: 34px; height: 34px; font-size: 1rem; }
  .foundation-hero-copy h1 { font-size: clamp(2.55rem,14vw,4rem); }
  .foundation-hero-copy h2 { margin-top: 9px; font-size: 1rem; }
  .foundation-hero-copy > p:last-child { font-size: .76rem; }
  .foundation-destinations { padding: 18px 14px; }
  .foundation-destinations > div:last-child { grid-template-columns: 1fr; }
  .foundation-connection { grid-template-columns: 1fr; gap: 12px; padding: 18px; }
  .foundation-connection .button { width: 100%; }
.foundation-menu-grid,.foundation-utility-grid,.foundation-destination-grid { grid-template-columns: 1fr; }
  .foundation-menu-grid > button { grid-template-columns: 46px minmax(0,1fr) 18px; align-items: start; min-height: 0; }
  .foundation-menu-grid strong { margin-top: 1px; }
  .foundation-menu-grid b { position: static; align-self: center; }
  .grid-two, .grid-three, .form-grid { grid-template-columns: 1fr; }
  .scorecard-head { align-items: flex-start; flex-direction: column; }
  .scorecard-total { min-width: 132px; }
  .scorecard-summary { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .score-proximity-buttons { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .score-line-buttons { grid-template-columns: 1fr; }
  .score-shot-deck,.score-shot-card { padding: 12px; }
  .score-card-nav { grid-template-columns: 1fr 1fr; }
  .score-card-nav strong { grid-column: 1 / -1; grid-row: 1; }
  .score-card-nav button { grid-row: 2; }
  .assessment-technology summary { align-items: flex-start; flex-direction: column; }
  .preview-role-details .role-grid { grid-template-columns: 1fr; }
  .align-loop { padding: 19px; }
  .align-loop-top { gap: 12px; }
  .loop-score { flex-basis: 76px; width: 76px; }
  .loop-score strong { font-size: 1.25rem; }
  .align-stage-rail { gap: 5px; }
  .align-stage { display: grid; justify-items: center; gap: 5px; padding: 8px 3px; text-align: center; }
  .align-stage > span { flex-basis: 30px; width: 30px; height: 30px; }
  .align-stage div { width: 100%; }
  .align-stage strong { font-size: .58rem; }
  .align-stage small { display: none; }
  .loop-next { align-items: stretch; flex-direction: column; gap: 13px; }
  .loop-next .button { width: 100%; }
  .practice-mode-guide { align-items: flex-start; flex-direction: column; gap: 14px; }
  .coach-connection-meta { grid-template-columns: 1fr; }
  .today-action-grid { grid-template-columns: 1fr; }
  .today-action-grid button { grid-template-columns: 44px minmax(0,1fr); align-items: center; min-height: 76px; }
  .today-action-grid button > span { grid-row: 1 / 3; margin: 0; }
  .align-way-flow { grid-template-columns: 1fr; }
  .coach-launchpad-head,.coach-flow-panel { padding: 18px; }
  .coach-launchpad-head h1 { font-size: 2.35rem; }
  .coach-cycle-track { padding: 12px 12px 0; }
  .coach-cycle-track > span { grid-template-columns: 30px minmax(0,1fr); gap: 0 6px; min-height: 58px; padding: 8px; }
  .coach-cycle-track > span > b { width: 29px; height: 29px; }
  .coach-cycle-message { padding-right: 14px; padding-left: 14px; }
  .coach-flow-steps { gap: 4px; padding: 14px 12px; }
  .coach-flow-steps > span { display: grid; justify-items: center; gap: 4px; text-align: center; }
  .coach-flow-steps > span:not(:last-child)::after { display: none; }
  .coach-flow-steps b { width: 30px; height: 30px; }
  .coach-flow-heading { align-items: flex-start; }
  .coach-roster-count { display: none; }
  .coach-day-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .coach-class-grid,.coach-student-grid { grid-template-columns: 1fr; }
  .coach-philosophy-strip { align-items: flex-start; flex-direction: column; gap: 5px; }
  .coach-philosophy-strip > small { margin-left: 0; text-align: left; }
  .mini-map-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .snapshot-footer, .player-map-next { align-items: stretch; flex-direction: column; }
  .snapshot-footer .button, .player-map-next .button { width: 100%; }
  .progress-disclosure > summary { align-items: flex-start; padding: 15px; }
  .progress-disclosure > summary > b { font-size: 0; }
  .progress-disclosure > summary > b i { font-size: 1.2rem; }
  .page-head { align-items: flex-start; }
  .page-head .segmented { align-self: center; }
  .sample-banner { display: grid; gap: 1px; }
  .quick-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .quick-action { min-height: 105px; padding: 12px; }
  .bag-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .performance-hud { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .hud-dial > span { width: 76px; }
  .curve-summary, .curve-detail-grid, .monitor-proof, .provider-route-grid { grid-template-columns: 1fr; }
  .curve-actions { align-items: stretch; flex-direction: column; }
  .swing-rating-grid, .player-portal-grid, .credit-pack-grid, .admin-control-grid, .security-gates { grid-template-columns: 1fr; }
  .hero { min-height: 320px; padding: 21px; }
  .role-pill { display: none; }
  .cabinet-stage { grid-template-columns: 1fr; }
  .collection-strip { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .near-grid { grid-template-columns: 1fr; }
  .trophy-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .trophy-showcase { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .trophy-showcase .trophy-card:nth-child(n+4) { display: none; }
  .fundamentals-head { grid-template-columns: 1fr; }
  .foundation-mark { justify-self: start; min-height: 54px; }
  .fundamental-grid { grid-template-columns: 1fr; }
  .direction-distance-equation { grid-template-columns: 1fr; }
  .direction-distance-equation > b { transform: rotate(90deg); }
  .shot-planner-head { grid-template-columns: 1fr; }
  .swing-type-picker { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .swing-progress-grid, .recent-guess-grid { grid-template-columns: 1fr; }
  .routine-loop { grid-template-columns: 1fr; }
  .routine-loop > i { transform: rotate(90deg); }
  .routine-stats { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .flip-switch-head, .topic-deck { grid-template-columns: 1fr; }
  .mode-switch { min-width: 0; }
  .switch-path { grid-template-columns: 1fr; }
  .switch-path > i { transform: rotate(90deg); }
  .od-hero { grid-template-columns: 1fr; }
  .stat-picker { grid-template-columns: 1fr; }
  .clock-hero { grid-template-columns: 1fr; }
  .team-role-grid { grid-template-columns: 1fr; }
  .course-zone-flow > div { grid-template-columns: 1fr; }
  .course-zone-flow > div > i { transform: rotate(90deg); }
  .event-product-grid { grid-template-columns: 1fr; }
  .pilot-task { grid-template-columns: 42px minmax(0,1fr); }
  .pilot-task > .button { grid-column: 2; justify-self: start; }
  .quick-challenge-promo { grid-template-columns: 1fr; justify-items: start; }
  .challenge-orbit { width: 118px; }
  .challenge-arena { grid-template-columns: 1fr; min-height: 0; }
  .challenge-radar { width: 210px; min-width: 0; }
  .challenge-metric-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .challenge-result { grid-template-columns: 1fr; justify-items: start; }
  .challenge-result-score { width: 148px; }
  .challenge-next { grid-template-columns: 1fr; }
  .challenge-next .form-actions { justify-content: flex-start; }
  .admin-mode-switch,.admin-runtime-grid { grid-template-columns: 1fr; }
  .admin-console-head,.admin-preview-bar { align-items: stretch; flex-direction: column; }
  .admin-preview-bar { position: relative; top: auto; }
  .admin-preview-bar .button { width: 100%; }
  .skillz-pass-hero, .skillz-result-card, .skillz-practice-banner, .skillz-challenge-banner { grid-template-columns: 1fr; }
  .skillz-pass-score { justify-items: start; }
  .skillz-pass-rail, .skillz-pass-meta, .skillz-pass-hero > .form-actions { grid-column: auto; }
  .skillz-pass-meta, .skillz-earn-grid, .skillz-tier-track { grid-template-columns: 1fr; }
  .skillz-tier-track article { min-height: 0; }
  .skillz-result-actions { min-width: 0; width: 100%; }
}

@media (max-width: 430px) {
  .auth-choice-actions { display: grid; grid-template-columns: 1fr; }
  .auth-choice-actions .button { width: 100%; }
  .coach-day-grid { grid-template-columns: 1fr; }
  .coach-day-grid button { grid-template-columns: 54px minmax(0,1fr); align-items: center; min-height: 82px; }
  .coach-day-grid button > span { grid-row: 1 / 3; margin: 0; }
  .coach-day-grid button small { margin: 0; }
  .coach-student-actions { grid-template-columns: 1fr; }
  .account-create-intro,.account-create-success { grid-template-columns: 1fr; }
  .role-grid { grid-template-columns: 1fr; }
  .align-loop-top h2 { font-size: 2.15rem; }
  .loop-score { flex-basis: 66px; width: 66px; }
  .loop-score small { display: none; }
  .align-stage strong { font-size: .52rem; }
  .day-at-a-glance > div { grid-template-columns: 1fr; }
  .welcome { padding: 62px 14px calc(100px + var(--safe-bottom)); }
  .welcome::before { background-size: 116vw auto; }
  .welcome-field { top: 41%; width: 132vw; }
  .welcome-logo { width: min(72vw,275px); max-height: 43svh; }
  .welcome h1 { font-size: 1.32rem; }
  .welcome-philosophy { font-size: .7rem; }
  .welcome-menu-copy { display: none; }
  .welcome-menu-button { width: 54px; padding: 5px; justify-content: center; }
  .test-drive-cta { margin-top: 13px; }
  .test-drive-cta .button { min-height: 44px; padding: 8px 12px; }
  .welcome-toolbar { bottom: max(8px,var(--safe-bottom)); width: calc(100% - 14px); min-height: 68px; padding: 4px; border-radius: 20px; }
  .welcome-toolbar button { min-height: 58px; padding: 3px; }
  .welcome-toolbar button small { font-size: .58rem; }
  .welcome-account-actions { grid-template-columns: 1fr; }
  .welcome-account-cta { margin-top: 13px; }
  .welcome-account-cta .button { flex: 1 1 120px; }
  .foundation-account-card,.locker-account-action { align-items: stretch; flex-direction: column; }
  .foundation-account-card button,.locker-account-action .button { width: 100%; }
  .locker-account-action span { max-width: none; text-align: left; }
  .quick-action { min-height: 96px; }
  .progress-rings { gap: 5px; }
  .progress-ring strong { font-size: 1.05rem; }
  .journey-stop small { font-size: .56rem; }
  .metric-grid { grid-template-columns: 1fr; }
  .section-heading { align-items: flex-start; }
  .section-heading > span { display: none; }
  .drill-library { padding: 16px 12px; }
  .trophy-cabinet { padding: 17px 13px; }
  .cabinet-header { display: grid; }
  .cabinet-header .status-chip { justify-self: start; }
  .cabinet-stage { gap: 10px; }
  .cabinet-season, .featured-trophy { min-height: 134px; padding: 16px; }
  .featured-emblem { width: 66px; height: 66px; border-radius: 20px; }
  .trophy-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .trophy-showcase { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .trophy-card { min-height: 150px; padding: 12px 10px; }
  .trophy-emblem { width: 50px; height: 50px; }
  .cabinet-actions { align-items: stretch; flex-direction: column; }
  .cabinet-actions .button { width: 100%; }
  .collection-strip div { display: grid; }
  .trophy-detail-meta { align-items: center; flex-direction: column; }
  .score-entry, .attempt-grid { grid-template-columns: 1fr; }
  .shot-equation { padding: 14px 10px; }
  .swing-type-picker { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .swing-type-picker button { min-height: 105px; }
  .guess-summary { justify-content: flex-start; }
  .review-facts { grid-template-columns: 1fr; }
  .result-pair { grid-template-columns: 1fr; }
  .routine-stats { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .vs-feature-grid, .clock-format-grid { grid-template-columns: 1fr; }
  .hitting-zone > div { grid-template-columns: 1fr; }
  .hitting-zone > div i { transform: rotate(90deg); }
  .clock-rotation > div { grid-template-columns: 1fr 1fr; }
  .clock-rotation b { grid-column: 1 / -1; }
}

/* Purpose-built hub ecosystem: each destination has one visible job. */
.foundation-menu-button,.welcome-menu-button {
  isolation: isolate;
  width: 58px;
  min-width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  color: var(--navy-900);
  box-shadow: 0 8px 22px rgba(4,19,31,.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: visible;
  box-sizing: border-box;
}
.foundation-menu-button { position: relative; }
.welcome-menu-button { position: fixed; }
.foundation-menu-button:hover,.welcome-menu-button:hover { transform: translateY(-1px); border-color: rgba(13,42,64,.24); box-shadow: 0 10px 25px rgba(4,19,31,.22); }
.foundation-menu-button > img,.welcome-menu-button > img { display: block; width: 46px; height: 49px; object-fit: contain; }
.menu-lines {
  position: absolute;
  z-index: 2;
  right: -4px;
  bottom: -3px;
  display: grid;
  place-content: center;
  gap: 3px;
  width: 24px;
  height: 24px;
  padding: 4px;
  border: 2px solid white;
  border-radius: 9px;
  background: var(--navy-900);
  box-shadow: 0 4px 10px rgba(1,10,23,.28);
  box-sizing: border-box;
}
.menu-lines i { display: block; width: 12px; height: 1.5px; border-radius: 2px; background: white; }
.foundation-menu-copy,.welcome-menu-copy,.foundation-menu-button .hamburger-icon,.welcome-menu-button .hamburger-icon { display: none; }

@media (max-width: 430px) {
  .topbar { right: calc(max(12px,env(safe-area-inset-right)) + 4px); }
  .foundation-menu-button,.welcome-menu-button {
    width: 54px;
    min-width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 4px;
    border-radius: 18px;
  }
  .welcome-menu-button { right: calc(max(12px,env(safe-area-inset-right)) + 4px); }
  .foundation-menu-button > img,.welcome-menu-button > img { width: 42px; height: 45px; }
  .menu-lines { right: -3px; bottom: -3px; width: 22px; height: 22px; }
  .menu-lines i { width: 11px; }
}

/* Art-led hub flow: the sonar field is the page, not wallpaper behind white boxes. */
.hub-container { color: #effff6; }
.hub-container > .page-head { max-width: 900px; margin: 8px 0 clamp(24px,4vw,42px); }
.hub-container > .page-head h1 { color: #f4fff8; text-shadow: 0 4px 22px rgba(0,0,0,.34); }
.hub-container > .page-head p { max-width: 760px; color: #b8d8c6; }

.hub-container :is(.foundation-hero,.practice-launch,.play-launch,.compete-launch,.learn-progress,.coach-today-launch,.locker-role-banner) {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.hub-container :is(.foundation-hero,.practice-launch,.play-launch,.compete-launch,.learn-progress,.coach-today-launch,.locker-role-banner) h1,
.hub-container :is(.foundation-hero,.practice-launch,.play-launch,.compete-launch,.learn-progress,.coach-today-launch,.locker-role-banner) h2 { color: #f4fff8; }
.hub-container :is(.foundation-hero,.practice-launch,.play-launch,.compete-launch,.learn-progress,.coach-today-launch,.locker-role-banner) p:not(.eyebrow) { color: #b8d8c6; }
.hub-container .foundation-hero { min-height: 260px; padding-inline: 0; }
.hub-container .practice-launch { padding-right: 0; }
.hub-container .locker-role-banner { padding-inline: 0; }
.hub-container .locker-role-banner > span { background: rgba(1,27,19,.42); backdrop-filter: blur(12px); }

.hub-container .card:not(.card-dark),
.hub-container .learn-card,
.hub-container .foundation-destinations,
.hub-container .drill-library,
.hub-container .shared-locker-record,
.hub-container .my-golf-courses,
.hub-container .live-vs-controls,
.hub-container .live-vs-trail,
.hub-container .locker-shared-contract {
  border-color: rgba(144,255,186,.18);
  background: rgba(2,26,19,.48);
  color: #effff6;
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hub-container .card:not(.card-dark) :is(h2,h3),
.hub-container .learn-card :is(h2,h3),
.hub-container .shared-locker-record > header h2,
.hub-container .my-golf-courses > header h2,
.hub-container .locker-shared-contract h2 { color: #effff6; }

/* Unified role surface: one sonar world for Player, Coach, and Administrator. */
.admin-preview-bar {
  border-color: rgba(255,122,24,.8);
  background: linear-gradient(110deg,rgba(2,28,21,.9),rgba(5,57,38,.76));
  color: var(--sonar-text);
  box-shadow: 0 14px 36px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.admin-preview-bar strong { color: var(--sonar-text); }
.admin-preview-bar small { color: var(--sonar-muted); }
.admin-preview-bar .eyebrow { color: #67f7a2; }

.admin-developer-console {
  border-color: rgba(93,255,156,.46);
  background:
    radial-gradient(circle at 92% 4%,rgba(255,77,47,.22),transparent 18rem),
    radial-gradient(circle at 4% 100%,rgba(87,255,164,.2),transparent 20rem),
    linear-gradient(135deg,rgba(0,22,16,.96),rgba(4,71,45,.92));
  box-shadow: 0 22px 56px rgba(0,12,8,.38);
}
.admin-console-head .eyebrow,.admin-screen-explorer .eyebrow,.admin-runtime-grid small { color: #6dffa8; }
.admin-console-head p:not(.eyebrow),.admin-mode-switch small,.admin-runtime-grid span { color: var(--sonar-muted); }
.admin-mode-switch button,.admin-runtime-grid article { border-color: var(--sonar-line); background: rgba(0,18,13,.46); }
.admin-mode-switch button > span { background: linear-gradient(135deg,#42f58c,#08794d); }
.admin-mode-switch button:nth-child(2) > span { background: linear-gradient(135deg,#ff9b41,var(--locator-red)); }

/* Light interaction islands keep form controls legible without returning to
   large white page blocks. These overrides also prevent pale-on-pale text. */
.hub-container :is(.setup-card,.club-card,.table-wrap) {
  border-color: rgba(137,255,183,.32);
  background: rgba(244,255,249,.94);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(0,20,13,.12);
}
.hub-container .card:not(.card-dark) :is(.setup-card,.club-card) :is(h2,h3,strong),
.hub-container :is(.setup-card,.club-card) :is(h2,h3,strong),
.hub-container .table-wrap :is(table,thead,tbody,tr,th,td) { color: var(--ink); }
.hub-container .card:not(.card-dark) :is(.setup-card,.club-card) p,
.hub-container :is(.setup-card,.club-card) p { color: var(--muted); }
.hub-container .setup-card { border-style: solid; }
.hub-container .table-wrap thead { background: rgba(7,89,61,.08); }
.hub-container .table-wrap tbody tr + tr { border-color: rgba(7,89,61,.12); }
.hub-container .club-card .distance { color: var(--navy-900); }
.hub-container .card:not(.card-dark) p,
.hub-container .learn-card p,
.hub-container .shared-locker-record > header p:not(.eyebrow),
.hub-container .my-golf-courses > header p:not(.eyebrow) { color: #afd0bd; }
.hub-container .card:not(.card-dark) .field label { color: #e7fff0; }

.hub-container .foundation-destinations,
.hub-container .drill-library,
.hub-container .shared-locker-record,
.hub-container .my-golf-courses {
  overflow: visible;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}
.hub-container .foundation-destinations { padding-inline: 0; }
.hub-container .shared-locker-record > header,
.hub-container .my-golf-courses > header { padding-inline: 0; border-color: rgba(148,255,188,.18); }
.hub-container .shared-locker-grid,
.hub-container .my-golf-courses > div { padding-inline: 0; background: transparent; }
.hub-container .shared-club-distances { border-color: rgba(148,255,188,.18); }
.hub-container .shared-club-distances summary { color: #effff6; }

.hub-container .coach-launchpad {
  border-color: rgba(104,255,164,.34);
  background: rgba(2,29,21,.46);
  box-shadow: none;
  backdrop-filter: blur(14px);
}
.hub-container .coach-flow-steps { border-color: rgba(132,255,179,.18); background: rgba(0,18,13,.36); }
.hub-container .coach-flow-steps > span { color: #99bca8; }
.hub-container .coach-flow-steps .is-active { color: white; }
.hub-container .coach-flow-panel :is(h2,p) { color: #effff6; }

@media (max-width: 680px) {
  .hub-container > .page-head { margin-top: 18px; }
  .hub-container :is(.foundation-hero,.practice-launch,.play-launch,.compete-launch,.learn-progress,.coach-today-launch,.locker-role-banner) { padding-left: 0; padding-right: 0; }
  .hub-container .foundation-hero { grid-template-columns: 82px minmax(0,1fr); }
  .hub-container .foundation-live-status { background: rgba(1,24,17,.58); }
  .hub-container .card:not(.card-dark),.hub-container .learn-card { background: rgba(2,26,19,.62); }
}

.bottom-nav { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); width: min(calc(100% - 20px),820px); overflow: visible; }
.bottom-nav button { min-width: 0; }
.bottom-nav button[aria-current="page"] { background: #0c326f; }

.practice-launch,.play-launch,.compete-launch,.learn-progress {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  padding: clamp(20px,3vw,32px);
  border: 1px solid rgba(13,42,64,.12);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-soft);
}
.practice-launch { min-height: 260px; padding-left: clamp(150px,20vw,260px); background: radial-gradient(circle at 10% 50%,rgba(44,213,112,.18),transparent 16rem),linear-gradient(135deg,#061a24,#0a493a); color: white; }
.practice-launch h2,.compete-launch h2 { margin: 5px 0 8px; color: inherit; font-family: Georgia,serif; font-size: clamp(1.55rem,3vw,2.25rem); font-weight: 500; }
.practice-launch p:not(.eyebrow) { max-width: 620px; color: rgba(255,255,255,.74); }
.practice-launch-art { position: absolute; left: 36px; top: 50%; width: 90px; aspect-ratio: 1; translate: 0 -50%; border: 1px solid rgba(91,255,147,.48); border-radius: 50%; background: repeating-radial-gradient(circle,transparent 0 18%,rgba(91,255,147,.17) 19% 20%); }
.practice-launch-art span { position: absolute; inset: 41%; border-radius: 50%; background: #6cff9f; box-shadow: 0 0 18px #6cff9f; }
.practice-launch-art i { position: absolute; left: 50%; top: 50%; width: 45%; height: 1px; background: linear-gradient(90deg,#6cff9f,transparent); transform: rotate(-35deg); transform-origin: left; }
.practice-launch-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 15px; }
.practice-launch-meta span { padding: 6px 9px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #c6ead2; font-size: .68rem; }
.practice-launch-actions { display: grid; justify-items: stretch; gap: 8px; min-width: 210px; }
.practice-launch-actions small { max-width: 230px; color: rgba(255,255,255,.58); font-size: .62rem; line-height: 1.4; text-align: center; }

.play-launch { background: linear-gradient(135deg,#fff,#eef5ff); }
.play-launch h2,.learn-progress h2 { margin: 5px 0 7px; color: var(--navy-900); font-family: Georgia,serif; font-size: clamp(1.5rem,2.6vw,2rem); font-weight: 500; }
.play-launch p:not(.eyebrow),.learn-progress p:not(.eyebrow),.compete-launch p:not(.eyebrow) { max-width: 620px; color: var(--muted); line-height: 1.5; }
.play-launch-grid { display: grid; grid-template-columns: repeat(3,minmax(150px,1fr)); gap: 9px; }
.play-launch-grid button { display: grid; grid-template-columns: 34px minmax(0,1fr); align-items: center; gap: 2px 10px; min-height: 84px; padding: 13px; border: 1px solid #bed0ea; border-radius: 16px; background: white; color: var(--navy-900); cursor: pointer; text-align: left; }
.play-launch-grid button:hover { border-color: var(--gold-500); box-shadow: var(--shadow-soft); }
.play-launch-grid button > span { grid-row: 1 / 3; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; background: var(--navy-900); color: var(--gold-300); font-size: .7rem; font-weight: 900; }
.play-launch-grid strong { font-size: .8rem; }
.play-launch-grid small { color: var(--muted); font-size: .62rem; }
.play-score-layout { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr); align-items: start; gap: 14px; }
.play-score-layout .quick-challenge-promo { grid-template-columns: 1fr; }

.learn-progress > div:last-child { width: min(260px,28vw); height: 8px; overflow: hidden; border-radius: 999px; background: #dfe7e2; }
.learn-progress > div:last-child i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg,#19b463,#ff8a1f); }
.learn-card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin-top: 14px; }
.learn-card { display: grid; grid-template-columns: 48px minmax(0,1fr); align-items: start; gap: 12px; min-height: 220px; padding: 19px; border: 1px solid #cad8e8; border-radius: 20px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-soft); }
.learn-card > span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: #e8f2ec; color: var(--green-800); font-family: Georgia,serif; font-weight: 800; }
.learn-card small { color: var(--blue-600); font-size: .6rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.learn-card h2 { margin: 5px 0 7px; color: var(--navy-900); font-family: Georgia,serif; font-size: 1.25rem; font-weight: 500; }
.learn-card p { margin: 0; color: var(--muted); font-size: .75rem; line-height: 1.45; }
.learn-card .button { grid-column: 1 / -1; align-self: end; justify-self: start; }
.learn-card.is-done { border-color: #83c99e; background: #f2faf5; }
.learn-foundation-detail > div { display: grid; gap: 8px; margin-top: 14px; }
.learn-foundation-detail article { display: grid; grid-template-columns: 42px 1fr; gap: 10px; align-items: center; padding: 10px; border-radius: 13px; background: #eef4f0; }
.learn-foundation-detail article > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--navy-900); color: white; }
.learn-foundation-detail small { display: block; margin-top: 3px; color: var(--muted); }
.learn-balanced-detail > div,.learn-transfer-detail { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin: 16px 0; }
.learn-balanced-detail > div span,.learn-transfer-detail > div { padding: 15px; border-radius: 15px; background: #edf4f0; }
.learn-balanced-detail > div strong { display: block; margin-top: 4px; }
.learn-transfer-detail { grid-template-columns: repeat(2,1fr); }

.compete-launch { background: linear-gradient(135deg,#0a1731,#172e60); color: white; }
.compete-launch > div:last-child { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.compete-rounds { overflow: hidden; }
.leaderboard-boundary { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px; border-style: dashed; }

.coach-today-launch,.locker-role-banner,.locker-shared-contract,.shared-locker-record {
  border: 1px solid rgba(13,42,64,.14);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.coach-today-launch { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 22px; padding: 28px; background: linear-gradient(135deg,#071a35,#103f79); color: white; }
.coach-today-launch h2,.locker-role-banner h2,.locker-shared-contract h2,.shared-locker-record h2 { margin: 5px 0 8px; font-family: Georgia,serif; font-size: clamp(1.4rem,2.6vw,1.95rem); font-weight: 500; }
.coach-today-launch p:not(.eyebrow) { max-width: 680px; color: rgba(255,255,255,.74); }
.coach-today-count { display: grid; justify-items: center; min-width: 145px; padding: 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; background: rgba(255,255,255,.08); }
.coach-today-count small,.coach-today-count span { color: rgba(255,255,255,.65); font-size: .68rem; }
.coach-today-count strong { font-family: Georgia,serif; font-size: 2.4rem; font-weight: 500; }
.locker-role-banner { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 20px; padding: 24px 28px; overflow: hidden; }
.locker-role-banner.player { background: radial-gradient(circle at 88% 20%,rgba(46,107,255,.28),transparent 17rem),linear-gradient(135deg,#081a3b,#102e71); color: white; }
.locker-role-banner.coach { background: radial-gradient(circle at 88% 20%,rgba(83,255,155,.18),transparent 17rem),linear-gradient(135deg,#061b24,#0d513b); color: white; }
.locker-role-banner p:not(.eyebrow) { max-width: 740px; color: rgba(255,255,255,.72); }
.locker-role-banner > span { display: grid; place-items: center; width: 86px; height: 86px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: white; font-size: .68rem; font-weight: 900; letter-spacing: .14em; }
.shared-locker-record { overflow: hidden; background: rgba(255,255,255,.96); }
.shared-locker-record > header { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: start; gap: 16px; padding: 24px 26px 18px; border-bottom: 1px solid #d8e2ed; }
.shared-locker-record > header p:not(.eyebrow) { max-width: 760px; color: var(--muted); }
.shared-locker-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; padding: 18px 22px; background: #eef4fa; }
.shared-locker-grid > section { min-width: 0; padding: 17px; border: 1px solid #c9d8e8; border-radius: 18px; background: white; }
.shared-locker-grid > section > p { color: var(--muted); font-size: .76rem; }
.shared-locker-section-head { display: grid; grid-template-columns: 40px minmax(0,1fr); align-items: center; gap: 10px; }
.shared-locker-section-head > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 13px; background: var(--navy-900); color: var(--gold-300); font-size: .7rem; font-weight: 900; }
.shared-locker-section-head small,.shared-locker-section-head strong { display: block; }
.shared-locker-section-head small { color: var(--blue-600); font-size: .6rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.shared-locker-section-head strong { margin-top: 3px; color: var(--navy-900); font-size: .86rem; }
.shared-locker-note-list,.shared-locker-drills { display: grid; gap: 8px; margin-top: 12px; }
.shared-locker-note { padding: 11px; border-radius: 13px; background: #f0f4f1; }
.shared-locker-note > div { display: flex; justify-content: space-between; gap: 8px; }
.shared-locker-note span,.shared-locker-note small { color: var(--muted); font-size: .62rem; }
.shared-locker-note p { margin: 7px 0; font-size: .74rem; line-height: 1.45; }
.shared-locker-drills button { display: grid; grid-template-columns: auto 1fr; gap: 3px 9px; padding: 10px; border: 1px solid #d2ddeb; border-radius: 13px; background: #fff; color: var(--navy-900); cursor: pointer; text-align: left; }
.shared-locker-drills button span { grid-row: 1 / 3; align-self: center; padding: 5px 7px; border-radius: 8px; background: #e8f1ea; color: var(--green-800); font-size: .6rem; }
.shared-locker-drills button strong { font-size: .75rem; }
.shared-locker-drills button small { overflow: hidden; color: var(--muted); font-size: .61rem; text-overflow: ellipsis; white-space: nowrap; }
.shared-locker-empty { padding: 12px; border: 1px dashed #bdcad7; border-radius: 13px; color: var(--muted); }
.shared-locker-empty strong { color: var(--navy-900); font-size: .75rem; }
.shared-locker-empty p { margin: 4px 0 0; font-size: .66rem; }
.shared-club-distances { border-top: 1px solid #d8e2ed; }
.shared-club-distances summary { display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 16px 24px; cursor: pointer; list-style: none; }
.shared-club-distances summary::-webkit-details-marker { display: none; }
.shared-club-distances summary small,.shared-club-distances summary strong { display: block; }
.shared-club-distances summary small { color: var(--muted); font-size: .62rem; }
.shared-club-distances summary b { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; background: var(--navy-900); color: white; }
.shared-club-distances .table-wrap { margin: 0 20px 20px; }
.shared-club-distances td:first-child small { display: block; color: var(--muted); }
.locker-shared-contract { display: grid; grid-template-columns: minmax(220px,.8fr) minmax(0,1.2fr); align-items: center; gap: 18px; padding: 22px 26px; background: linear-gradient(135deg,#fff8df,#fff); }
.locker-shared-contract > div:last-child { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.locker-shared-contract span { display: grid; justify-items: center; gap: 4px; padding: 12px 8px; border: 1px solid #e0ca7d; border-radius: 14px; background: rgba(255,255,255,.78); color: var(--navy-900); font-size: .64rem; font-weight: 750; text-align: center; }
.locker-shared-contract b { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 10px; background: var(--navy-900); color: var(--gold-300); }
.class-catalog-warning { display: grid; grid-template-columns: 34px minmax(0,1fr) auto; align-items: center; gap: 10px; margin-bottom: 12px; padding: 10px 12px; border: 1px solid #e5b85b; border-radius: 14px; background: #fff7df; }
.class-catalog-warning > span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; background: #ff8a1f; color: white; font-weight: 900; }
.class-catalog-warning p { margin: 0; font-size: .72rem; }
.class-catalog-source { margin: 0 0 12px; color: var(--green-800); font-size: .68rem; font-weight: 800; }

.live-vs-entry,.live-vs-hero,.live-vs-controls,.live-vs-trail,.live-vs-boundaries article {
  border: 1px solid rgba(13,42,64,.16);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}
.live-vs-entry { display: grid; grid-template-columns: 52px minmax(0,1fr) auto; align-items: center; gap: 16px; padding: 20px; background: linear-gradient(135deg,#052b2a,#0d5942); color: white; }
.live-vs-entry > span { display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid rgba(91,255,165,.45); border-radius: 50%; background: radial-gradient(circle,rgba(90,255,168,.22),rgba(0,0,0,.12)); color: #71ffaf; font-size: 1.4rem; }
.live-vs-entry h3 { margin: 3px 0 5px; font-family: Georgia,serif; font-size: 1.25rem; font-weight: 500; }
.live-vs-entry p:not(.eyebrow) { margin: 0; color: rgba(255,255,255,.72); font-size: .76rem; }
.live-vs-hero { display: grid; grid-template-columns: minmax(0,1fr) 150px; align-items: center; gap: 20px; padding: 22px; overflow: hidden; background: radial-gradient(circle at 90% 15%,rgba(73,255,159,.19),transparent 13rem),linear-gradient(135deg,#061a35,#0b4d3b); color: white; }
.live-vs-hero h3 { margin: 5px 0 8px; font-family: Georgia,serif; font-size: clamp(1.35rem,3vw,1.9rem); font-weight: 500; }
.live-vs-hero p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.live-vs-hero > div:last-child { display: grid; justify-items: center; padding: 16px; border: 1px solid rgba(91,255,165,.3); border-radius: 18px; background: rgba(0,0,0,.16); text-align: center; }
.live-vs-hero > div:last-child small,.live-vs-hero > div:last-child span { color: rgba(255,255,255,.66); font-size: .59rem; font-weight: 800; letter-spacing: .08em; }
.live-vs-hero > div:last-child strong { margin: 5px 0; font-family: Georgia,serif; font-size: 2rem; font-weight: 500; }
.live-vs-controls,.live-vs-trail { padding: 20px; background: #fff; }
.live-vs-safety { margin: 14px 0; padding: 12px; border: 1px solid #c8d8d2; border-radius: 14px; background: #eff8f3; }
.live-vs-safety span { display: grid; gap: 3px; }
.live-vs-safety small { color: var(--muted); font-size: .66rem; }
.live-vs-locating { display: flex; align-items: center; gap: 10px; margin: 12px 0; padding: 10px 12px; border-radius: 13px; background: #061f27; color: white; font-size: .72rem; }
.live-vs-locating .gps-pulse { width: 28px; height: 28px; flex: 0 0 auto; }
.live-vs-trail > div:last-child { display: grid; gap: 8px; margin-top: 12px; }
.live-vs-trail article { display: grid; grid-template-columns: 36px minmax(0,1fr) auto; align-items: center; gap: 12px; padding: 11px; border: 1px solid #d6e1e9; border-radius: 14px; background: #f7faf9; }
.live-vs-trail article > span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 12px; background: var(--navy-900); color: #69f2a4; font-weight: 900; }
.live-vs-trail article div { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 2px 10px; align-items: center; }
.live-vs-trail article small { grid-column: 1 / -1; color: var(--muted); font-size: .62rem; }
.live-vs-trail article strong { font-family: Georgia,serif; font-size: 1.12rem; font-weight: 500; }
.live-vs-trail article em { color: var(--muted); font-size: .61rem; font-style: normal; }
.live-vs-trail article b { padding: 6px 8px; border-radius: 9px; background: #e2f4e8; color: var(--green-800); font-size: .6rem; }
.live-vs-empty { display: grid; grid-template-columns: 46px minmax(0,1fr); align-items: center; gap: 12px; padding: 16px; border: 1px dashed #b7c8d6; border-radius: 16px; color: var(--muted); }
.live-vs-empty > span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: #e7f6ec; color: var(--green-800); font-size: 1.25rem; }
.live-vs-empty strong { color: var(--navy-900); }
.live-vs-empty p { margin: 4px 0 0; font-size: .7rem; }
.live-vs-boundaries { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.live-vs-boundaries article { display: grid; grid-template-columns: 42px minmax(0,1fr); gap: 12px; padding: 15px; background: #f3f6f8; }
.live-vs-boundaries article > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--navy-900); color: var(--gold-300); font-size: .68rem; font-weight: 900; }
.live-vs-boundaries strong { color: var(--navy-900); font-size: .78rem; }
.live-vs-boundaries p { margin: 5px 0 0; color: var(--muted); font-size: .67rem; line-height: 1.5; }
.my-golf-courses { overflow: hidden; border: 1px solid rgba(13,42,64,.16); border-radius: 24px; background: rgba(255,255,255,.96); box-shadow: var(--shadow-soft); }
.my-golf-courses > header { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 16px; align-items: start; padding: 22px 24px 17px; border-bottom: 1px solid #d8e2ed; }
.my-golf-courses h2 { margin: 4px 0 6px; font-family: Georgia,serif; font-size: 1.55rem; font-weight: 500; }
.my-golf-courses > header p:not(.eyebrow) { max-width: 720px; color: var(--muted); }
.my-golf-courses > div { display: grid; gap: 9px; padding: 14px 18px; background: #eef4fa; }
.my-golf-courses article { display: grid; grid-template-columns: 44px minmax(0,1fr) auto; align-items: center; gap: 12px; padding: 13px; border: 1px solid #c9d8e8; border-radius: 16px; background: white; }
.my-golf-courses article > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: linear-gradient(145deg,#083c31,#0e7654); color: white; font-size: 1.1rem; }
.my-golf-courses article small,.my-golf-courses article strong { display: block; }
.my-golf-courses article small { color: var(--blue-600); font-size: .59rem; font-weight: 800; text-transform: uppercase; }
.my-golf-courses article strong { margin-top: 2px; color: var(--navy-900); font-size: .84rem; }
.my-golf-courses article p { margin: 4px 0 0; color: var(--muted); font-size: .67rem; }
.my-golf-courses article > div:last-child { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
.my-golf-courses > footer { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; padding: 12px 18px; border-top: 1px solid #d8e2ed; }
.my-golf-courses > footer span { padding: 5px 8px; border-radius: 9px; background: #e6f5eb; color: var(--green-800); font-size: .6rem; font-weight: 800; }
.my-golf-courses > footer small { margin-left: auto; color: var(--muted); font-size: .61rem; }
.my-courses-empty { display: grid; justify-items: start; gap: 5px; padding: 18px; border: 1px dashed #b7c8d6; border-radius: 16px; background: white; }
.my-courses-empty p { margin: 0 0 6px; color: var(--muted); font-size: .7rem; }
.course-match-choice,.course-match-ready { display: grid; grid-template-columns: 54px minmax(0,1fr); align-items: center; gap: 14px; padding: 18px; border: 1px solid rgba(94,255,166,.25); border-radius: 20px; background: linear-gradient(135deg,#071a35,#0b533e); color: white; }
.course-match-choice > span,.course-match-ready > span { display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid rgba(94,255,166,.45); border-radius: 17px; background: rgba(0,0,0,.16); color: #72ffaf; font-weight: 900; }
.course-match-choice h3,.course-match-ready h3 { margin: 4px 0 6px; font-family: Georgia,serif; font-size: 1.25rem; font-weight: 500; }
.course-match-choice p:not(.eyebrow),.course-match-ready p:not(.eyebrow) { margin: 0; color: rgba(255,255,255,.72); font-size: .72rem; }

.foundation-sheet { width: min(100% - 20px,620px); }
.foundation-menu-grid { grid-template-columns: 1fr; }
.foundation-menu-grid > button { grid-template-columns: 44px minmax(0,1fr) 18px; align-items: center; min-height: 72px; padding: 11px; }
.foundation-menu-grid > button > span { width: 40px; height: 40px; }
.foundation-menu-grid strong { margin-top: 0; }
.foundation-menu-grid em { margin-top: 4px; }
.foundation-menu-grid b { position: static; }

@media (max-width: 820px) {
  .practice-launch,.play-launch,.compete-launch,.learn-progress { grid-template-columns: 1fr; }
  .practice-launch { padding-left: 132px; }
  .practice-launch-actions { justify-self: start; }
  .play-launch-grid { grid-template-columns: 1fr; width: 100%; }
  .play-score-layout { grid-template-columns: 1fr; }
  .learn-card-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .learn-progress > div:last-child { width: 100%; }
  .coach-today-launch,.locker-shared-contract { grid-template-columns: 1fr; }
  .shared-locker-grid { grid-template-columns: 1fr; }
  .live-vs-entry { grid-template-columns: 52px minmax(0,1fr); }
  .live-vs-entry .button { grid-column: 1 / -1; }
  .live-vs-boundaries { grid-template-columns: 1fr; }
  .my-golf-courses article { grid-template-columns: 44px minmax(0,1fr); }
  .my-golf-courses article > div:last-child { grid-column: 1 / -1; justify-content: flex-start; }
}
@media (max-width: 520px) {
  .bottom-nav { width: calc(100% - 12px); padding-inline: 4px; }
  .bottom-nav button { min-width: 0; }
  .practice-launch { padding: 132px 18px 20px; }
  .practice-launch-art { left: 50%; top: 62px; translate: -50% 0; }
  .learn-card-grid { grid-template-columns: 1fr; }
  .learn-card { min-height: 0; }
  .learn-balanced-detail > div,.learn-transfer-detail { grid-template-columns: 1fr; }
  .locker-role-banner { grid-template-columns: 1fr; padding: 20px; }
  .locker-role-banner > span { display: none; }
  .shared-locker-record > header { grid-template-columns: 1fr; padding: 20px 18px 15px; }
  .shared-locker-grid { padding: 12px; }
  .locker-shared-contract > div:last-child { grid-template-columns: repeat(2,1fr); }
  .class-catalog-warning { grid-template-columns: 34px 1fr; }
  .class-catalog-warning .button { grid-column: 1 / -1; }
  .live-vs-hero { grid-template-columns: 1fr; }
  .live-vs-hero > div:last-child { justify-items: start; text-align: left; }
  .live-vs-trail article { grid-template-columns: 34px minmax(0,1fr); }
  .live-vs-trail article > b { grid-column: 2; justify-self: start; }
  .my-golf-courses > header { grid-template-columns: 1fr; }
  .my-golf-courses article { grid-template-columns: 1fr; }
  .my-golf-courses article > span { display: none; }
  .my-golf-courses article > div:last-child { grid-column: 1; }
  .my-golf-courses article .button { width: 100%; }
  .my-golf-courses > footer small { width: 100%; margin-left: 0; }
}

/* Final cascade for feature styles declared below the shared hub system. */
.hub-container :is(.play-launch,.compete-launch,.learn-progress,.coach-today-launch,.locker-role-banner.player,.locker-role-banner.coach) {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.hub-container :is(.play-launch,.compete-launch,.learn-progress,.coach-today-launch,.locker-role-banner) :is(h1,h2) { color: #f4fff8; }
.hub-container :is(.play-launch,.compete-launch,.learn-progress,.coach-today-launch,.locker-role-banner) p:not(.eyebrow) { color: #b8d8c6; }
.hub-container .learn-card { border-color: rgba(144,255,186,.18); background: rgba(2,26,19,.48); color: #effff6; box-shadow: none; backdrop-filter: blur(12px); }
.hub-container .learn-card :is(h2,h3) { color: #effff6; }
.hub-container .learn-card p { color: #afd0bd; }
.hub-container .shared-locker-record,
.hub-container .my-golf-courses { overflow: visible; border: 0; background: transparent; box-shadow: none; }
.hub-container .shared-locker-record > header,
.hub-container .my-golf-courses > header { padding-inline: 0; border-color: rgba(148,255,188,.18); }
.hub-container .shared-locker-record > header h2,
.hub-container .my-golf-courses > header h2 { color: #effff6; }
.hub-container .shared-locker-record > header p:not(.eyebrow),
.hub-container .my-golf-courses > header p:not(.eyebrow) { color: #afd0bd; }
.hub-container .shared-locker-grid,
.hub-container .my-golf-courses > div { padding-inline: 0; background: transparent; }
.hub-container .live-vs-controls,
.hub-container .live-vs-trail,
.hub-container .locker-shared-contract { border-color: rgba(144,255,186,.18); background: rgba(2,26,19,.48); color: #effff6; box-shadow: none; backdrop-filter: blur(12px); }
.hub-container .locker-shared-contract h2 { color: #effff6; }

/* Calm type hierarchy: artwork, spacing, and motion lead the eye. */
.auth-recovery h1,.page-head h1 { font-size: clamp(1.55rem,3vw,2.15rem); font-weight: 500; line-height: 1.12; }
.foundation-hero-copy h1,.home-launch-copy h1,.hero h2,.challenge-copy h2,.challenge-result h2 { font-size: clamp(1.65rem,3.4vw,2.4rem); font-weight: 500; letter-spacing: -.02em; line-height: 1.08; }
.align-loop-top h2,.align-loop-hero .align-loop-top h2,.player-studio-head h2,.home-golf-lab h2,.fundamentals-card h2,.flip-switch-head h2,.shot-planner-head h2,.skillz-pass-hero h2,.skillz-result-card h2,.admin-console-head h2,.coach-launchpad-head h1 { font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 500; letter-spacing: -.015em; line-height: 1.1; }
.cabinet-season > strong { font-size: clamp(1.45rem,2.8vw,2.05rem); font-weight: 600; }
.skillz-pass-score > span,.live-clock > strong,.rating-explainer strong,.challenge-radar b,.gps-readout strong { font-size: clamp(1.8rem,4vw,2.55rem); font-weight: 700; letter-spacing: -.025em; }
.sheet h2 { font-size: 1.55rem; font-weight: 500; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  #main-content::before { opacity: .46; transform: rotate(38deg); }
}

@media (prefers-contrast: more) {
  :root { --muted: #42535d; --line: #aab5b1; }
  .card, .quick-action, .role-grid button { border-width: 2px; }
}

@media print {
  .topbar, .bottom-nav, .sample-banner, .action-banner, .network-status { display: none !important; }
  #main-content::before, #main-content::after { display: none !important; }
  .app-shell { padding: 0; }
  #main-content { width: 100%; padding: 0; }
  .card { break-inside: avoid; box-shadow: none; }
}
