:root {
  --bg: #FFFFFF;
  --surface: #F7F8F7;
  --surface-2: #F1F3F2;
  --border: #E6E8E7;
  --border-strong: #D6DAD8;
  --text: #0E1714;
  --text-secondary: #586460;
  --text-muted: #98A19C;
  --accent: #0F6E56;
  --accent-light: #E4F3EE;
  --accent-hover: #0B5443;
  --accent-soft: #6FD3B6;
  --ink-dark: #0B1A15;
  --ink-dark-2: #102A22;
  --red-bg: #FEF2F2;
  --red-text: #B91C1C;
  --red-border: #FECACA;
  --shadow-card: 0 1px 2px rgba(14, 23, 20, 0.04);
  --shadow-hover: 0 12px 32px rgba(14, 23, 20, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.serif {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

section {
  padding-top: 112px;
  padding-bottom: 112px;
}

section[id] {
  scroll-margin-top: 88px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- Shared eyebrow / labels ---------- */
.eyebrow,
.label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.eyebrow--accent {
  color: var(--accent);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Section heading shared ---------- */
.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
}

.section-head h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-top: 16px;
}

.section-head p {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.section-head--light h2 {
  color: #fff;
}

.section-head--light p {
  color: rgba(255, 255, 255, 0.62);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 13px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.btn-lg {
  font-size: 15.5px;
  padding: 15px 28px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 2px rgba(11, 84, 67, 0.2);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 18px rgba(11, 84, 67, 0.22);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
  background: var(--surface);
  border-color: var(--text-muted);
}

.btn-white {
  background: #fff;
  color: var(--accent);
  border: 1px solid transparent;
}

.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230, 232, 231, 0.9);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.wordmark {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 23px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 34px;
  margin-left: auto;
  margin-right: 32px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 10px 20px;
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 104px;
  padding-bottom: 104px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% -8%, rgba(15, 110, 86, 0.08) 0%, transparent 72%);
}

.hero .eyebrow {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--accent);
  letter-spacing: 0.08em;
}

.hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 62px;
  line-height: 1.08;
  color: var(--text);
  margin: 26px auto 0;
  max-width: 760px;
  letter-spacing: -0.025em;
}

.hero .subhead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 24px auto 0;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
}

.trust-line {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 22px;
}

/* ---------- Hero mockup ---------- */
.mockup {
  margin: 72px auto 0;
  max-width: 960px;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(14, 23, 20, 0.05), 0 28px 70px rgba(14, 23, 20, 0.13);
  background: #fff;
  overflow: hidden;
  text-align: left;
}

.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.chrome-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.chrome-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.chrome-dots span:nth-child(1) { background: #FC635D; }
.chrome-dots span:nth-child(2) { background: #FDBC40; }
.chrome-dots span:nth-child(3) { background: #34C749; }

.chrome-url {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.01em;
}

.chrome-spacer {
  width: 52px;
  flex-shrink: 0;
}

.mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.mockup-logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 17px;
  color: var(--text);
}

.mockup-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-body {
  display: grid;
  grid-template-columns: 210px 1fr;
}

.mockup-sidebar {
  border-right: 1px solid var(--border);
  padding: 18px 14px;
  background: var(--surface);
}

.mockup-navitem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 3px;
}

.mockup-navitem.active {
  background: var(--accent-light);
  color: var(--accent);
}

.mockup-navitem .dot {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.65;
}

.mockup-main {
  padding: 22px 24px;
  background: #fff;
}

.mockup-main-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mockup-main-head h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.mockup-pill {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-light);
  padding: 5px 12px;
  border-radius: 7px;
}

