/* ===========================================================
   PickleballRoundRobinPro.com — Brand System
   Energetic & sporty. Court-navy + pickleball "volt" lime.
   =========================================================== */

/* Fonts loaded via <link> in HTML head */

:root{
  /* Core palette */
  --ink:        #0c1a2b;   /* deep court navy */
  --ink-2:      #14283e;
  --ink-3:      #1d3552;
  --paper:      #fbfaf5;   /* warm off-white */
  --paper-2:    #f3f1e8;
  --white:      #ffffff;

  --volt:       #c8f23c;   /* pickleball ball lime */
  --volt-deep:  #aad81f;
  --volt-soft:  #eaf9b8;

  --brand-green:#2d8a2d;   /* logo green — "Pickleball" */
  --court:      #1e5ea6;   /* logo blue — "Schedule" */
  --court-deep: #174d8a;
  --court-soft: #ddeaff;

  --coral:      #ff6a3d;   /* energetic pop, used sparingly */
  --coral-soft: #ffe6dc;

  /* Text */
  --tx:         #0c1a2b;
  --tx-soft:    #51606f;
  --tx-faint:   #8693a0;
  --line:       #e7e3d6;
  --line-2:     #d9d4c4;

  /* Type */
  --display: 'Archivo', system-ui, sans-serif;
  --body: 'Hanken Grotesk', system-ui, sans-serif;

  /* Radius / shadow */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --sh-sm: 0 1px 2px rgba(12,26,43,.06), 0 2px 6px rgba(12,26,43,.05);
  --sh:    0 4px 14px rgba(12,26,43,.08), 0 12px 36px rgba(12,26,43,.07);
  --sh-lg: 0 18px 50px rgba(12,26,43,.16);
  --maxw: 1140px;
}

/* ---------- Reset ---------- */
*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family:var(--body);
  background:var(--paper);
  color:var(--tx);
  line-height:1.6;
  font-size:18px;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
::selection{ background:var(--volt); color:var(--ink); }

/* ---------- Layout ---------- */
.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 28px; }
.section{ padding:96px 0; }
.section-sm{ padding:64px 0; }

/* ---------- Type ---------- */
h1,h2,h3,h4{ font-family:var(--display); color:var(--ink); line-height:1.02; letter-spacing:-.02em; font-weight:800; }
.eyebrow{
  font-family:var(--display); font-weight:800; font-size:13px; letter-spacing:.16em;
  text-transform:uppercase; color:var(--court);
  display:inline-flex; align-items:center; gap:9px;
}
.eyebrow::before{ content:""; width:22px; height:3px; border-radius:2px; background:var(--volt-deep); }
.h-display{ font-size:clamp(26px, 2.8vw, 38px); font-weight:900; letter-spacing:-.035em; line-height:1.1; }
.h1{ font-size:clamp(34px, 4.6vw, 56px); font-weight:900; letter-spacing:-.03em; line-height:1; }
.h2{ font-size:clamp(28px, 3.4vw, 42px); font-weight:800; }
.lead{ font-size:clamp(18px,2vw,21px); color:var(--tx-soft); line-height:1.55; }
.muted{ color:var(--tx-soft); }
.hl{ color:var(--court); }
mark.volt{ background:var(--volt); color:var(--ink); padding:.02em .18em; border-radius:6px; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--display); font-weight:800; font-size:17px; letter-spacing:-.01em;
  padding:16px 28px; border-radius:999px; line-height:1;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space:nowrap;
}
.btn svg{ width:19px; height:19px; }
.btn-primary{ background:var(--volt); color:var(--ink); box-shadow:0 6px 0 var(--volt-deep), 0 12px 24px rgba(168,216,31,.32); }
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 8px 0 var(--volt-deep), 0 16px 30px rgba(168,216,31,.4); }
.btn-primary:active{ transform:translateY(3px); box-shadow:0 2px 0 var(--volt-deep), 0 6px 14px rgba(168,216,31,.3); }
.btn-dark{ background:var(--ink); color:var(--white); box-shadow:var(--sh-sm); }
.btn-dark:hover{ transform:translateY(-2px); background:var(--ink-2); }
.btn-ghost{ background:transparent; color:var(--ink); border:2px solid var(--line-2); }
.btn-ghost:hover{ border-color:var(--ink); background:var(--white); }
.btn-lg{ padding:20px 36px; font-size:19px; }
.btn-block{ display:flex; width:100%; }

