
  :root {
    /* FirstServe vendor identity — warm clay (Roland Garros nod), ink, and cream,
       matching lib/theme/first-serve.ts and the product wordmark. */
    --green: #C1592E;        /* brand clay (primary) */
    --green-dark: #93401F;   /* deep clay */
    --green-light: #FBE9DA;  /* clay tint */
    --gold: #A64B24;         /* accent clay (CTAs, highlights) */
    --ink: #1A1715;
    --muted: #7A6A5E;
    --paper: #FDF3E7;        /* brand cream */
    --paper-line: #F0DCC7;
    --ball: #C4643B;         /* wordmark ball terracotta */
    --seam: #FDF3E7;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  /* Branded text selection — a warm clay tint instead of the default browser blue. */
  ::selection { background: #F6D2B8; color: var(--green-dark); }
  ::-moz-selection { background: #F6D2B8; color: var(--green-dark); }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Avenir Next', 'Avenir', 'Nunito Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.5;
    /* Arrow cursor over plain text instead of the I-beam; interactive elements
       below re-assert their own cursors since this inherits everywhere. */
    cursor: default;
  }
  a, summary, .nav-burger-label { cursor: pointer; }
  input, textarea { cursor: text; }
  .wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
  section { padding: 64px 0; }
  h2.section {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ink);
    border-bottom: 3px solid var(--green);
    padding-bottom: 8px;
    margin-bottom: 28px;
    display: inline-block;
  }
  .kicker { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); font-weight: bold; margin-bottom: 8px; }

  /* ---------- Nav ---------- */
  nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #eee;
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
  .wordmark { font-size: 26px; font-weight: 500; color: var(--ink); text-decoration: none; letter-spacing: -0.8px; display: flex; align-items: center; gap: 5px; text-transform: lowercase; }
  .wordmark .serve { color: var(--ball); font-weight: 800; }
  .ball { width: 13px; height: 13px; border-radius: 50%; background: var(--ball); position: relative; overflow: hidden; flex-shrink: 0; }
  .ball::before, .ball::after { content: ""; position: absolute; width: 19px; height: 19px; border: 1.6px solid var(--seam); border-radius: 50%; }
  .ball::before { left: -13px; top: -13px; } .ball::after { right: -13px; bottom: -13px; }
  .ball-lg { width: 26px; height: 26px; }
  .ball-lg::before, .ball-lg::after { width: 38px; height: 38px; border-width: 3px; }
  .ball-lg::before { left: -26px; top: -26px; } .ball-lg::after { right: -26px; bottom: -26px; }
  .nav-links { display: flex; gap: 26px; align-items: center; }
  .nav-links a { color: var(--ink); text-decoration: none; font-size: 14.5px; }
  .nav-links a:hover { color: var(--green); }
  .btn {
    display: inline-block; text-decoration: none; border-radius: 8px; font-weight: bold;
    padding: 11px 22px; font-size: 15px; transition: transform 0.1s ease, box-shadow 0.1s ease;
  }
  .btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(15,107,63,0.25); }
  .btn-gold { background: var(--gold); color: #fff; }
  .btn-green { background: var(--green); color: #fff; }
  .btn-ghost { border: 2px solid rgba(255,255,255,0.7); color: #fff; }
  /* .nav-links a sets a dark ink color at higher specificity than .btn-gold, which turned the
     "Schedule a Demo" nav button's text near-black on clay. Two class selectors win it back to
     white for every button variant that sits in the nav. */
  .nav-links .btn { padding: 9px 18px; font-size: 14px; color: #fff; }
  /* .nav-links a:hover would repaint the button text clay-on-clay (unreadable);
     hover feedback comes from a deeper clay background instead. */
  .nav-links .btn:hover { color: #fff; background: var(--green-dark); }
  .nav-burger { display: none; }
  .nav-burger-label { display: none; cursor: pointer; font-size: 26px; color: var(--ink); padding: 4px 10px; line-height: 1; user-select: none; }
  @media (max-width: 820px) {
    .nav-burger-label { display: block; }
    .nav-links {
      display: none;
      position: absolute; left: 0; right: 0; top: 64px;
      background: #fff; border-bottom: 1px solid var(--paper-line);
      flex-direction: column; align-items: stretch; gap: 0;
      box-shadow: 0 14px 30px rgba(0,0,0,0.12);
    }
    .nav-links a { padding: 14px 24px; border-top: 1px solid var(--paper-line); font-size: 16px; }
    .nav-links a.active { border-bottom: 0; border-left: 3px solid var(--green); background: var(--green-light); }
    .nav-links .btn { margin: 12px 24px 16px; text-align: center; }
    .nav-burger:checked ~ .nav-links { display: flex; }
    nav { position: sticky; }
    .nav-inner { position: relative; }
  }

  /* ---------- Hero ---------- */
  .hero {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: #fff; position: relative; overflow: hidden;
    padding: 88px 0 96px;
  }
  .hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
  .hero h1 {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-size: 50px; letter-spacing: -1px; line-height: 1.12; font-weight: 600;
    max-width: 13em;
  }
  .hero .sub { font-size: 16px; margin-top: 18px; max-width: 34em; opacity: 0.85; }
  /* The first-serve-vs-second-serve line: an italic serif voice moment,
     set apart from the body copy by a cream rule. */
  .hero .serve-line {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-style: italic; font-size: 17.5px; line-height: 1.55;
    margin-top: 20px; max-width: 32em; opacity: 0.95;
    padding-left: 16px; border-left: 3px solid rgba(253, 243, 231, 0.55);
  }
  .hero .serve-line b { font-style: normal; color: var(--paper); white-space: nowrap; }
  .hero .ctas { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
  .hero .proof { margin-top: 26px; font-size: 13.5px; opacity: 0.75; letter-spacing: 0.3px; }

  /* CSS product mock */
  .mock {
    background: #fff; color: var(--ink); border-radius: 16px; padding: 18px 20px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.35); max-width: 380px; justify-self: end; width: 100%;
  }
  .mock .m-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
  .mock .m-club { font-weight: bold; color: var(--green); font-size: 15px; }
  .mock .m-pill { font-size: 10px; background: var(--green-light); color: var(--green); border-radius: 999px; padding: 3px 10px; text-transform: uppercase; letter-spacing: 1px; font-weight: bold; }
  .mock .m-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); margin: 10px 0 6px; }
  .courts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .court { border-radius: 7px; padding: 8px 4px; text-align: center; font-size: 11px; font-weight: bold; }
  .c-open { background: var(--green-light); color: var(--green); }
  .c-busy { background: #fdf3e3; color: var(--gold); }
  .mock .m-row { display: flex; justify-content: space-between; font-size: 12.5px; padding: 7px 0; border-bottom: 1px solid #f0f0ec; }
  .mock .m-row:last-child { border-bottom: 0; }
  .mock .m-row .t { color: var(--gold); font-weight: bold; }
  @media (max-width: 880px) {
    .hero-grid { grid-template-columns: 1fr; }
    .mock { justify-self: start; }
    .hero h1 { font-size: 40px; }
  }

  /* ---------- Pain ---------- */
  .pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .pain-card {
    background: var(--paper); border: 1px solid var(--paper-line); border-radius: 12px;
    padding: 20px 22px; font-size: 14.5px; color: var(--muted);
  }
  .pain-card b { display: block; color: var(--gold); font-size: 16.5px; margin-bottom: 6px; }
  @media (max-width: 760px) { .pain-grid { grid-template-columns: 1fr; } }

  /* ---------- Features ---------- */
  .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .feature { background: var(--green-light); border-radius: 12px; padding: 20px 22px; }
  .feature .icon { font-size: 26px; }
  .feature b { display: block; font-size: 17px; color: var(--green); margin: 8px 0 4px; }
  .feature p { font-size: 13.5px; color: var(--muted); }
  @media (max-width: 880px) { .features { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 620px) { .features { grid-template-columns: 1fr; } }
  .chips { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
  .chip {
    font-size: 12.5px; border: 1px solid var(--paper-line); background: var(--paper);
    color: var(--muted); border-radius: 999px; padding: 6px 14px;
  }
  .chips-label { width: 100%; font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); font-weight: bold; }

  /* ---------- Compare ---------- */
  /* Inline mini wordmark — a small white chip so the logo reads on any background
     (clay table headers, the page hero, and paper prose alike). */
  .mini-mark {
    display: inline-flex; align-items: center; gap: 3px; vertical-align: middle;
    background: #fff; border: 1px solid var(--paper-line); border-radius: 7px; padding: 3px 9px;
    font-size: 0.82em; font-weight: 500; line-height: 1.2; color: var(--ink);
    text-transform: lowercase; letter-spacing: -0.4px; white-space: nowrap;
  }
  .mini-mark .serve { color: var(--ball); font-weight: 800; }
  th .mini-mark { border: 0; }
  /* Larger variant for table headers whose neighbors run two lines. */
  .mini-mark.lg { font-size: 1.3em; padding: 5px 12px; }
  .compare { background: var(--paper); }
  .tbl-scroll { overflow-x: auto; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
  table { width: 100%; border-collapse: collapse; font-size: 14px; background: #fff; min-width: 640px; }
  th, td { padding: 11px 16px; text-align: center; border-bottom: 1px solid #e9e9e5; }
  th { background: var(--green); color: #fff; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.8px; }
  td:first-child, th:first-child { text-align: left; }
  .yes { color: var(--green); font-weight: bold; }
  .no { color: #b3b3b3; }
  tr:nth-child(even) td { background: #fafaf8; }
  .tbl-note { font-size: 13px; color: var(--muted); margin-top: 14px; max-width: 56em; }

  /* ---------- Stats ---------- */
  .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .stat { text-align: center; background: #fff; border: 2px solid var(--green-light); border-radius: 12px; padding: 24px 12px; }
  .stat .n { font-size: 40px; font-weight: bold; color: var(--green); line-height: 1; }
  .stat .l { font-size: 12px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); margin-top: 10px; }
  @media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }

  /* ---------- Steps ---------- */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
  .step { background: #fff; border: 1px solid var(--paper-line); border-radius: 12px; padding: 22px; position: relative; }
  .step::before {
    counter-increment: step; content: counter(step);
    display: inline-flex; width: 34px; height: 34px; border-radius: 50%;
    background: var(--gold); color: #fff; font-weight: bold; font-size: 17px;
    align-items: center; justify-content: center; margin-bottom: 12px;
  }
  .step b { display: block; color: var(--green); font-size: 17px; margin-bottom: 4px; }
  .step p { font-size: 13.5px; color: var(--muted); }
  @media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

  /* ---------- Founding ---------- */
  .founding {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: #fff; border-radius: 18px; padding: 44px 48px; position: relative; overflow: hidden;
  }
  /* On the dark clay gradient, --gold (a deep clay) barely reads. A light clay tint pops. */
  .founding .kicker { color: #F4C9AE; }
  .founding h3 { font-size: 28px; margin-bottom: 10px; }
  .founding p { max-width: 40em; opacity: 0.88; font-size: 15.5px; }
  .founding .btn { margin-top: 22px; }
  @media (max-width: 620px) { .founding { padding: 32px 24px; } }

  /* ---------- FAQ ---------- */
  details { border-bottom: 1px solid var(--paper-line); padding: 16px 4px; }
  summary { cursor: pointer; font-weight: bold; font-size: 16.5px; color: var(--green); list-style: none; display: flex; justify-content: space-between; align-items: center; }
  summary::after { content: "+"; color: var(--gold); font-size: 22px; font-weight: bold; }
  details[open] summary::after { content: "–"; }
  details p { margin-top: 10px; color: var(--muted); font-size: 14.5px; max-width: 60em; }

  /* ---------- Footer ---------- */
  footer { background: var(--green-dark); color: #fff; padding: 56px 0 40px; margin-top: 24px; }
  .foot-cta { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 34px; margin-bottom: 26px; }
  .foot-cta .big { font-size: 26px; font-weight: bold; }
  .foot-meta { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 13px; }
  footer a { color: #fff; opacity: 0.8; }
  footer a:hover { opacity: 1; }
  /* Footer brand: the wordmark on a white chip so the dark 'first' reads on dark clay. */
  .foot-brand { display: flex; flex-direction: column; gap: 10px; }
  .foot-logo { display: inline-flex; align-items: center; gap: 4px; width: fit-content;
    background: #fff; border-radius: 8px; padding: 7px 13px; font-size: 19px; font-weight: 500;
    color: var(--ink); text-transform: lowercase; letter-spacing: -0.6px; }
  .foot-logo .serve { color: var(--ball); font-weight: 800; }
  .foot-copy { font-size: 12px; opacity: 0.7; }

  .nav-links a.active { color: var(--green); font-weight: bold; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
  .page-hero {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: #fff; position: relative; overflow: hidden; padding: 56px 0;
  }
  .page-hero h1 { font-size: 38px; letter-spacing: -0.5px; position: relative; z-index: 1; }
  .page-hero p { margin-top: 10px; max-width: 44em; opacity: 0.88; font-size: 16px; position: relative; z-index: 1; }
  .module { display: grid; grid-template-columns: 60px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--paper-line); }
  .module .icon { font-size: 34px; }
  .module h3 { color: var(--green); font-size: 20px; margin-bottom: 6px; }
  .module p { color: var(--muted); font-size: 15px; max-width: 62em; }
  .module ul { margin: 10px 0 0 18px; color: var(--muted); font-size: 14px; }
  .module li { margin-bottom: 4px; }
  /* ---------- Legal pages (privacy / terms) ---------- */
  .legal p { color: var(--muted); font-size: 15.5px; line-height: 1.7; margin: 12px 0; }
  .legal ul { margin: 10px 0 18px 20px; color: var(--muted); font-size: 15.5px; line-height: 1.6; }
  .legal li { margin-bottom: 8px; }
  .legal h2.section { margin-top: 30px; }
  .legal a { color: var(--green); text-decoration: underline; }
  .legal strong { color: var(--ink, inherit); }
  /* ---------- Brand icons ----------
     Hand-drawn stroke icons (in-page SVG) replace the old emoji: clay at rest,
     deep clay on a warm tint disc when the surrounding card or row is hovered. */
  .bicon {
    width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--green);
    transition: color .15s ease, background .15s ease, transform .15s ease;
  }
  .bicon svg {
    width: 28px; height: 28px;
    stroke: currentColor; fill: none;
    stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
  }
  .module:hover .bicon, .teaser:hover .bicon, .care-card:hover .bicon, .bicon:hover {
    color: var(--green-dark); background: #F6D2B8; transform: translateY(-2px);
  }
  .teaser .bicon { margin-bottom: 10px; }

  /* ---------- Care / reliability cards ---------- */
  .care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .care-card { background: var(--paper); border: 1px solid var(--paper-line); border-radius: 12px; padding: 20px 22px; }
  .care-card b { display: block; color: var(--green); font-size: 16.5px; margin: 10px 0 6px; }
  .care-card p { font-size: 14px; color: var(--muted); }
  @media (max-width: 760px) { .care-grid { grid-template-columns: 1fr; } }

  .teasers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .teaser { background: #fff; border: 1px solid var(--paper-line); border-radius: 12px; padding: 22px; text-decoration: none; display: block; transition: transform .1s ease, box-shadow .1s ease; }
  .teaser:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(15,107,63,0.12); }
  .teaser b { color: var(--green); font-size: 17px; display: block; margin-bottom: 6px; }
  .teaser p { color: var(--muted); font-size: 13.5px; }
  .teaser .go { color: var(--gold); font-weight: bold; font-size: 13px; margin-top: 10px; display: block; }
  @media (max-width: 760px) { .teasers { grid-template-columns: 1fr; } .module { grid-template-columns: 1fr; } }

  /* ==========================================================================
     Premium pass — editorial serif display, motion, and the "angles" section.
     Loaded fonts: Fraunces (display serif). All motion respects
     prefers-reduced-motion and degrades to static without JS.
     ========================================================================== */

  /* ---------- Editorial display type ---------- */
  h2.section, .page-hero h1, .founding h3, .angles h3, .foot-cta .big, .module h3 {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  }
  h2.section {
    text-transform: none; letter-spacing: -0.5px;
    font-size: 32px; font-weight: 600; line-height: 1.15;
  }
  .page-hero h1 { font-weight: 600; letter-spacing: -0.5px; }
  .founding h3, .angles h3 { font-weight: 600; letter-spacing: -0.4px; }
  .module h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.3px; }
  .stat .n { font-family: 'Fraunces', Georgia, serif; font-weight: 600; }

  /* ---------- Button shine sweep ---------- */
  .btn { position: relative; overflow: hidden; }
  .btn::after {
    content: ""; position: absolute; top: 0; left: -70%; width: 45%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg); transition: left 0.5s ease; pointer-events: none;
  }
  .btn:hover::after { left: 125%; }

  /* ---------- Card depth & lift ---------- */
  .pain-card, .care-card, .stat {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }
  .pain-card:hover, .care-card:hover, .stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(147, 64, 31, 0.12);
  }
  .teaser:hover { box-shadow: 0 14px 30px rgba(147, 64, 31, 0.14); }

  /* ---------- Scroll reveal (site.js adds .rv, then .in on intersection) ---------- */
  .rv { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; transition-delay: var(--rv-d, 0s); }
  .rv.in { opacity: 1; transform: none; }

  /* ---------- Hero entrance ---------- */
  @keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
  .hero h1, .hero .sub, .hero .serve-line, .hero .ctas, .hero .proof { animation: rise 0.7s ease both; }
  .hero .sub { animation-delay: 0.12s; }
  .hero .serve-line { animation-delay: 0.22s; }
  .hero .ctas { animation-delay: 0.32s; }
  .hero .proof { animation-delay: 0.46s; }
  .hero .mock { animation: rise 0.8s ease 0.25s both; }
  /* Plan-view court motif behind clay panels, echoing the app's auth panel.
     One drawing, three placements; always decorative and non-interactive. */
  .hero-court {
    position: absolute; right: -30px; bottom: -190px; width: 330px; height: auto;
    color: rgba(255,255,255,0.09); transform: rotate(10deg); pointer-events: none;
  }
  .page-hero-court {
    position: absolute; right: 4%; top: -140px; width: 230px; height: auto;
    color: rgba(255,255,255,0.10); transform: rotate(10deg); pointer-events: none;
  }
  .founding-court {
    position: absolute; right: -55px; top: -50px; width: 250px; height: auto;
    color: rgba(255,255,255,0.10); transform: rotate(-10deg); pointer-events: none;
  }
  @media (max-width: 620px) {
    .hero-court { width: 230px; right: -70px; bottom: -130px; }
    .page-hero-court { width: 170px; right: -45px; top: -90px; }
    .founding-court { width: 170px; right: -50px; }
  }

  /* ---------- Module marquee ---------- */
  .marquee {
    overflow: hidden; background: var(--paper);
    border-top: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line);
    padding: 13px 0;
  }
  .marquee-track { display: flex; width: max-content; animation: marq 36s linear infinite; }
  .marquee-track > div { display: flex; align-items: center; gap: 34px; padding-right: 34px; }
  .marquee .mq {
    font-size: 12px; text-transform: uppercase; letter-spacing: 2px;
    color: var(--gold); font-weight: bold; white-space: nowrap;
  }
  .marquee .ball { width: 9px; height: 9px; }
  .marquee .ball::before, .marquee .ball::after { width: 13px; height: 13px; border-width: 1.2px; }
  .marquee .ball::before { left: -9px; top: -9px; } .marquee .ball::after { right: -9px; bottom: -9px; }
  @keyframes marq { to { transform: translateX(-50%); } }

  /* ---------- The Angles section (Insight & AI + integrations) ---------- */
  .angles {
    background: linear-gradient(135deg, var(--ink) 0%, #3A2419 55%, var(--green-dark) 100%);
    color: #fff; border-radius: 18px; padding: 48px 52px; position: relative; overflow: hidden;
    display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: center;
  }
  .angles .kicker { color: #F4C9AE; }
  .angles h3 { font-size: 30px; margin-bottom: 12px; line-height: 1.15; }
  .angles > div > p { opacity: 0.88; font-size: 15.5px; max-width: 42em; }
  .angle-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 22px 0; }
  .angle-point { border-left: 2px solid rgba(244, 201, 174, 0.55); padding-left: 14px; }
  .angle-point b { display: block; color: #F4C9AE; font-size: 14.5px; margin-bottom: 4px; }
  .angle-point p { font-size: 13px; opacity: 0.82; line-height: 1.5; }
  .angles-integrations { font-size: 13.5px !important; opacity: 0.72 !important; }
  .angles .btn { margin-top: 20px; }
  .angles-court { position: relative; }
  .angles-court svg { width: 100%; max-width: 300px; display: block; margin: 0 auto; color: rgba(255,255,255,0.35); }
  /* Shot lines draw themselves when the section reveals. */
  .angles-court .shot {
    stroke: #F4C9AE; stroke-width: 4; stroke-dasharray: 700; stroke-dashoffset: 700;
    transition: stroke-dashoffset 1.4s ease 0.35s;
  }
  .angles-court .shot + .shot { transition-delay: 0.65s; }
  .angles-court .shot + .shot + .shot { transition-delay: 0.95s; }
  .rv.in .angles-court .shot, .angles.in .shot { stroke-dashoffset: 0; }
  .angles-court .shot-ball { fill: #F4C9AE; opacity: 0; transition: opacity 0.5s ease 1.5s; }
  .angles.in .shot-ball { opacity: 1; }
  @media (max-width: 880px) {
    .angles { grid-template-columns: 1fr; padding: 34px 26px; }
    .angle-points { grid-template-columns: 1fr; }
    .angles-court svg { max-width: 210px; }
  }

  /* ---------- Motion opt-out ---------- */
  @media (prefers-reduced-motion: reduce) {
    .rv { opacity: 1; transform: none; transition: none; }
    .hero h1, .hero .sub, .hero .serve-line, .hero .ctas, .hero .proof, .hero .mock { animation: none; }
    .marquee-track { animation: none; }
    .angles-court .shot { stroke-dashoffset: 0; transition: none; }
    .angles-court .shot-ball { opacity: 1; transition: none; }
    .btn::after { display: none; }
  }