.mockup-kpis {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.mockup-kpi {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mockup-kpi-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mockup-kpi-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.mockup-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.mockup-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding: 0 12px 10px;
  border-bottom: 1px solid var(--border);
}

.mockup-table td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.mockup-table tr:last-child td {
  border-bottom: none;
}

.mockup-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.mockup-name .ava {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

.badge-paid {
  background: var(--accent-light);
  color: var(--accent);
}

.badge-overdue {
  background: var(--red-bg);
  color: var(--red-text);
}

.td-muted {
  color: var(--text-secondary);
}

.td-amount {
  font-weight: 600;
}

/* ---------- Trusted-by strip ---------- */
.social {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-top: 48px;
  padding-bottom: 48px;
  text-align: center;
}

.social .eyebrow {
  color: var(--text-muted);
}

.social-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}

.social-row .sep {
  color: var(--border-strong);
}

/* ---------- Problem / Solution compare ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}

.compare-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px;
}

.compare-card--before {
  background: var(--surface);
}

.compare-card--after {
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-hover);
}

.compare-tag {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare-card--before .compare-tag {
  color: var(--text-muted);
}

.compare-card--after .compare-tag {
  color: var(--accent);
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 22px;
}

.compare-list li {
  position: relative;
  padding-left: 34px;
  font-size: 15.5px;
  line-height: 1.5;
}

.compare-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.compare-list--before li {
  color: var(--text-secondary);
}

.compare-list--before li::before {
  content: '×';
  background: #fff;
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
}

.compare-list--after li {
  color: var(--text);
}

.compare-list--after li::before {
  content: '✓';
  background: var(--accent-light);
  color: var(--accent);
}

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-strong);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-top: 10px;
  line-height: 1.65;
}

/* ---------- Onboarding ---------- */
.onboarding-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.onboarding-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.onboarding-copy h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-top: 16px;
}

.onboarding-copy > p {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.65;
}

.onboarding-list {
  list-style: none;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.onboarding-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  color: var(--text);
}

.onboarding-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.onboarding-types {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.type-chip {
  padding: 11px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: #fff;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
}

.type-chip--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ---------- Vision: sport modules ---------- */
.vision-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.vision-feature {
  background: #fff;
  border: 1px solid var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-card);
  border-radius: 16px;
  padding: 36px;
}

.vision-feature-label,
.vision-sports-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.vision-feature h3 {
  font-size: 28px;
  line-height: 1.2;
  color: var(--text);
  margin-top: 14px;
  letter-spacing: -0.01em;
}

.vision-feature > p {
  font-size: 15.5px;
  line-height: 1.65;
  margin-top: 14px;
}

.vision-feature-list {
  list-style: none;
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
}

.vision-feature-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.vision-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

.vision-sports {
  display: flex;
  flex-direction: column;
}

.vision-sports-label {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.vision-sport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex: 1;
}

.vision-sport {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.vision-sport:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.vision-sport span {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
}

.vision-sport small {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ---------- Mobile app outlook ---------- */
.mobile-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mobile-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mobile-copy h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-top: 16px;
}

.mobile-copy > p {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.65;
}

.mobile-list {
  list-style: none;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.5;
}

.mobile-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

.mobile-visual {
  display: flex;
  justify-content: center;
}

.phone {
  width: 270px;
  height: 552px;
  background: var(--ink-dark);
  border-radius: 42px;
  padding: 13px;
  position: relative;
  box-shadow: 0 2px 8px rgba(14, 23, 20, 0.08), 0 30px 70px rgba(14, 23, 20, 0.22);
}

.phone-notch {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 116px;
  height: 24px;
  background: var(--ink-dark);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-screen {
  height: 100%;
  background: var(--surface-2);
  border-radius: 30px;
  padding: 24px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  overflow: hidden;
}

.phone-app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 6px;
}

.phone-app-name {
  font-size: 18px;
  color: var(--text);
}

.phone-app-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-light);
}

.phone-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.phone-card--accent {
  background: var(--accent);
  border-color: var(--accent);
}

.phone-card-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.phone-card--accent .phone-card-label {
  color: rgba(255, 255, 255, 0.7);
}

.phone-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.phone-card--accent .phone-card-title {
  color: #fff;
}

.phone-card-meta {
  font-size: 12.5px;
  color: var(--text-muted);
}