/* ---------- Pills / badges ---------- */
.pill{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--display); font-weight:700; font-size:13px; letter-spacing:.02em;
  padding:7px 14px; border-radius:999px; background:var(--white);
  border:1px solid var(--line); color:var(--tx-soft);
}
.pill .dot{ width:8px; height:8px; border-radius:50%; background:var(--volt-deep); }

/* ---------- Pickleball ball mark ---------- */
.ball{ display:inline-block; flex:none; }

/* ===========================================================
   TOP BAR
   =========================================================== */
.top-bar{
  background:var(--ink);
  padding:6px 0;
  text-align:center;
  font-size:13px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.top-bar a{
  color:rgba(255,255,255,.65);
  text-decoration:none;
  font-weight:500;
}
.top-bar a:hover{ color:#fff; text-decoration:underline; }

/* ===========================================================
   HEADER
   =========================================================== */
.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(251,250,245,.82);
  backdrop-filter:saturate(140%) blur(12px);
  border-bottom:1px solid var(--line);
}
.nav{ display:flex; align-items:center; gap:28px; height:74px; }
.brand{ display:flex; align-items:center; gap:11px; }
.brand .mark{ width:38px; height:38px; flex:none; }
.brand .wm{ display:flex; flex-direction:column; line-height:1; }
.brand .wm-1{ font-family:var(--display); font-weight:900; font-size:19px; letter-spacing:-.02em; color:var(--ink); }
.brand .wm-1 .pro{ color:var(--court); }
.brand .wm-2{ font-size:11px; font-weight:600; letter-spacing:.04em; color:var(--tx-faint); margin-top:2px; }
.site-logo{ height:62px; width:auto; max-width:none; display:block; }
.nav-links{ display:flex; align-items:center; gap:30px; margin-left:14px; }
.nav-links a{ font-weight:600; font-size:16px; color:var(--tx-soft); transition:color .15s; }
.nav-links a:hover{ color:var(--ink); }
.nav-spacer{ flex:1; }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-price{ font-family:var(--display); font-weight:800; color:var(--ink); font-size:16px; }
.nav-price s{ color:var(--tx-faint); font-weight:600; margin-right:6px; }
.menu-btn{
  display:none; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:8px; flex:none;
  color:var(--ink); -webkit-tap-highlight-color:transparent;
}
.menu-btn svg{ width:22px; height:22px; }
.icon-close{ display:none; }
.menu-buy-link{ display:none; }

/* ===========================================================
   HERO
   =========================================================== */
.hero{ position:relative; padding:40px 0 72px; overflow:hidden; }
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:start; }
.hero h1{ margin:18px 0 22px; font-size:clamp(22px, 2.6vw, 34px); }
.hero .lead{ max-width:540px; }
.hero-cta{ display:flex; align-items:center; gap:18px; margin:34px 0 18px; flex-wrap:wrap; }
.hero-price{ display:flex; align-items:baseline; gap:10px; }
.hero-price .now{ font-family:var(--display); font-weight:900; font-size:30px; color:var(--ink); }
.hero-price .was{ font-size:18px; color:var(--tx-faint); text-decoration:line-through; }
.trust-row{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; margin-top:22px; }
.trust-item{ display:flex; align-items:center; gap:8px; font-weight:600; font-size:15px; color:var(--tx-soft); }
.trust-item svg{ width:18px; height:18px; color:var(--volt-deep); flex:none; }

