:root {
  --navy: #071a3d;
  --blue: #0b63f6;
  --light: #eef5ff;
  --white: #ffffff;
  --green: #10b981;
  --red: #ef4444;
  --muted: #6b7280;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #f4f7fb;
  color: #12213a;
}
a { color: inherit; text-decoration: none; }
.topbar {
  background: var(--navy);
  color: white;
  padding: 14px 20px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.topbar-inner {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand { font-size: 20px; font-weight: 900; letter-spacing: .5px; }
.brand span { color: #3b82f6; }
.nav { display: flex; flex-wrap: wrap; gap: 8px; margin-left: auto; }
.nav a {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
}
.nav a:hover { background: rgba(255,255,255,.1); }
.container { max-width: 1300px; margin: 24px auto; padding: 0 18px 40px; }
.hero {
  background: linear-gradient(135deg, var(--navy), #123b83);
  color: white;
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 22px;
}
.hero h1 { margin: 0 0 8px; font-size: clamp(28px, 4vw, 46px); }
.hero p { margin: 0; opacity: .85; }
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.card {
  background: white;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 28px rgba(15, 35, 75, .08);
}
.card h2, .card h3 { margin-top: 0; }
.stat { font-size: 30px; font-weight: 900; color: var(--navy); }
.stat-label { color: var(--muted); font-size: 13px; font-weight: 700; text-transform: uppercase; }
form { margin: 0; }
label { display: block; font-weight: 800; font-size: 13px; margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #ccd6e5;
  border-radius: 9px;
  font: inherit;
  background: white;
}
textarea { min-height: 100px; resize: vertical; }
.field { margin-bottom: 14px; }
.btn {
  display: inline-block;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 9px;
  padding: 11px 16px;
  font-weight: 800;
  cursor: pointer;
}
.btn-dark { background: var(--navy); }
.btn-light { background: #e9f1ff; color: var(--navy); }
.btn-danger { background: var(--red); }
.flash {
  padding: 12px 15px;
  border-radius: 9px;
  margin-bottom: 14px;
  font-weight: 700;
}
.flash-success { background: #d1fae5; color: #065f46; }
.flash-danger { background: #fee2e2; color: #991b1b; }
.flash-warning { background: #fef3c7; color: #92400e; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 850px; }
th, td { padding: 12px 10px; text-align: left; border-bottom: 1px solid #e5eaf2; font-size: 14px; }
th { color: var(--muted); font-size: 12px; text-transform: uppercase; }
.badge {
  display: inline-block; padding: 5px 9px; border-radius: 999px;
  font-size: 12px; font-weight: 900;
}
.badge-winning { background: #dbeafe; color: #174ea6; }
.badge-tryouts { background: #fff3cd; color: #7a5200; }
.badge-set { background: #dbeafe; color: #174ea6; }
.badge-sold { background: #d1fae5; color: #065f46; }
.badge-cancelled { background: #fee2e2; color: #991b1b; }
.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
  background: linear-gradient(135deg, var(--navy), #0b63f6);
}
.login-card { width: min(430px, 100%); background: white; border-radius: 20px; padding: 28px; }
.muted { color: var(--muted); }
.roster-card { border-top: 6px solid var(--blue); }
.small { font-size: 12px; }
@media (max-width: 900px) {
  .grid-6, .grid-3, .grid-2 { grid-template-columns: 1fr 1fr; }
  .topbar-inner { align-items: flex-start; }
  .nav { margin-left: 0; }
}
@media (max-width: 620px) {
  .grid-6, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .topbar-inner { display: block; }
  .nav { margin-top: 10px; }
  .hero { padding: 20px; }
}

/* Road to a Million dark brand system */
:root{--navy:#06152f;--blue:#0788ff;--light:#0d1c31;--white:#f7fbff;--green:#17b579;--red:#ef5252;--muted:#9db0c9}html{color-scheme:dark}
body{background:radial-gradient(circle at 76% -10%,rgba(7,136,255,.22),transparent 35%),linear-gradient(180deg,#06101f,#03070f);color:var(--white);min-height:100vh}
body:before{content:"";position:fixed;inset:0;pointer-events:none;opacity:.16;background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);background-size:44px 44px;mask-image:linear-gradient(to bottom,black,transparent 70%)}
.topbar{background:rgba(3,8,18,.94);border-bottom:1px solid rgba(23,183,255,.28);box-shadow:0 12px 34px rgba(0,0,0,.35);padding:10px 20px;backdrop-filter:blur(16px)}.topbar-inner{max-width:1400px;gap:22px}
.brand{display:flex;align-items:center;gap:11px;flex:0 0 auto}.brand img{width:54px;height:54px;object-fit:cover;border-radius:50%;box-shadow:0 0 18px rgba(23,183,255,.55)}.brand-copy{display:grid;line-height:1}.brand-copy strong{font-size:18px;font-weight:950;letter-spacing:.6px;font-style:italic}.brand-copy em{color:#17b7ff}.brand-copy small{margin-top:6px;color:var(--muted);font-size:8px;font-weight:800;letter-spacing:1px}
.nav{gap:5px;justify-content:flex-end}.nav a{padding:8px 10px;border-radius:7px;font-size:12px;color:#c8d6e8;font-weight:700}.nav a:hover{color:white;background:linear-gradient(135deg,rgba(7,136,255,.28),rgba(23,183,255,.08))}
.container{position:relative;max-width:1400px}.hero{position:relative;overflow:hidden;display:flex;align-items:center;justify-content:space-between;gap:24px;min-height:190px;border:1px solid rgba(23,183,255,.38);border-radius:22px;padding:30px clamp(24px,4vw,52px);background:linear-gradient(90deg,rgba(3,7,15,.96),rgba(5,22,50,.88) 48%,rgba(7,49,91,.64)),url('/static/road-to-a-million-logo.png') center 42%/cover;box-shadow:0 20px 60px rgba(0,0,0,.4)}
.hero:after{content:"";position:absolute;inset:auto 0 0;height:4px;background:linear-gradient(90deg,transparent,#17b7ff,transparent)}.hero-copy{position:relative;z-index:1}.eyebrow{color:#7bd8ff;font-size:11px;font-weight:900;letter-spacing:2px}.hero h1{margin:9px 0 7px;font-size:clamp(30px,4vw,50px);font-weight:950;letter-spacing:-1.5px;text-transform:uppercase;font-style:italic}.hero p{color:#c8d8eb}
.million-sign{position:relative;z-index:1;transform:rotate(-2deg);min-width:190px;padding:13px 20px;border:3px solid #d8eee5;border-radius:10px;background:linear-gradient(145deg,#0a5b42,#073c2f);box-shadow:0 12px 25px rgba(0,0,0,.38);text-align:center;font-size:24px;font-weight:950;letter-spacing:1px}.million-sign small{font-size:12px;letter-spacing:2px}
.card{position:relative;background:linear-gradient(145deg,rgba(18,39,67,.98),rgba(9,22,40,.98));border:1px solid rgba(123,216,255,.14);color:var(--white);box-shadow:0 12px 32px rgba(0,0,0,.28)}.card h2,.card h3{color:white}.stat{color:white;font-weight:950}.stat-label{color:#7bd8ff}
label{color:#dce9f7}input,select,textarea{color:var(--white);border-color:#2c4d72;background:rgba(3,10,21,.7)}input:focus,select:focus,textarea:focus{border-color:#17b7ff;box-shadow:0 0 0 3px rgba(23,183,255,.12);outline:0}select option{background:var(--navy);color:white}
.btn{background:linear-gradient(135deg,var(--blue),#0556d7);border:1px solid rgba(123,216,255,.4);font-weight:900;box-shadow:0 8px 20px rgba(7,136,255,.22)}.btn-dark{background:linear-gradient(135deg,#152b48,#07162a)}.btn-light{background:#d9efff;color:var(--navy)}.btn-danger{background:linear-gradient(135deg,#e84855,#a51e31)}
th,td{border-bottom-color:rgba(123,216,255,.1)}th{color:#7bd8ff}.badge-winning,.badge-set{background:rgba(7,136,255,.17);color:#8fdfff}.badge-tryouts{background:rgba(255,200,87,.13);color:#ffd677}.badge-sold{background:rgba(23,181,121,.14);color:#75e8b2}.badge-cancelled{background:rgba(239,82,82,.14);color:#ff9898}
.login-shell{position:relative;padding:28px 20px;background:linear-gradient(90deg,rgba(1,4,10,.96),rgba(2,10,24,.78) 48%,rgba(1,4,10,.92)),url('/static/road-to-a-million-logo.png') center/cover}.login-shell:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at center,transparent,rgba(0,0,0,.56) 75%)}.login-card{position:relative;width:min(470px,100%);background:rgba(4,13,27,.93);border:1px solid rgba(23,183,255,.38);color:white;box-shadow:0 30px 90px rgba(0,0,0,.65);backdrop-filter:blur(18px)}
.login-logo{display:block;width:118px;height:118px;margin:-78px auto 16px;object-fit:cover;border-radius:50%;border:2px solid #17b7ff;box-shadow:0 0 28px rgba(23,183,255,.52)}.login-heading{text-align:center;margin-bottom:24px}.login-heading span{display:block;font-weight:950;font-style:italic;font-size:24px;letter-spacing:2px}.login-heading strong{display:block;color:#17b7ff;font-size:34px;font-weight:950;font-style:italic}.login-heading p{margin:8px 0 0;color:var(--muted);font-size:12px;text-transform:uppercase;letter-spacing:1.2px}.login-btn{width:100%;letter-spacing:1px}.demo-login{text-align:center;line-height:1.6;overflow-wrap:anywhere}.roster-card{border-top:3px solid var(--blue)}
@media(max-width:1080px){.grid-6{grid-template-columns:repeat(3,minmax(0,1fr))}}@media(max-width:720px){.grid-3,.grid-2{grid-template-columns:1fr}.nav{justify-content:flex-start}.hero{min-height:0;padding:24px 20px}.million-sign{display:none}.brand-copy small{display:none}}@media(max-width:480px){.grid-6{grid-template-columns:repeat(2,minmax(0,1fr))}.login-card{padding:28px 22px}.login-logo{width:100px;height:100px;margin-top:-68px}}
.section-heading,.rep-summary{display:flex;align-items:center;justify-content:space-between;gap:12px}.section-heading h2{margin-bottom:4px}.roster-count{display:grid;place-items:center;min-width:38px;height:38px;border-radius:50%;background:rgba(7,136,255,.18);border:1px solid rgba(23,183,255,.35);color:#8fdfff;font-weight:950}.rep-row{padding:14px 0;border-bottom:1px solid rgba(123,216,255,.12)}.rep-summary>form{width:min(190px,45%)}.rep-editor{margin-top:11px;padding:10px 12px;border-radius:9px;background:rgba(3,10,21,.46);border:1px solid rgba(123,216,255,.1)}.rep-editor summary{cursor:pointer;color:#7bd8ff;font-weight:800;font-size:12px}.rep-editor[open] summary{margin-bottom:14px}.rep-editor form+form{margin-top:10px}.archived-row{padding:12px 0;border-bottom:1px solid rgba(123,216,255,.1)}@media(max-width:620px){.rep-summary{align-items:flex-start;flex-direction:column}.rep-summary>form{width:100%}}
.section-heading,.rep-summary{display:flex;align-items:center;justify-content:space-between;gap:12px}.section-heading h2{margin-bottom:4px}.section-heading p{margin:0}.roster-count{display:grid;place-items:center;min-width:38px;height:38px;border-radius:50%;background:rgba(7,136,255,.18);border:1px solid rgba(23,183,255,.35);color:#8fdfff;font-weight:950}.rep-row{padding:14px 0;border-bottom:1px solid rgba(123,216,255,.12)}.rep-row:last-child{border-bottom:0}.rep-summary>form{width:min(190px,45%)}.rep-editor{margin-top:11px;padding:10px 12px;border-radius:9px;background:rgba(3,10,21,.46);border:1px solid rgba(123,216,255,.1)}.rep-editor summary{cursor:pointer;color:#7bd8ff;font-weight:800;font-size:12px}.rep-editor[open] summary{margin-bottom:14px}.rep-editor form+form{margin-top:10px}.archived-row{padding:12px 0;border-bottom:1px solid rgba(123,216,255,.1)}.archived-row:last-child{border-bottom:0}.roster-section{overflow:visible}@media(max-width:620px){.rep-summary{align-items:flex-start;flex-direction:column}.rep-summary>form{width:100%}.archived-row .btn{width:100%}}
.metric-period{margin-top:22px}.period-heading{display:flex;justify-content:space-between;align-items:end;margin-bottom:10px}.period-heading h2,.period-heading p{margin:0}.record-header{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:16px}.record-header h2{margin:4px 0}.record-grid{grid-template-columns:repeat(4,minmax(0,1fr))}.record-tile{padding:15px;border-radius:12px;background:linear-gradient(145deg,rgba(3,10,21,.72),rgba(11,31,57,.8));border:1px solid rgba(23,183,255,.18)}.record-label{min-height:30px;color:#7bd8ff;font-size:10px;font-weight:900;letter-spacing:.7px;text-transform:uppercase}.record-value{margin:8px 0 3px;color:white;font-size:25px;font-weight:950}.record-tile p{margin:6px 0 0;color:var(--muted);font-size:12px}.inline-date{display:flex;gap:10px;align-items:end;flex-wrap:wrap;margin-bottom:20px}.status-form{display:flex;gap:6px}.insight-alert{display:block;padding:9px 10px;border-radius:8px;background:rgba(255,200,87,.12);border:1px solid rgba(255,200,87,.24);color:#ffd677;font-size:12px;font-weight:800;line-height:1.35}@media(max-width:1000px){.record-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:620px){.record-grid{grid-template-columns:1fr}.record-header{align-items:flex-start;flex-direction:column}}
.player-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.player-card{padding:0;overflow:hidden}.player-card img,.player-placeholder{width:100%;aspect-ratio:4/3;object-fit:cover;background:linear-gradient(145deg,#0b3c70,#071525)}.player-placeholder{display:grid;place-items:center;color:#7bd8ff;font-size:84px;font-weight:950}.player-copy{padding:20px}.player-copy h2{margin:10px 0 3px}.player-title{color:#7bd8ff;font-weight:900;text-transform:uppercase;font-size:12px;letter-spacing:.8px}.player-copy p{color:#c8d6e8;line-height:1.55}@media(max-width:900px){.player-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:620px){.player-grid{grid-template-columns:1fr}}
.report-tabs{display:flex;gap:10px;margin-bottom:18px;flex-wrap:wrap}
.user-role-form{display:grid;grid-template-columns:minmax(100px,.7fr) minmax(150px,1.3fr) auto;gap:8px;align-items:center;min-width:420px}
.feedback-notes{min-width:240px;white-space:pre-wrap;line-height:1.45}
.standings-card{border-color:rgba(43,153,255,.5);box-shadow:0 18px 48px rgba(0,68,150,.2)}
.standings-me td{background:rgba(20,145,255,.14);border-top:1px solid rgba(72,174,255,.45);border-bottom:1px solid rgba(72,174,255,.45)}
.standings-rank{display:inline-flex;align-items:center;justify-content:center;min-width:42px;font-weight:900;font-size:1.05rem}
.standings-rank-1,.standings-rank-2,.standings-rank-3{font-size:1.45rem}
.game-plan-empty{padding:18px 4px 4px}.game-plan-empty h3{margin:0 0 6px}
.leadership-dashboard-card{display:flex;align-items:center;justify-content:space-between;gap:24px;margin-bottom:22px;border-color:rgba(23,183,255,.35)}.leadership-progress-copy h2{margin:5px 0}.leadership-progress-copy p{margin:0}.leadership-dashboard-progress{display:grid;grid-template-columns:auto minmax(160px,280px) auto;align-items:center;gap:14px}.leadership-dashboard-progress>strong{font-size:28px;color:#7bd8ff}.progress-track{height:12px;overflow:hidden;border-radius:999px;background:rgba(3,10,21,.75);border:1px solid rgba(123,216,255,.2)}.progress-track span{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,#0788ff,#17b7ff);box-shadow:0 0 16px rgba(23,183,255,.55)}
.leadership-checklist-summary{display:grid;grid-template-columns:auto 1fr;align-items:center;gap:25px}.leadership-percent{display:grid;place-items:center;width:125px;height:125px;border-radius:50%;background:conic-gradient(#17b7ff calc(var(--progress)*1%),rgba(123,216,255,.12) 0);position:relative}.leadership-percent:before{content:"";position:absolute;width:94px;height:94px;border-radius:50%;background:#0c2038}.leadership-percent strong,.leadership-percent small{position:relative;z-index:1;grid-area:1/1}.leadership-percent strong{font-size:30px;transform:translateY(-8px)}.leadership-percent small{font-size:10px;color:#9db0c9;font-weight:900;transform:translateY(15px)}.checklist-table input[type=checkbox]{appearance:none;width:28px;height:28px;margin:0;border:2px solid #3b648e;border-radius:7px;background:rgba(3,10,21,.72);cursor:pointer;vertical-align:middle}.checklist-table input[type=checkbox]:checked{border-color:#17b7ff;background:#0788ff;box-shadow:0 0 14px rgba(23,183,255,.4)}.checklist-table input[type=checkbox]:checked:after{content:"✓";display:grid;place-items:center;height:100%;color:white;font-size:19px;font-weight:950}.checklist-table td:nth-child(n+3),.checklist-table th:nth-child(n+3){text-align:center}.lesson-number{display:inline-grid;place-items:center;width:30px;height:30px;margin-right:9px;border-radius:50%;background:rgba(7,136,255,.16);color:#7bd8ff;font-weight:950}.check-date{display:block;margin-top:4px;font-size:10px;color:#9db0c9}.checklist-save{position:sticky;bottom:15px;z-index:5;margin-top:18px;text-align:center}.checklist-save .btn{padding:15px 30px;font-size:16px}@media(max-width:800px){.leadership-dashboard-card{align-items:flex-start;flex-direction:column}.leadership-dashboard-progress{width:100%;grid-template-columns:auto 1fr}.leadership-dashboard-progress .btn{grid-column:1/-1}.leadership-checklist-summary{grid-template-columns:1fr}.leadership-percent{margin:auto}}
.highway-dashboard-section{margin:22px 0}.highway-full-card{margin-top:20px}.performance-highway{display:grid;grid-template-columns:repeat(5,minmax(185px,1fr));overflow:hidden;border:2px solid #32465d;border-radius:18px;background:#252d36;box-shadow:inset 0 0 45px rgba(0,0,0,.65),0 18px 45px rgba(0,0,0,.35)}.highway-lane{position:relative;min-height:340px;padding:16px 10px 22px;border-right:3px dashed rgba(255,255,255,.7);background:linear-gradient(90deg,rgba(255,255,255,.025),transparent 35%,rgba(0,0,0,.1))}.highway-lane:last-child{border-right:0}.highway-lane-exit{background:linear-gradient(150deg,#282f38 58%,rgba(192,50,50,.2) 59%);clip-path:polygon(0 0,100% 0,100% 100%,18% 100%,0 76%)}.lane-sign{display:grid;place-items:center;min-height:95px;margin-bottom:18px;padding:9px;border:2px solid #dcecff;border-radius:9px;background:linear-gradient(145deg,#095caf,#073b72);box-shadow:0 7px 16px rgba(0,0,0,.42);text-align:center;transform:perspective(220px) rotateX(-3deg)}.lane-sign>span{font-size:23px}.lane-sign strong{font-size:12px;letter-spacing:.8px}.lane-sign small{color:#bde7ff;font-size:9px;font-weight:900;letter-spacing:1px}.highway-lane-passing .lane-sign{background:linear-gradient(145deg,#6b35d5,#248bf1)}.highway-lane-fast .lane-sign{background:linear-gradient(145deg,#087f66,#12ae83)}.highway-lane-cruise .lane-sign{background:linear-gradient(145deg,#0a63b7,#0788ff)}.highway-lane-slow .lane-sign{background:linear-gradient(145deg,#9a6b00,#d99a08)}.highway-lane-exit .lane-sign{background:linear-gradient(145deg,#9c2230,#e04851)}.lane-traffic{display:grid;gap:10px}.rep-vehicle{display:flex;align-items:center;gap:8px;padding:10px 9px;border:1px solid rgba(123,216,255,.38);border-radius:11px;background:linear-gradient(145deg,rgba(8,33,60,.95),rgba(3,12,23,.95));box-shadow:0 6px 13px rgba(0,0,0,.35)}.rep-vehicle-me{border-color:#17b7ff;box-shadow:0 0 0 2px rgba(23,183,255,.18),0 8px 16px rgba(0,0,0,.4)}.vehicle-icon{font-size:20px}.rep-vehicle div:last-child{display:grid;min-width:0}.rep-vehicle strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:12px}.rep-vehicle span{color:#7bd8ff;font-size:11px;font-weight:900}.rep-vehicle em{margin-top:3px;color:#ffd166;font-size:8px;font-style:normal;font-weight:950;letter-spacing:.6px}.rep-exited{border-color:#ef5252;background:linear-gradient(145deg,rgba(102,20,29,.96),rgba(35,7,12,.98))}.rep-exited em{color:#ff9898}.lane-empty{padding:25px 5px;text-align:center;color:#8292a6;font-size:11px;font-weight:800;text-transform:uppercase}.highway-legend{display:flex;gap:9px;flex-wrap:wrap;margin-top:18px}.highway-legend span{padding:8px 11px;border-radius:8px;background:rgba(7,136,255,.1);color:#bcd0e6;font-size:11px}.highway-legend strong{color:#7bd8ff}.highway-hero{background:linear-gradient(90deg,rgba(3,7,15,.96),rgba(5,22,50,.78)),repeating-linear-gradient(90deg,#252d36 0,#252d36 18%,#f2f2f2 18.3%,#f2f2f2 18.8%,#252d36 19.1%,#252d36 38%)}@media(max-width:1100px){.performance-highway{grid-template-columns:repeat(5,minmax(165px,1fr));overflow-x:auto}.highway-lane{min-width:165px}}@media(max-width:700px){.performance-highway{display:flex;flex-direction:column}.highway-lane{min-height:0;border-right:0;border-bottom:3px dashed rgba(255,255,255,.6)}.highway-lane:last-child{border-bottom:0}.highway-lane-exit{clip-path:none}.lane-sign{min-height:70px}.lane-traffic{grid-template-columns:repeat(2,minmax(0,1fr))}}
.dashboard-game-plan{margin-bottom:22px;border-color:rgba(23,183,255,.35)}.game-plan-summary-grid{grid-template-columns:repeat(auto-fit,minmax(210px,1fr))}.game-plan-summary{padding:14px;border-radius:12px;background:rgba(3,10,21,.5);border:1px solid rgba(23,183,255,.16)}.game-plan-summary h3{color:#7bd8ff}.game-plan-summary li,.game-plan-summary p{line-height:1.5}.game-plan-date{margin-bottom:18px}.game-plan-section{margin-bottom:18px}.game-plan-section .section-heading{margin-bottom:16px}.dynamic-list{display:grid;gap:10px}.dynamic-row{display:flex;gap:8px}.remove-row,.remove-card{border:0;border-radius:8px;background:rgba(239,82,82,.18);color:#ff9898;font-size:22px;font-weight:900;cursor:pointer}.remove-row{width:44px;flex:0 0 44px}.dynamic-card-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:14px}.dynamic-card{position:relative;padding:18px;border-radius:14px;background:rgba(3,10,21,.55);border:1px solid rgba(23,183,255,.18)}.dynamic-card .remove-card{position:absolute;top:9px;right:9px;width:34px;height:34px}.dynamic-card h3{padding-right:35px;color:#7bd8ff}.game-plan-lists{align-items:start}.sticky-save{position:sticky;bottom:16px;z-index:5;text-align:center;margin:8px 0 25px}.sticky-save .btn{font-size:17px;padding:15px 28px;box-shadow:0 12px 35px rgba(7,136,255,.4)}.game-plan-view-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.full-span{grid-column:1/-1}.empty-game-plan{text-align:center;padding:50px 20px}.appointment-filters{display:grid;grid-template-columns:repeat(4,minmax(150px,1fr)) auto auto;gap:10px;align-items:end;margin-bottom:18px}.appointment-filters .field{margin:0}.pagination{display:flex;justify-content:center;align-items:center;gap:16px;margin-top:18px;font-weight:800}@media(max-width:900px){.appointment-filters{grid-template-columns:repeat(2,minmax(0,1fr))}.game-plan-view-grid{grid-template-columns:1fr}.full-span{grid-column:auto}}@media(max-width:620px){.appointment-filters{grid-template-columns:1fr}.section-heading{align-items:flex-start;flex-direction:column}.section-heading .btn{width:100%}}

/* Public lead-generator income calculator */
.income-calculator-page{min-height:100vh;padding:0 18px 48px;background:radial-gradient(circle at 80% 0,rgba(7,136,255,.28),transparent 35%),linear-gradient(180deg,#06152f,#02060d)}
.calculator-public-header{max-width:1180px;margin:0 auto;min-height:88px;display:flex;align-items:center;justify-content:space-between;gap:18px}
.calculator-brand{display:flex;align-items:center;gap:12px}.calculator-brand img{width:58px;height:58px;border-radius:50%;object-fit:cover;box-shadow:0 0 24px rgba(23,183,255,.5)}.calculator-brand span{display:grid}.calculator-brand strong{font-size:18px;font-style:italic;letter-spacing:.6px}.calculator-brand em{color:#17b7ff}.calculator-brand small{margin-top:5px;color:#8faccc;font-size:9px;font-weight:900;letter-spacing:1.3px}
.calculator-login-link{padding:10px 14px;border:1px solid rgba(123,216,255,.32);border-radius:9px;color:#dcecff;font-size:12px;font-weight:900}.calculator-login-link:hover{border-color:#17b7ff;background:rgba(7,136,255,.15)}
.income-calculator{max-width:1180px;margin:0 auto;padding:28px;border:1px solid rgba(123,216,255,.2);border-radius:24px;background:linear-gradient(145deg,rgba(10,30,55,.98),rgba(3,12,24,.98));box-shadow:0 28px 80px rgba(0,0,0,.45)}
.calculator-intro{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:14px 6px 28px}.calculator-eyebrow{color:#72d4ff;font-size:11px;font-weight:900;letter-spacing:2px}.calculator-intro h1{margin:8px 0 6px;font-size:clamp(34px,5vw,58px);font-style:italic;text-transform:uppercase;letter-spacing:-1.5px}.calculator-intro p{margin:0;color:#b7c9df}.calculator-month-rule{display:grid;place-items:center;min-width:125px;padding:14px;border:1px solid rgba(123,216,255,.22);border-radius:14px;background:rgba(7,136,255,.1)}.calculator-month-rule strong{font-size:34px;color:#62ceff}.calculator-month-rule span{color:#c7d8ea;font-size:11px;font-weight:900;text-transform:uppercase}
.calculator-goal-panel,.calculator-control,.calculator-bonus-table,.calculator-payout-card,.calculator-result-grid>div,.calculator-progress-block,.calculator-required{border:1px solid rgba(123,216,255,.16);border-radius:16px;background:linear-gradient(145deg,rgba(18,43,75,.92),rgba(8,23,42,.95))}
.calculator-goal-panel{padding:22px;margin-bottom:20px;border-color:rgba(23,183,255,.38)}.calculator-layout{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(340px,.85fr);gap:22px}.calculator-controls,.calculator-results{display:grid;gap:16px;align-content:start}.calculator-control,.calculator-bonus-table,.calculator-progress-block,.calculator-required{padding:20px}
.calculator-heading-row{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:13px}.calculator-heading-row>div{display:flex;align-items:center;gap:10px}.calculator-heading-row h2,.calculator-heading-row label{margin:0;color:#fff;font-size:15px;font-weight:900}.calculator-step{display:grid;place-items:center;width:30px;height:30px;border-radius:50%;background:rgba(7,136,255,.18);color:#77d7ff;font-size:11px;font-weight:950}
.calculator-number-field{display:flex;align-items:center;width:132px;margin:0;padding:0 11px;border:1px solid #35577c;border-radius:9px;background:rgba(2,9,19,.76);color:#8edfff;font-size:18px}.calculator-number-field input{min-width:0;height:44px;padding:7px 3px;border:0;background:transparent;color:#fff;text-align:right;font-size:18px;font-weight:900;box-shadow:none}.calculator-number-field input:focus{box-shadow:none}.calculator-percent-field,.calculator-plain-field{width:96px}.calculator-percent-field input,.calculator-plain-field input{text-align:center}
.calculator-range{width:100%;min-height:38px;padding:0;border:0;background:transparent;accent-color:#16aaff;touch-action:pan-y}.calculator-range:focus{box-shadow:none}.calculator-scale{display:flex;justify-content:space-between;color:#8299b5;font-size:11px;font-weight:800}.calculator-weekly-goal{margin-top:8px;color:#7bd8ff;font-size:15px;font-weight:900}
.calculator-bonus-title{display:flex;align-items:center;justify-content:space-between;gap:12px}.calculator-bonus-title h2{margin:0 0 12px;font-size:17px}.calculator-bonus-title span{color:#8faccc;font-size:10px;font-weight:900;text-transform:uppercase}.calculator-tier{display:flex;justify-content:space-between;gap:12px;padding:11px 10px;border-bottom:1px solid rgba(123,216,255,.1);color:#b9cbe0;font-size:13px}.calculator-tier strong{color:#fff}.calculator-tier.is-active{margin:0 -6px;padding-left:16px;padding-right:16px;border-radius:9px;background:rgba(7,136,255,.19);color:#fff}.calculator-tier.is-active strong{color:#6ed8ff}.calculator-bonus-table p{margin:14px 0 0;color:#7bd8ff;font-size:12px;font-weight:800}
.calculator-payout-card{padding:25px;background:linear-gradient(135deg,#075bd1,#123d82);box-shadow:0 16px 38px rgba(7,91,209,.25)}.calculator-payout-card span{font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.8px}.calculator-payout-card strong{display:block;margin:8px 0 4px;font-size:46px}.calculator-payout-card p{margin:0;color:#d8e9ff}.calculator-result-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.calculator-result-grid>div{padding:17px}.calculator-result-grid>div:nth-child(3){grid-column:1/-1}.calculator-result-grid span,.calculator-progress-block span,.calculator-required span{display:block;color:#9eb4cd;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.5px}.calculator-result-grid strong{display:block;margin-top:7px;font-size:25px}.calculator-progress-block>div:first-child{display:flex;align-items:center;justify-content:space-between;gap:12px}.calculator-progress-block>div:first-child strong{font-size:22px;color:#75d8ff}.calculator-progress-track{height:12px;margin:14px 0;border-radius:999px;overflow:hidden;background:rgba(1,6,14,.7)}.calculator-progress-track span{height:100%;width:0;border-radius:inherit;background:linear-gradient(90deg,#0788ff,#21c5ff);box-shadow:0 0 18px rgba(33,197,255,.55)}.calculator-progress-block p{margin:0;color:#b8cae0;font-size:12px}
.calculator-required h2{margin:0 0 10px;font-size:18px}.calculator-required>div{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:11px 0;border-bottom:1px solid rgba(123,216,255,.1)}.calculator-required>div strong{font-size:19px;color:#fff}.calculator-required>p{margin:12px 0 0;padding:12px;border-radius:9px;background:rgba(239,82,82,.12);color:#ff9aa4;font-weight:800}.calculator-assumptions{margin-top:20px;color:#9fb4cc}.calculator-assumptions summary{min-height:44px;padding-top:12px;cursor:pointer;font-weight:900}.calculator-assumptions p{line-height:1.6}
@media(max-width:820px){.calculator-layout{grid-template-columns:1fr}.calculator-intro{align-items:flex-start}.calculator-month-rule{display:none}}
@media(max-width:560px){.income-calculator-page{padding:0 10px 30px}.calculator-public-header{min-height:72px}.calculator-brand img{width:46px;height:46px}.calculator-brand strong{font-size:14px}.calculator-brand small{display:none}.calculator-login-link{padding:9px 10px}.income-calculator{padding:16px;border-radius:18px}.calculator-intro{padding:10px 2px 21px}.calculator-intro h1{font-size:34px}.calculator-heading-row{align-items:flex-start}.calculator-heading-row>div{align-items:flex-start}.calculator-goal-panel,.calculator-control,.calculator-bonus-table,.calculator-progress-block,.calculator-required{padding:16px}.calculator-number-field{width:118px}.calculator-percent-field,.calculator-plain-field{width:80px}.calculator-range{min-height:48px}.calculator-result-grid{grid-template-columns:1fr}.calculator-result-grid>div:nth-child(3){grid-column:auto}.calculator-required>div{align-items:flex-start}.calculator-required>div strong{text-align:right}}