.phone-card--accent .phone-card-meta {
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- Pricing ---------- */
.pricing-section {
  background: #fff;
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 18px 48px rgba(14, 23, 20, 0.1);
  transform: translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-amount {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 40px;
  color: var(--text);
  line-height: 1;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-size {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin: -10px 0 0;
}

.pricing-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
}

.pricing-features {
  list-style: none;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-top: 6px;
  border-top: 1px solid var(--border);
}

.pricing-features li {
  font-size: 14.5px;
  color: var(--text-secondary);
  padding-left: 24px;
  position: relative;
  line-height: 1.45;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}

.pricing-cta {
  text-align: center;
  width: 100%;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ---------- Security / professionalism (dark) ---------- */
.security-section {
  background: var(--ink-dark);
  color: rgba(255, 255, 255, 0.7);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.security-card {
  background: var(--ink-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 32px;
}

.security-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(111, 211, 182, 0.12);
  color: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.security-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.security-card p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
  line-height: 1.65;
}

/* ---------- Final CTA ---------- */
.cta-section {
  background: var(--accent);
  text-align: center;
}

.cta-section h2 {
  font-size: 42px;
  line-height: 1.18;
  color: #fff;
  letter-spacing: -0.02em;
  max-width: 640px;
  margin: 0 auto;
}

.cta-sub {
  font-size: 17.5px;
  color: rgba(255, 255, 255, 0.78);
  margin: 16px auto 36px;
  max-width: 520px;
}

.cta-note {
  margin-top: 20px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 44px;
  padding-bottom: 44px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-left .wordmark {
  font-size: 19px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--text-secondary);
}

/* ---------- Legal Pages ---------- */
.legal-page {
  min-height: calc(100vh - 200px);
  padding: 80px 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 40px;
  font-size: 44px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--text-secondary);
}

/* ---------- Focus states (accessibility) ---------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Mobile hamburger ---------- */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 6px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--text);
  transition: background 0.15s ease;
}

.nav-hamburger:hover {
  background: var(--surface);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Responsive ---------- */

/* Large tablet / small laptop */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 52px;
  }
}

/* Tablet */
@media (max-width: 900px) {
  section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .hero {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero .subhead {
    font-size: 18px;
  }

  .section-head h2,
  .onboarding-copy h2,
  .mobile-copy h2 {
    font-size: 32px;
  }

  .cta-section h2 {
    font-size: 34px;
  }

  /* Stack two-column layouts */
  .compare-grid,
  .onboarding-layout,
  .vision-layout,
  .mobile-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .security-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .pricing-card--featured {
    transform: none;
  }

  .mockup-body {
    grid-template-columns: 160px 1fr;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  /* Hamburger visible; links hidden by default, shown when toggled */
  .nav-hamburger {
    display: flex;
  }

  .nav-inner {
    flex-wrap: wrap;
    height: auto;
    min-height: 68px;
    padding-top: 14px;
    padding-bottom: 14px;
    align-content: center;
  }

  .nav-links {
    display: none;
  }

  .nav-links--open {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    order: 10;
    gap: 0;
    margin: 8px 0 0;
    padding: 8px 0 4px;
    border-top: 1px solid var(--border);
  }

  .nav-links--open a {
    display: block;
    padding: 12px 4px;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
  }

  .nav-links--open a:last-child {
    border-bottom: none;
  }

  .nav-cta {
    font-size: 14px;
    padding: 9px 16px;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero .subhead {
    font-size: 16px;
    max-width: 100%;
  }

  .section-head {
    margin-bottom: 48px;
  }

  .section-head h2,
  .onboarding-copy h2,
  .mobile-copy h2 {
    font-size: 28px;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons .btn {
    text-align: center;
  }

  .compare-card {
    padding: 26px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .vision-feature {
    padding: 28px;
  }

  .vision-feature h3 {
    font-size: 24px;
  }

  .vision-feature-list,
  .vision-sport-grid {
    grid-template-columns: 1fr;
  }

  .mockup-body {
    grid-template-columns: 1fr;
  }

  .mockup-sidebar {
    display: none;
  }

  .mockup-kpis {
    gap: 8px;
  }

  .mockup-kpi {
    padding: 10px;
  }

  .mockup-kpi-value {
    font-size: 15px;
  }

  .mockup-table th:nth-child(3),
  .mockup-table td:nth-child(3) {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .legal-content h1 {
    font-size: 34px;
  }
}

/* Small phone */
@media (max-width: 460px) {
  section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero .subhead {
    font-size: 15px;
  }

  .nav-cta {
    display: none;
  }

  .mockup-main {
    padding: 16px;
  }

  .mockup-kpis {
    flex-wrap: wrap;
  }

  .mockup-kpi {
    flex-basis: calc(50% - 4px);
  }

  .mockup-table th:nth-child(4),
  .mockup-table td:nth-child(4) {
    display: none;
  }

  .pricing-card {
    padding: 28px 24px;
  }

  .phone {
    width: 240px;
    height: 490px;
  }
}