/* Hero visual */
.hero-visual{ position:relative; }
.court-card{
  position:relative; border-radius:var(--r-lg); overflow:hidden;
  box-shadow:var(--sh-lg); border:1px solid rgba(255,255,255,.5);
  aspect-ratio:4/3.2;
  background:linear-gradient(160deg,#2a7ff0,#1655b8);
}
.sample-float{
  position:absolute; right:-14px; bottom:-26px; width:62%;
  background:var(--white); border-radius:var(--r); box-shadow:var(--sh-lg);
  border:1px solid var(--line); overflow:hidden; z-index:3;
  transform:rotate(-2.5deg);
}
.sf-header{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 12px 8px; border-bottom:1px solid var(--line);
}
.sf-header > span:first-child{ font-family:var(--display); font-weight:800; font-size:13px; color:var(--ink); }
.sf-badge{
  background:var(--volt); color:var(--ink);
  font-family:var(--display); font-weight:800; font-size:10px;
  letter-spacing:.06em; padding:3px 8px; border-radius:5px;
}
.sf-table{ width:100%; border-collapse:collapse; font-size:11px; border:1px solid #c8d4e8; }
.sf-table td{ padding:4px 7px; border:1px solid #c8d4e8; }
.sf-head td{
  font-family:var(--display); font-weight:700; font-size:10px;
  color:var(--tx-soft); background:var(--paper);
}
.sf-head:first-child td{
  background:#ddeaff; color:var(--court); text-align:center;
  font-size:10px; padding:3px 7px;
}
td.sf-court-input{
  font-family:'Kalam', cursive; font-weight:700; font-size:13px;
  color:var(--court); background:var(--white); text-align:center;
}
.sf-rnd{ font-family:var(--display); font-weight:800; color:var(--ink); text-align:center; }
.sf-alt{ background:#fdf3c0; }
.sf-alt td{ border-color:#e8d870; }
.badge-float{
  position:absolute; left:-18px; top:24px; z-index:4;
  background:var(--ink); color:var(--white); border-radius:14px;
  padding:12px 16px; box-shadow:var(--sh-lg); transform:rotate(3deg);
  display:flex; align-items:center; gap:11px;
}
.badge-float .big{ font-family:var(--display); font-weight:900; font-size:26px; line-height:1; color:var(--volt); }
.badge-float .sm{ font-size:12px; line-height:1.2; color:#cdd7e2; font-weight:600; }

/* ===========================================================
   COURT SVG helpers
   =========================================================== */
.court-svg{ width:100%; height:100%; display:block; }

/* ===========================================================
   MARQUEE / TRUST STRIP
   =========================================================== */
.strip{ background:var(--ink); color:#cdd7e2; padding:20px 0; }
.strip-inner{ display:flex; align-items:center; justify-content:center; gap:40px; flex-wrap:wrap; }
.strip-item{ display:flex; align-items:center; gap:10px; font-family:var(--display); font-weight:700; font-size:15px; letter-spacing:.01em; color:#e7edf3; }
.strip-item svg{ width:20px; height:20px; color:var(--volt); flex:none; }
.strip .dotsep{ width:5px; height:5px; border-radius:50%; background:#3a4d63; }

/* ===========================================================
   SECTION HEADINGS
   =========================================================== */
.sec-head{ max-width:680px; margin:0 auto 56px; text-align:center; }
.sec-head.left{ margin-left:0; text-align:left; }
.sec-head .h2{ margin:14px 0 16px; }

/* ---------- Feature grid ---------- */
.feat-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.feat{
  background:var(--white); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:28px; box-shadow:var(--sh-sm); transition:transform .18s ease, box-shadow .2s ease;
}
.feat:hover{ transform:translateY(-4px); box-shadow:var(--sh); }
.feat .ic{
  width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background:var(--court-soft); color:var(--court); margin-bottom:18px;
}
.feat .ic svg{ width:26px; height:26px; }
.feat.volt .ic{ background:var(--volt-soft); color:var(--volt-deep); }
.feat.coral .ic{ background:var(--coral-soft); color:var(--coral); }
.feat h3{ font-size:21px; margin-bottom:8px; }
.feat p{ color:var(--tx-soft); font-size:16px; }

/* ===========================================================
   SAMPLE SECTION (the matrix preview)
   =========================================================== */
.sample-wrap{ background:var(--paper-2); }
.sample-stage{
  display:grid; grid-template-columns:1fr 1.25fr; gap:48px; align-items:center;
}
.sheet{
  background:var(--white); border-radius:var(--r-lg); box-shadow:var(--sh-lg);
  border:1px solid var(--line); overflow:hidden;
}
.sheet-top{
  background:var(--ink); color:var(--white); padding:18px 22px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.sheet-top .t-title{ font-family:var(--display); font-weight:800; font-size:17px; letter-spacing:-.01em; }
.sheet-top .t-meta{ font-size:13px; color:#aebccb; font-weight:600; }
.sheet-top .t-tag{ background:var(--volt); color:var(--ink); font-family:var(--display); font-weight:800; font-size:12px; padding:5px 10px; border-radius:999px; }
table.rr{ width:100%; border-collapse:collapse; font-size:14px; border:1px solid #c8d4e8; }
table.rr th, table.rr td{ padding:10px 12px; text-align:center; border:1px solid #c8d4e8; }
/* "Courts" spanning header row */
table.rr thead tr:first-child th{
  background:#ddeaff; color:var(--court);
  font-family:var(--display); font-weight:800; font-size:12px; letter-spacing:.06em; text-transform:uppercase;
}
/* Game / Court name header row */
table.rr thead tr:last-child th{ background:var(--white); }
table.rr thead tr:last-child th:first-child{
  font-family:var(--display); font-weight:800; font-size:11px;
  color:var(--tx-soft); text-transform:uppercase; letter-spacing:.06em;
}
table.rr thead .court-input{
  font-family:'Kalam', cursive; font-weight:700; font-size:15px;
  color:var(--court); background:var(--white); min-width:80px;
}
/* Alternating rows — odd = yellow like real product */
table.rr tbody tr:nth-child(odd){ background:#fdf3c0; }
table.rr tbody tr:nth-child(even){ background:var(--white); }
table.rr td.rnd{ font-family:var(--display); font-weight:800; color:var(--ink); background:transparent; }
table.rr .team{ display:inline-flex; align-items:center; gap:5px; font-weight:700; color:var(--ink); }
table.rr .vs{ color:var(--tx-faint); font-weight:700; font-size:12px; margin:0 6px; }
.pnum{ display:inline-flex; align-items:center; justify-content:center; width:24px; height:24px; border-radius:7px; background:var(--volt-soft); color:var(--ink); font-weight:800; font-size:13px; font-family:var(--display); }
.sheet-foot{ padding:12px 22px; font-size:12px; color:var(--tx-faint); display:flex; justify-content:space-between; align-items:center; }
.sample-list{ display:flex; flex-direction:column; gap:18px; margin-top:26px; }
.sample-li{ display:flex; gap:14px; align-items:flex-start; }
.sample-li .k{ width:30px; height:30px; border-radius:9px; background:var(--volt); color:var(--ink); display:flex; align-items:center; justify-content:center; flex:none; }
.sample-li .k svg{ width:17px; height:17px; }
.sample-li h4{ font-family:var(--display); font-size:17px; margin-bottom:2px; }
.sample-li p{ font-size:15px; color:var(--tx-soft); }
.chip-row{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.chip{ font-family:var(--display); font-weight:700; font-size:13px; padding:6px 12px; border-radius:999px; background:var(--white); border:1px solid var(--line-2); color:var(--tx-soft); }

/* ===========================================================
   HOW IT WORKS
   =========================================================== */
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.step{ position:relative; padding-top:8px; }
.step .n{
  font-family:var(--display); font-weight:900; font-size:60px; line-height:.8;
  color:var(--volt-deep); -webkit-text-stroke:0; opacity:.9; margin-bottom:14px;
  display:flex; align-items:baseline; gap:10px;
}
.step .n .ball{ width:30px; height:30px; }
.step h3{ font-size:22px; margin-bottom:8px; }
.step p{ color:var(--tx-soft); font-size:16px; }
.step::after{
  content:""; position:absolute; top:24px; right:-12px; width:24px; height:24px;
  background-image:radial-gradient(var(--line-2) 2px, transparent 2px);
  background-size:8px 8px;
}
.step:last-child::after{ display:none; }

/* ===========================================================
   PRICING
   =========================================================== */
.price-wrap{ background:var(--ink); color:var(--white); position:relative; overflow:hidden; }
.price-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.price-wrap h2{ color:var(--white); }
.price-wrap .lead{ color:#aebccb; }
.price-list{ display:grid; gap:14px; margin-top:26px; }
.price-li{ display:flex; gap:12px; align-items:center; font-size:17px; color:#e7edf3; }
.price-li svg{ width:22px; height:22px; color:var(--volt); flex:none; }
.price-card{
  background:var(--white); color:var(--tx); border-radius:var(--r-xl);
  padding:38px; box-shadow:var(--sh-lg); position:relative;
}
.price-card .ribbon{
  position:absolute; top:22px; right:-2px; background:var(--coral); color:#fff;
  font-family:var(--display); font-weight:800; font-size:12px; letter-spacing:.04em;
  padding:7px 16px 7px 14px; border-radius:999px 0 0 999px; box-shadow:var(--sh-sm);
}
.price-card .ptag{ font-family:var(--display); font-weight:800; color:var(--court); font-size:14px; letter-spacing:.06em; text-transform:uppercase; }
.price-card .amount{ display:flex; align-items:baseline; gap:12px; margin:10px 0 4px; }
.price-card .amount .cur{ font-family:var(--display); font-weight:800; font-size:30px; color:var(--ink); align-self:flex-start; margin-top:8px; }
.price-card .amount .num{ font-family:var(--display); font-weight:900; font-size:72px; line-height:.85; color:var(--ink); letter-spacing:-.04em; }
.price-card .amount .was{ font-size:22px; color:var(--tx-faint); text-decoration:line-through; }
.price-card .once{ color:var(--tx-soft); font-weight:600; margin-bottom:22px; }
.price-incl{ display:grid; gap:11px; margin:22px 0 26px; padding:22px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.price-incl li{ display:flex; gap:10px; align-items:flex-start; font-size:16px; color:var(--tx); }
.price-incl svg{ width:20px; height:20px; color:var(--volt-deep); flex:none; margin-top:2px; }
.guarantee{ display:flex; align-items:center; gap:12px; margin-top:16px; font-size:14px; color:var(--tx-soft); }
.guarantee svg{ width:34px; height:34px; color:var(--court); flex:none; }
.secure-row{ display:flex; align-items:center; justify-content:center; gap:9px; margin-top:16px; font-size:13px; color:var(--tx-faint); font-weight:600; }
.secure-row svg{ width:15px; height:15px; }

/* ===========================================================
   FAQ
   =========================================================== */
.faq{ max-width:820px; margin:0 auto; }
.qa{ border-bottom:1px solid var(--line); }
.qa summary{
  list-style:none; cursor:pointer; padding:24px 4px; display:flex; align-items:center; justify-content:space-between; gap:20px;
  font-family:var(--display); font-weight:800; font-size:20px; color:var(--ink); letter-spacing:-.01em;
}
.qa summary::-webkit-details-marker{ display:none; }
.qa .ic{ width:32px; height:32px; border-radius:50%; background:var(--paper-2); display:flex; align-items:center; justify-content:center; flex:none; transition:.2s; }
.qa .ic svg{ width:18px; height:18px; color:var(--ink); transition:transform .25s ease; }
.qa[open] .ic{ background:var(--volt); }
.qa[open] .ic svg{ transform:rotate(45deg); }
.qa .ans{ padding:0 4px 26px; color:var(--tx-soft); font-size:17px; max-width:680px; }
.qa .ans a{ color:var(--court); font-weight:600; text-decoration:underline; text-underline-offset:2px; }

/* ===========================================================
   FINAL CTA
   =========================================================== */
#faq{ padding-bottom:40px; }
.final{ text-align:center; padding-top:16px; }
.final-card{
  background:linear-gradient(165deg,#1f6fe0,#1655b8); color:#fff;
  border-radius:var(--r-xl); padding:64px 40px 16px; position:relative; overflow:hidden;
  box-shadow:var(--sh-lg); min-height:300px; isolation:isolate;
}
.final-card h2{ color:#fff; font-size:clamp(30px,4vw,48px); }
.final-card .lead{ color:#d6e6ff; max-width:560px; margin:16px auto 30px; }
.final-court-lines{ position:absolute; inset:0; pointer-events:none; z-index:1; }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer{ background:var(--ink); color:#aebccb; padding:64px 0 30px; }
.foot-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr; gap:40px; padding-bottom:40px; border-bottom:1px solid #22364c; }
.foot-brand .wm-1{ color:#fff; font-family:var(--display); font-weight:900; font-size:20px; }
.foot-brand .wm-1 .pro{ color:var(--volt); }
.foot-brand p{ font-size:15px; color:#8ea0b3; max-width:320px; margin-top:14px; }
.foot-col h5{ font-family:var(--display); font-weight:800; color:#fff; font-size:14px; letter-spacing:.06em; text-transform:uppercase; margin-bottom:16px; }
.foot-col a{ display:block; color:#9fb0c2; font-size:15px; padding:6px 0; transition:color .15s; }
.foot-col a:hover{ color:var(--volt); }
.foot-bottom{ display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; padding-top:24px; font-size:14px; color:#7e90a3; }
.foot-bottom .made{ display:flex; align-items:center; gap:8px; }

/* ===========================================================
   LEGAL / CONTENT PAGES
   =========================================================== */
.page-hero{ background:var(--ink); color:#fff; padding:64px 0 56px; position:relative; overflow:hidden; }
.page-hero .eyebrow{ color:var(--volt); }
.page-hero .eyebrow::before{ background:var(--volt); }
.page-hero h1{ color:#fff; margin-top:14px; font-size:clamp(32px,5vw,52px); }
.page-hero .updated{ color:#9fb0c2; margin-top:14px; font-weight:600; font-size:15px; }
.legal{ max-width:780px; margin:0 auto; padding:64px 0 90px; }
.legal .toc{
  background:var(--white); border:1px solid var(--line); border-radius:var(--r);
  padding:22px 26px; margin-bottom:48px; box-shadow:var(--sh-sm);
}
.legal .toc h4{ font-size:13px; letter-spacing:.08em; text-transform:uppercase; color:var(--tx-faint); margin-bottom:12px; font-family:var(--display); }
.legal .toc ol{ columns:2; column-gap:32px; padding-left:18px; }
.legal .toc a{ color:var(--court); font-weight:600; font-size:15px; line-height:2; }
.legal .toc a:hover{ text-decoration:underline; }
.legal h2{ font-size:26px; margin:48px 0 14px; scroll-margin-top:90px; padding-top:6px; }
.legal h2 .num{ color:var(--volt-deep); margin-right:10px; }
.legal h3{ font-size:19px; margin:28px 0 10px; }
.legal p{ color:#3f4b58; margin-bottom:16px; font-size:17px; }
.legal ul{ margin:0 0 18px 22px; }
.legal ul li{ color:#3f4b58; margin-bottom:9px; font-size:17px; }
.legal strong{ color:var(--ink); }
.legal a.inline{ color:var(--court); font-weight:600; text-decoration:underline; text-underline-offset:2px; }
.legal .note{ background:var(--volt-soft); border-left:4px solid var(--volt-deep); border-radius:0 var(--r-sm) var(--r-sm) 0; padding:18px 22px; margin:24px 0; }
.legal .note p{ margin:0; color:#41502a; font-size:16px; }
.back-top{ display:inline-flex; align-items:center; gap:8px; margin-top:40px; font-family:var(--display); font-weight:700; color:var(--court); font-size:15px; }

/* ---------- Contact page ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.contact-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--r-lg); padding:34px; box-shadow:var(--sh-sm); }
.contact-card h3{ font-size:22px; margin-bottom:6px; }
.contact-item{ display:flex; gap:16px; align-items:flex-start; padding:20px 0; border-bottom:1px solid var(--line); }
.contact-item:last-child{ border-bottom:none; }
.contact-item .ic{ width:46px; height:46px; border-radius:12px; background:var(--court-soft); color:var(--court); display:flex; align-items:center; justify-content:center; flex:none; }
.contact-item .ic svg{ width:23px; height:23px; }
.contact-item h4{ font-family:var(--display); font-size:16px; margin-bottom:2px; }
.contact-item p, .contact-item a{ color:var(--tx-soft); font-size:16px; }
.contact-item a.mail{ color:var(--court); font-weight:700; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-family:var(--display); font-weight:700; font-size:14px; margin-bottom:7px; color:var(--ink); }
.field input, .field textarea, .field select{
  width:100%; font-family:var(--body); font-size:16px; padding:13px 15px;
  border:1.5px solid var(--line-2); border-radius:var(--r-sm); background:var(--paper);
  color:var(--tx); transition:border .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus{
  outline:none; border-color:var(--court); box-shadow:0 0 0 4px var(--court-soft); background:#fff;
}
.field textarea{ min-height:130px; resize:vertical; }
.form-note{ font-size:13px; color:var(--tx-faint); margin-top:6px; }

/* ===========================================================
   ROSTER SHEET SAMPLE
   =========================================================== */
.roster-section{ padding-top:0; }
.roster-header{
  display:flex; align-items:baseline; gap:24px;
  background:var(--paper); padding:10px 16px 8px;
  border-bottom:1px solid var(--line);
}
.roster-header-row{ display:flex; align-items:baseline; gap:4px; flex:1; }
.roster-label{ font-family:var(--display); font-weight:700; font-size:13px; white-space:nowrap; }
.roster-line{ flex:1; border-bottom:1px solid var(--ink); min-width:80px; }
.roster-body{ display:flex; gap:0; padding:12px 16px; }
.roster-col{ flex:1; }
.roster-slot{ display:flex; gap:8px; padding:3px 0; border-bottom:1px solid #ece9df; }
.roster-num{ font-family:var(--display); font-weight:800; font-size:12px; min-width:20px; }
.roster-name{ flex:1; border-bottom:1px solid #bbb; height:14px; }
.roster-note{ font-size:13px; color:var(--tx-faint); font-style:italic; margin-top:14px; }

/* ===========================================================
   UTILITY
   =========================================================== */
.eyebrow-volt{ color:var(--volt); }
.eyebrow-volt::before{ background:var(--volt); }
.link-inline{ color:var(--court); font-weight:700; text-decoration:underline; text-underline-offset:2px; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width:920px){
  .hero-grid{ grid-template-columns:1fr; gap:40px; }
  .hero-visual{ max-width:520px; }
  .feat-grid{ grid-template-columns:1fr 1fr; }
  .sample-stage{ grid-template-columns:1fr; gap:34px; }
  .steps{ grid-template-columns:1fr; gap:30px; }
  .step::after{ display:none; }
  .price-grid{ grid-template-columns:1fr; gap:36px; }
  .contact-grid{ grid-template-columns:1fr; gap:30px; }
  .foot-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:640px){
  body{ font-size:17px; }
  .section{ padding:64px 0; }
  .wrap{ padding:0 20px; }
  .nav-links{ display:none; }
  .nav-price{ display:none; }
  .nav-cta{ display:none; }
  .menu-btn{ display:flex; }
  .site-logo{ height:44px; max-width:180px; }
  .feat-grid{ grid-template-columns:1fr; }
  .legal .toc ol{ columns:1; }
  .foot-grid{ grid-template-columns:1fr; gap:30px; }
  .hero-cta{ gap:14px; }
  /* hide court card (decorative); show sample preview as a real card */
  .badge-float{ display:none; }
  .court-card{ display:none; }
  .sample-float{
    display:block;
    position:static;
    width:100%;
    transform:none;
    max-width:460px;
    margin:0 auto;
  }
  .final-card{ padding:40px 22px 16px; }
  .price-card{ padding:28px 20px; }

  /* ---------- Mobile nav dropdown ---------- */
  .site-header.nav-open .nav-links{
    display:flex; flex-direction:column; align-items:stretch;
    position:absolute; top:100%; left:0; right:0;
    background:rgba(251,250,245,.97);
    backdrop-filter:saturate(140%) blur(12px);
    border-bottom:2px solid var(--volt-deep);
    box-shadow:0 8px 24px rgba(12,26,43,.12);
    padding:6px 20px 16px; gap:0; z-index:59;
  }
  .site-header.nav-open .nav-links a{
    font-size:18px; font-weight:700; padding:14px 0;
    border-bottom:1px solid var(--line); color:var(--ink);
    margin-left:0;
  }
  .site-header.nav-open .nav-links a:last-child{ border-bottom:none; }
  .site-header.nav-open .icon-menu{ display:none; }
  .site-header.nav-open .icon-close{ display:block; }
  .site-header.nav-open .menu-buy-link{
    display:block;
    background:var(--volt); color:var(--ink);
    font-family:var(--display); font-weight:800; font-size:16px;
    border-radius:8px; padding:13px 20px; text-align:center;
    margin-top:8px; border-bottom:none !important;
  }
}
@media (max-width:480px){
  .btn-lg{ padding:14px 20px; font-size:16px; }
  .qa summary{ font-size:17px; gap:12px; }
  .strip-inner{ gap:20px; }
  .hero-cta .btn-lg{ width:100%; justify-content:center; }
}

/* ---------- Schedule table scroll wrapper ---------- */
.rr-scroll{ overflow-x:auto; -webkit-overflow-scrolling:touch; }

/* ---------- Specs table ---------- */
.specs-wrap{ overflow-x:auto; max-width:720px; margin:0 auto; }
.specs-table{ width:100%; border-collapse:collapse; font-size:14px; }
.specs-table thead tr{ background:var(--ink); color:#fff; }
.specs-table th{ padding:10px 14px; font-weight:700; text-align:center; }
.specs-table th:first-child{ text-align:left; }
.specs-table td{ padding:8px 14px; text-align:center; }
.specs-table td:first-child{ text-align:left; font-weight:600; }
.specs-row-alt{ background:#f8fef0; }
.specs-row-even{ background:#f9f9f9; }
.specs-row-odd{ background:#fff; }
.specs-player-bold{ font-weight:700; color:var(--ink); }
.specs-good{ font-weight:700; color:#2d6a0a; }
.specs-callouts{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-bottom:40px; }
.specs-callout{ background:var(--volt-soft); border:1px solid var(--volt-deep); border-radius:var(--r); padding:18px 28px; text-align:center; min-width:140px; }
.specs-callout-num{ font-family:var(--display); font-weight:900; font-size:34px; color:var(--ink); line-height:1; }
.specs-callout-label{ font-size:13px; color:#41502a; font-weight:600; margin-top:4px; }
.specs-note{ font-size:13px; color:var(--tx-faint); max-width:720px; margin:16px auto 0; text-align:center; }

/* ---------- Legal consent line ---------- */
.legal-consent{ font-size:12px; color:var(--tx-faint); margin-top:10px; }
.legal-consent a{ color:var(--court); text-decoration:underline; }
.legal-consent a:hover{ color:var(--court-deep); }
.legal-consent-dark{ color:rgba(255,255,255,.55); }
.legal-consent-dark a{ color:#cfe2ff; }

/* ===========================================================
   FOOTER WORDMARK
   =========================================================== */
.foot-wordmark{ display:flex; align-items:center; gap:0; line-height:1; }
.foot-wordmark span{ font-family:var(--display); font-weight:900; font-size:21px; }
.foot-wordmark .wm-green{ color:#2d8a2d; }
.foot-wordmark .wm-blue{ color:#4a82c4; }
.foot-wordmark .wm-gray{ color:#8ea0b3; }

/* ===========================================================
   MODIFIERS
   =========================================================== */
.section--center{ text-align:center; }
.eyebrow--center{ justify-content:center; }
.wrap--narrow{ max-width:560px; }
.wrap--md{ max-width:720px; }
.lead--centered{ max-width:560px; margin:0 auto; }
.lead--mb{ margin-bottom:28px; }
.lead--mb-sm{ margin-bottom:8px; }
.btn-row{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.btn-sm{ font-size:15px; padding:12px 22px; }

/* ===========================================================
   DOWNLOAD PAGES
   =========================================================== */
.page-h1{ margin:16px 0 12px; }
.dl-note{ font-size:15px; color:var(--tx-soft); margin-bottom:28px; }
.guarantee--dl{ margin-top:28px; }
.error-msg{ color:red; }

/* ===========================================================
   INDEX — SPECS & FINAL CTA
   =========================================================== */
#specs{ padding-bottom:10px; }
.specs-head{ text-align:center; margin-bottom:10px; }
.specs-head .h2{ margin-bottom:14px; }
.final-inner{ position:relative; z-index:2; }
.final-badge{ margin-top:18px; font-size:14px; color:#cfe2ff; font-weight:600; }

/* ===========================================================
   CONTACT PAGE EXTRAS
   =========================================================== */
.contact-intro{ margin-top:6px; font-size:16px; }
.form-intro{ margin-top:6px; font-size:16px; margin-bottom:24px; }
.info-box{ margin-top:20px; background:var(--volt-soft); border:1px solid var(--volt-deep); border-radius:var(--r); padding:22px 24px; }
.info-box-title{ font-family:var(--display); font-weight:800; font-size:16px; color:var(--ink); margin-bottom:6px; }
.info-box-body{ font-size:15px; color:#41502a; margin-bottom:14px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.label-opt{ font-weight:500; color:var(--tx-faint); }
.form-note--center{ text-align:center; margin-top:12px; }
.form-success{ display:none; text-align:center; padding:40px 20px; }
.success-icon{ width:60px; height:60px; background:var(--volt); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 18px; }
.success-h3{ font-size:24px; margin-bottom:10px; }
.success-actions{ margin-top:24px; display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
