*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --midnight: #0D1F35; --midnight2: #122640; --steel: #1B5E8A; --sky: #2E86C1;
  --coral: #D4614E; --coral-dark: #B84A39; --coral-light: #F4977F;
  --off-white: #F8FAFC; --muted: #E2EAF0; --text-mid: #4A6580; --text-light: #7A95AA;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--off-white); color: var(--midnight); line-height: 1.6; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(13,31,53,0.98); backdrop-filter: blur(8px); padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 64px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; cursor: pointer; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; cursor: pointer; }
.nav-links a:hover, .nav-links a.active { color: white; }
.nav-cta { background: var(--coral) !important; color: white !important; padding: 8px 18px; border-radius: 6px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--coral-dark) !important; }

/* BUTTONS */
.btn-primary { background: var(--coral); color: white; padding: 14px 28px; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: rgba(255,255,255,0.8); padding: 14px 28px; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); cursor: pointer; transition: border-color 0.2s, color 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); color: white; }
.btn-outline { background: transparent; color: var(--midnight); padding: 12px 24px; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; text-decoration: none; border: 1px solid var(--muted); cursor: pointer; transition: border-color 0.2s, color 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { border-color: var(--coral); color: var(--coral); }
.btn-dark { background: var(--midnight); color: white; padding: 14px 28px; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-dark:hover { background: var(--midnight2); }

/* COMMON */
.section-inner { max-width: 1100px; margin: 0 auto; }
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral); margin-bottom: 12px; }
.eyebrow.light { color: var(--coral-light); }
.section-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.15; color: var(--midnight); margin-bottom: 16px; }
.section-title.light { color: white; }
.lead { font-size: 16px; color: var(--text-mid); max-width: 620px; line-height: 1.8; }
.lead.light { color: rgba(255,255,255,0.6); }
.coral-line { width: 36px; height: 3px; background: var(--coral); border-radius: 2px; margin-bottom: 20px; }

/* PAGE HERO */
.page-hero { background: var(--midnight); padding: 120px 2rem 70px; position: relative; overflow: hidden; }
.ph-band { position: absolute; top: -20%; right: -5%; width: 50%; height: 140%; background: rgba(27,94,138,0.1); transform: skewX(-8deg); pointer-events: none; }
.ph-dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.ph-line { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--coral) 20%, var(--coral) 80%, transparent); }
.ph-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.ph-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,97,78,0.12); border: 1px solid rgba(212,97,78,0.3); color: var(--coral-light); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; }
.ph-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.page-hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(2.2rem, 4vw, 3.2rem); color: white; line-height: 1.1; margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--coral-light); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 600px; line-height: 1.8; }

/* TRUST BAR */
.trust-bar { background: white; border-bottom: 1px solid var(--muted); padding: 16px 2rem; }
.trust-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--text-mid); }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }

/* PRODUCT CARD */
.product-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden; }
.pc-header { background: rgba(212,97,78,0.12); border-bottom: 1px solid rgba(212,97,78,0.2); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; }
.pc-title { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral-light); }
.pc-badge { background: rgba(92,221,154,0.15); border: 1px solid rgba(92,221,154,0.3); border-radius: 100px; padding: 3px 10px; font-size: 11px; font-weight: 600; color: #5CDD9A; }
.pc-body { padding: 24px; }
.club-name { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: white; margin-bottom: 20px; }
.club-name span { color: var(--coral-light); }
.report-rows { display: flex; flex-direction: column; gap: 10px; }
.rr { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; background: rgba(255,255,255,0.04); border-radius: 8px; border: 1px solid rgba(255,255,255,0.07); }
.rr-label { font-size: 13px; color: rgba(255,255,255,0.5); }
.rr-status { font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
.s-gap { background: rgba(212,97,78,0.2); color: var(--coral-light); }
.s-partial { background: rgba(239,159,39,0.2); color: #EF9F27; }
.s-met { background: rgba(92,221,154,0.15); color: #5CDD9A; }
.pc-footer { border-top: 1px solid rgba(255,255,255,0.07); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; }
.pc-footer-text { font-size: 12px; color: rgba(255,255,255,0.3); }
.pc-footer-link { font-size: 13px; font-weight: 600; color: var(--coral-light); cursor: pointer; }

/* PRIVACY STRIP */
.privacy-strip { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 28px 32px; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pi { display: flex; align-items: flex-start; gap: 14px; }
.pi-icon { width: 36px; height: 36px; background: rgba(92,221,154,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pi-icon svg { width: 18px; height: 18px; color: #5CDD9A; }
.pi-label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8); margin-bottom: 3px; }
.pi-desc { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* NEWSLETTER FORM */
.nl-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 36px; }
.nl-form h3 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: white; margin-bottom: 8px; }
.nl-form p { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 24px; }
.ff { margin-bottom: 14px; }
.ff label { display: block; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.5); margin-bottom: 6px; letter-spacing: 0.04em; }
.ff input, .ff select, .ff textarea { width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 10px 14px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: white; outline: none; transition: border-color 0.2s; }
.ff input::placeholder, .ff textarea::placeholder { color: rgba(255,255,255,0.25); }
.ff input:focus, .ff textarea:focus { border-color: rgba(255,255,255,0.3); }
.ff select { appearance: none; }
.ff select option { background: var(--midnight); }
.form-submit { width: 100%; background: var(--coral); color: white; border: none; border-radius: 8px; padding: 12px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.2s; margin-top: 4px; }
.form-submit:hover { background: var(--coral-dark); }
.form-disc { font-size: 11px; color: rgba(255,255,255,0.25); margin-top: 12px; line-height: 1.5; text-align: center; }

/* FOUNDER */
.founder-card { background: white; border: 1px solid var(--muted); border-radius: 16px; padding: 36px; }
.fa { width: 68px; height: 68px; background: var(--midnight); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: white; margin-bottom: 18px; }
.fn { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: var(--midnight); margin-bottom: 2px; }
.ft { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 18px; }
.fb { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 14px; }
.cp { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 6px; }
.pill { background: rgba(13,31,53,0.05); color: var(--midnight); font-size: 11px; font-weight: 500; padding: 4px 11px; border-radius: 100px; border: 1px solid var(--muted); }

/* UPDATE CARDS */
.update-card { background: var(--off-white); border: 1px solid var(--muted); border-radius: 0 12px 12px 0; border-left: 3px solid var(--coral); padding: 20px; margin-bottom: 14px; transition: transform 0.15s; }
.update-card:hover { transform: translateX(4px); }
.uc-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.uc-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; }
.t-new { background: rgba(92,221,154,0.18); color: #3B6D11; border: 1px solid rgba(92,221,154,0.3); }
.t-update { background: rgba(212,97,78,0.15); color: var(--coral-dark); border: 1px solid rgba(212,97,78,0.3); }
.t-reminder { background: rgba(239,159,39,0.18); color: #854F0B; border: 1px solid rgba(239,159,39,0.3); }
.uc-date { font-size: 12px; color: var(--text-light); }
.update-card h5 { font-size: 14px; font-weight: 500; color: var(--midnight); margin-bottom: 4px; }
.update-card p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* CHECKLIST */
.check-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; background: white; border: 1px solid var(--muted); border-radius: 12px; margin-bottom: 12px; }
.check-box { width: 24px; height: 24px; border-radius: 6px; border: 2px solid var(--muted); flex-shrink: 0; margin-top: 1px; }
.check-title { font-size: 15px; font-weight: 500; color: var(--midnight); margin-bottom: 4px; }
.check-desc { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

/* VALUES */
.value-row { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: baseline; padding: 32px 0; border-bottom: 1px solid var(--muted); }
.value-row:last-child { border-bottom: none; }
.value-name { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--midnight); line-height: 1.2; }
.value-standout { font-size: 15px; font-style: italic; color: var(--midnight); font-family: 'DM Serif Display', serif; margin-bottom: 8px; line-height: 1.4; }
.value-desc { font-size: 14px; color: var(--text-mid); line-height: 1.75; }

/* FINAL CTA */
.final-cta { background: var(--midnight); padding: 100px 2rem; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(27,94,138,0.12) 0%, transparent 70%); pointer-events: none; }
.final-cta::after { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"); background-size: 200px 200px; pointer-events: none; }
.final-cta h2 { font-family: 'DM Serif Display', serif; font-size: clamp(2rem,3.5vw,3rem); color: white; margin-bottom: 14px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.2; position: relative; z-index: 1; }
.final-cta p { color: rgba(255,255,255,0.5); font-size: 16px; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.fca { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* FOOTER */
footer { background: #080F1A; padding: 40px 2rem 32px; border-top: 1px solid rgba(255,255,255,0.05); }
.ft-top { max-width: 1100px; margin: 0 auto 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.ft-brand p { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.7; margin-top: 12px; max-width: 340px; }
.ft-tagline { font-size: 12px; font-style: italic; color: rgba(255,255,255,0.2); margin-top: 8px; }
.ft-ack { font-size: 12px; color: rgba(255,255,255,0.25); line-height: 1.7; border-left: 2px solid rgba(212,97,78,0.3); padding-left: 16px; }
.ft-bottom { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }
.ft-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
.ft-links { display: flex; gap: 20px; list-style: none; }
.ft-links a { font-size: 12px; color: rgba(255,255,255,0.2); text-decoration: none; }
.ft-links a:hover { color: rgba(255,255,255,0.5); }

/* FILTER */
.filter-btn { background: var(--off-white); border: 1px solid var(--muted); border-radius: 100px; padding: 6px 14px; font-size: 12px; font-weight: 500; color: var(--text-mid); cursor: pointer; transition: all 0.15s; font-family: 'DM Sans', sans-serif; }
.filter-btn:hover { border-color: var(--coral); color: var(--coral); }
.filter-btn.active { background: var(--midnight); border-color: var(--midnight); color: white; }

/* CHECKLIST TOOLTIPS */
.tip-item { position: relative; display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: white; border: 1px solid var(--muted); border-radius: 10px; margin-bottom: 10px; cursor: default; transition: border-color 0.15s; }
.tip-item:hover { border-color: var(--coral); }
.tip-check { width: 22px; height: 22px; border-radius: 5px; border: 1.5px solid var(--muted); flex-shrink: 0; }
.tip-title { font-size: 15px; font-weight: 500; color: var(--midnight); flex: 1; }
.tip-icon { width: 20px; height: 20px; border-radius: 50%; background: var(--muted); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; font-weight: 700; color: var(--text-mid); cursor: help; }
.tip-tooltip { display: none; position: absolute; left: 0; right: 0; top: calc(100% + 8px); background: var(--midnight); color: rgba(255,255,255,0.85); font-size: 13px; line-height: 1.65; padding: 14px 18px; border-radius: 10px; z-index: 100; }
.tip-tooltip::before { content: ''; position: absolute; top: -5px; left: 28px; width: 10px; height: 10px; background: var(--midnight); transform: rotate(45deg); }
.tip-item:hover .tip-tooltip { display: block; }

/* RESPONSIVE */
@media (max-width: 768px) {
  /* NAV */
  .nav-links { display: none; }
  nav { padding: 0 1rem; }

  /* PREVENT HORIZONTAL OVERFLOW */
  body { overflow-x: hidden; }
  * { max-width: 100%; }

  /* SECTIONS */
  section, .page-hero, .final-cta, .trust-bar { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
  .section-inner, .ph-inner { padding: 0; }

  /* ALL INLINE GRIDS -> SINGLE COLUMN */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1.2fr"],
  [style*="grid-template-columns: 1fr 1.2fr"],
  [style*="grid-template-columns:1fr 1.4fr"],
  [style*="grid-template-columns: 1fr 1.4fr"],
  [style*="grid-template-columns:1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr"],
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(2,1fr)"],
  [style*="grid-template-columns: repeat(2,1fr)"],
  [style*="grid-template-columns:260px 1fr"],
  [style*="grid-template-columns: 260px 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* PRICING STRIP */
  [style*="grid-template-columns:1fr 1fr 1fr"] { grid-template-columns: 1fr !important; }

  /* TRUST BAR */
  .trust-inner { gap: 12px; justify-content: flex-start; }

  /* PRIVACY STRIP */
  .privacy-strip { grid-template-columns: 1fr; }

  /* FOOTER */
  .ft-top { grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* VALUES */
  .value-row { grid-template-columns: 1fr; gap: 12px; }

  /* BUTTONS */
  .btn-row, .fca { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary, .btn-dark, .btn-outline { width: 100%; justify-content: center; }

  /* TYPOGRAPHY */
  .section-title { font-size: 1.6rem !important; }
  .page-hero h1 { font-size: 2rem !important; }
  h1 { font-size: 2rem !important; }

  /* CHECKLIST */
  .tip-item { flex-wrap: wrap; }
  [style*="grid-template-columns:1fr 1fr"][class*="tip"] { grid-template-columns: 1fr !important; }

  /* PRICING CARDS */
  [style*="max-width:760px"] { max-width: 100% !important; }
  [style*="max-width:700px"] { max-width: 100% !important; }

  /* HERO BADGES ROW */
  [style*="display:flex"][style*="gap:28px"] { flex-wrap: wrap; gap: 12px !important; }
  [style*="display:flex"][style*="gap:36px"] { flex-wrap: wrap; gap: 12px !important; }
}

/* HAMBURGER MOBILE NAV */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: all 0.2s; }
.mobile-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; background: rgba(13,31,53,0.98); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(255,255,255,0.07); z-index: 99; padding: 12px 0; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 12px 2rem; color: rgba(255,255,255,0.75); text-decoration: none; font-size: 15px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.nav-cta { color: var(--coral); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
