*, *::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: 4px; left: 0; right: 0; z-index: 100; background: #F8FAFC; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 64px; border-bottom: 1px solid rgba(13,31,53,0.08); }
nav::before { content: ''; position: fixed; top: 0; left: 0; right: 0; height: 4px; background: #0D1F35; z-index: 101; }
.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(13,31,53,0.55); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; cursor: pointer; }
.nav-links a:hover, .nav-links a.active { color: #0D1F35; }
.nav-cta { background: linear-gradient(135deg, #E07060, #D4614E) !important; color: white !important; padding: 8px 18px; border-radius: 6px; font-weight: 600 !important; }
.nav-cta:hover { background: linear-gradient(135deg, #D4614E, #B84A39) !important; }

/* BUTTONS */
.btn-primary { background: linear-gradient(135deg, #E07060 0%, #D4614E 55%, #B84A39 100%); 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: opacity 0.2s, transform 0.15s, box-shadow 0.2s; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 4px 14px rgba(212,97,78,0.3); }
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,97,78,0.4); }
.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: linear-gradient(135deg, #E07060 0%, #D4614E 55%, #B84A39 100%); color: white; border: none; border-radius: 8px; padding: 12px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; transition: opacity 0.2s; margin-top: 4px; box-shadow: 0 4px 14px rgba(212,97,78,0.3); }
.form-submit:hover { opacity: 0.9; }
.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); margin-bottom: 14px; transition: box-shadow 0.2s, border-color 0.2s, background 0.2s; overflow: hidden; }
.update-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.09); border-color: var(--coral); background: white; }
.uc-head { padding: 16px 20px; display: flex; align-items: flex-start; gap: 12px; cursor: default; }
.uc-head-inner { flex: 1; min-width: 0; }
.uc-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.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); }
.t-resource { background: rgba(27,94,138,0.12); color: #1B5E8A; border: 1px solid rgba(27,94,138,0.25); }
.t-news { background: rgba(13,31,53,0.08); color: var(--midnight); border: 1px solid rgba(13,31,53,0.15); }
.uc-date { font-size: 12px; color: var(--text-light); }
.update-card h5 { font-size: 14px; font-weight: 500; color: var(--midnight); margin: 0; line-height: 1.45; }
.uc-chevron { font-size: 16px; color: var(--text-light); flex-shrink: 0; margin-top: 3px; transition: transform 0.25s, color 0.2s; line-height: 1; }
.update-card:hover .uc-chevron { transform: rotate(180deg); color: var(--coral); }
.uc-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s ease; padding: 0 20px; }
.update-card:hover .uc-body { max-height: 500px; padding: 0 20px 18px; border-top: 1px solid var(--muted); }
.update-card.is-open .uc-body { max-height: 500px; padding: 0 20px 18px; border-top: 1px solid var(--muted); }
.update-card.is-open .uc-chevron { transform: rotate(180deg); color: var(--coral); }
.uc-body p { font-size: 13px; color: var(--text-mid); line-height: 1.7; margin: 14px 0 12px; }
.uc-source-link { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: var(--coral); text-decoration: none; border: 1px solid var(--coral); border-radius: 6px; padding: 5px 12px; transition: background 0.15s, color 0.15s; }
.uc-source-link:hover { background: var(--coral); color: white; }

/* 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; }

/* FEATURE CARDS */
.feature-card { display: block; text-decoration: none; background: white; border: 1px solid var(--muted); border-radius: 16px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(13,31,53,0.12); }
.fc-image { aspect-ratio: 16/9; overflow: hidden; }
.fc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.feature-card:hover .fc-image img { transform: scale(1.04); }
.fc-body { padding: 24px 28px 28px; }
.fc-body h3 { font-family: 'DM Serif Display', serif; font-size: 1.25rem; color: var(--midnight); margin: 8px 0 10px; line-height: 1.25; }
.fc-body p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.fc-link { font-size: 13px; font-weight: 600; color: var(--coral); }
.fc-hook { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 1.05rem; color: var(--midnight); line-height: 1.5; border-left: 3px solid var(--coral); padding: 2px 0 2px 14px; margin: 2px 0 12px; }
.fc-dark { background: var(--midnight); border-color: transparent; }
.fc-dark .fc-body h3 { color: white; }
.fc-dark .fc-body p { color: rgba(255,255,255,0.5); }
.fc-dark .fc-link { color: var(--coral-light); }

/* 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; }

  /* UPDATES PAGE SIDEBAR: don't let it stick over the list once columns stack */
  [style*="position:sticky"] { position: static !important; top: auto !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: #0D1F35; border-radius: 2px; transition: all 0.2s; }
.mobile-nav { display: none; position: fixed; top: 68px; left: 0; right: 0; background: #F8FAFC; border-bottom: 1px solid rgba(13,31,53,0.08); z-index: 99; padding: 12px 0; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 12px 2rem; color: rgba(13,31,53,0.65); text-decoration: none; font-size: 15px; font-weight: 500; border-bottom: 1px solid rgba(13,31,53,0.06); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.nav-cta { color: var(--coral); }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* HERO GLOW ANIMATION */
@keyframes heroGlow {
  0%, 100% { opacity: 0.13; transform: scale(1) translate(-50%, -50%); }
  50% { opacity: 0.22; transform: scale(1.08) translate(-46%, -48%); }
}
@keyframes heroGlow2 {
  0%, 100% { opacity: 0.07; transform: scale(1) translate(-50%, -50%); }
  50% { opacity: 0.13; transform: scale(1.06) translate(-54%, -52%); }
}

/* SPORTS TICKER (legacy) */
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent); mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent); }
.ticker-track { display: flex; width: max-content; animation: ticker 28s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: flex; align-items: center; gap: 10px; padding: 0 10px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.38); letter-spacing: 0.04em; white-space: nowrap; }
.ticker-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--coral); opacity: 0.6; flex-shrink: 0; }

/* MARQUEE BAND */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-wrap { background: rgba(0,0,0,0.25); border-top: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); padding: 14px 0; overflow: hidden; position: relative; z-index: 1; }
.marquee-inner { display: inline-flex; gap: 0; animation: marquee 24s linear infinite; white-space: nowrap; }
.marquee-item { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); padding: 0 2.5rem; display: inline-flex; align-items: center; }
.marquee-item::after { content: '✦'; color: #D4614E; font-size: 0.55rem; margin-left: 2.5rem; }

/* ============================================
   ANIMATION & INTERACTION LAYER
   ============================================ */

/* Anchor scrolling clears the fixed nav */
html { scroll-padding-top: 84px; }

/* NAV — white, gains subtle shadow on scroll */
nav { background: #F8FAFC; transition: box-shadow 0.3s ease; }
nav.scrolled { box-shadow: 0 4px 20px rgba(13,31,53,0.08); }

/* Staggered reveal for card groups inside a .reveal section */
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible .reveal-stagger > *, .reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger > *:nth-child(1) { transition-delay: 0.08s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.22s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.36s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.5s; }

/* Premium hover for static cards (light sections) */
.hover-card { transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease; }
.hover-card:hover { box-shadow: 0 12px 32px rgba(13,31,53,0.10); border-color: rgba(212,97,78,0.5) !important; background: white !important; }

/* Premium hover for static cards (dark sections) */
.hover-card-dark { transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease; }
.hover-card-dark:hover { background: rgba(255,255,255,0.09) !important; border-color: rgba(212,97,78,0.55) !important; box-shadow: 0 12px 32px rgba(0,0,0,0.3); }

/* Buttons — slightly richer lift */
.btn-secondary:hover, .btn-outline:hover { transform: translateY(-1px); }
.btn-secondary, .btn-outline { transition: border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s; }
.btn-outline:hover { box-shadow: 0 4px 14px rgba(212,97,78,0.15); }

/* READINESS QUICK CHECK */
.quiz-modal { display: none; position: fixed; inset: 0; z-index: 9998; background: rgba(13,31,53,0.85); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); align-items: center; justify-content: center; padding: 1rem; }
.quiz-modal.open { display: flex; }
.quiz-modal-panel { background: var(--off-white); border-radius: 16px; max-width: 680px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.quiz-modal-head { background: var(--midnight); padding: 24px 28px 20px; }
.quiz-modal-close { position: absolute; top: 12px; right: 12px; background: var(--coral); border: none; border-radius: 50%; width: 30px; height: 30px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: white; font-size: 15px; line-height: 1; font-family: sans-serif; transition: background 0.2s; }
.quiz-modal-close:hover { background: var(--coral-dark); }
.quiz-card { background: white; border: 1px solid var(--muted); border-radius: 16px; padding: 10px 28px 18px; box-shadow: 0 8px 30px rgba(13,31,53,0.06); }
.quiz-q { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--muted); flex-wrap: wrap; }
.quiz-q:last-of-type { border-bottom: none; }
.quiz-q-text { font-size: 15px; color: var(--midnight); font-weight: 500; line-height: 1.55; flex: 1; min-width: 220px; }
.quiz-opts { display: flex; gap: 8px; flex-shrink: 0; }
.quiz-btn { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; padding: 8px 18px; border-radius: 100px; border: 1.5px solid var(--muted); background: var(--off-white); color: var(--text-mid); cursor: pointer; transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s; }
.quiz-btn:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-1px); }
.quiz-btn.sel-yes { background: #EAF3DE; border-color: #3B6D11; color: #3B6D11; }
.quiz-btn.sel-no { background: rgba(212,97,78,0.1); border-color: var(--coral); color: var(--coral-dark); }
.quiz-progress { text-align: center; font-size: 12px; color: var(--text-light); padding-top: 14px; min-height: 30px; }
.quiz-result { overflow: hidden; max-height: 0; opacity: 0; margin-top: 0; transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease; }
.quiz-result.show { max-height: 480px; opacity: 1; margin-top: 20px; }
.quiz-result-inner { background: var(--midnight); border-radius: 14px; padding: 30px 30px 28px; text-align: center; position: relative; overflow: hidden; }
.quiz-result-inner::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--coral) 20%, var(--coral) 80%, transparent); }
.quiz-result-inner h3 { font-family: 'DM Serif Display', serif; font-size: 1.45rem; color: white; margin-bottom: 8px; }
.quiz-result-inner p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 480px; margin: 0 auto 22px; }

/* FAQ ACCORDION */
.faq-item { background: var(--off-white); border: 1px solid var(--muted); border-radius: 12px; margin-bottom: 12px; overflow: hidden; transition: box-shadow 0.25s ease, border-color 0.25s ease; }
.faq-item:hover { border-color: rgba(212,97,78,0.45); box-shadow: 0 6px 20px rgba(13,31,53,0.07); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; text-align: left; background: none; border: none; cursor: pointer; padding: 18px 22px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; color: var(--midnight); }

/* ── CHAT WIDGET ──────────────────────────── */
.chat-bubble { position: fixed; bottom: 28px; right: 28px; z-index: 9000; width: 52px; height: 52px; background: var(--coral); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(212,97,78,0.45); transition: transform 0.2s, box-shadow 0.2s; }
.chat-bubble:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(212,97,78,0.55); }
.chat-bubble svg { pointer-events: none; }
.chat-bubble .cb-close { display: none; }

.chat-panel { position: fixed; bottom: 92px; right: 28px; z-index: 9000; width: 360px; max-height: 520px; background: white; border: 1px solid var(--muted); border-radius: 16px; box-shadow: 0 16px 48px rgba(13,31,53,0.18); display: flex; flex-direction: column; overflow: hidden; opacity: 0; transform: translateY(12px) scale(0.97); pointer-events: none; transition: opacity 0.2s, transform 0.2s; }
.chat-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }

.chat-panel-head { background: var(--midnight); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 14px 16px; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.chat-panel-head-avatar { width: 32px; height: 32px; background: var(--coral); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-panel-head-title { font-size: 13px; font-weight: 600; color: white; line-height: 1.2; }
.chat-panel-head-sub { font-size: 11px; color: rgba(255,255,255,0.4); }

.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; scroll-behavior: smooth; background: white; }
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--muted); border-radius: 4px; }

.chat-msg { max-width: 88%; font-size: 13.5px; line-height: 1.55; padding: 10px 14px; border-radius: 12px; word-wrap: break-word; }
.chat-msg.user { background: var(--coral); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-msg.assistant { background: var(--off-white); color: var(--midnight); border: 1px solid var(--muted); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.booking-nudge { background: rgba(212,97,78,0.08); border: 1px solid rgba(212,97,78,0.3); color: var(--midnight); align-self: stretch; text-align: center; border-radius: 10px; font-size: 12.5px; }
.chat-msg.booking-nudge a { color: var(--coral); font-weight: 600; text-decoration: underline; }

.chat-input-row { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--muted); flex-shrink: 0; background: white; }
.chat-input { flex: 1; background: var(--off-white); border: 1px solid var(--muted); border-radius: 8px; padding: 9px 12px; font-size: 13px; color: var(--midnight); font-family: 'DM Sans', sans-serif; outline: none; resize: none; max-height: 80px; min-height: 38px; line-height: 1.45; transition: border-color 0.15s; }
.chat-input:focus { border-color: rgba(212,97,78,0.5); }
.chat-input::placeholder { color: var(--text-light); }
.chat-send { background: var(--coral); border: none; border-radius: 8px; width: 38px; height: 38px; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.15s; align-self: flex-end; }
.chat-send:hover { background: #c4503e; }
.chat-send:disabled { opacity: 0.4; cursor: default; }

@media (max-width: 480px) {
  .chat-panel { width: calc(100vw - 32px); right: 16px; bottom: 80px; }
  .chat-bubble { bottom: 20px; right: 16px; }
}

/* Hero-embedded chat — dark theme overrides */
.hero-chat-wrap .chat-msg.assistant { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.88); border: 1px solid rgba(255,255,255,0.1); }
.hero-chat-wrap .chat-msg.user { background: var(--coral); color: white; }
.hero-chat-wrap .chat-msg.booking-nudge { background: rgba(212,97,78,0.15); border: 1px solid rgba(212,97,78,0.4); color: rgba(255,255,255,0.85); }
.hero-chat-wrap .chat-msg.booking-nudge a { color: var(--coral-light); }
.hero-chat-wrap::-webkit-scrollbar { width: 4px; }
.hero-chat-wrap::-webkit-scrollbar-track { background: transparent; }
.hero-chat-wrap::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 4px; }
.faq-chevron { font-size: 15px; color: var(--text-light); transition: transform 0.25s ease, color 0.2s; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--coral); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { font-size: 14px; color: var(--text-mid); line-height: 1.75; padding: 0 22px 18px; margin: 0; border-top: 1px solid var(--muted); padding-top: 14px; }

/* REDUCED MOTION — turn everything off gracefully */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .ticker-track { animation: none !important; }
  .hero-parallax div[style*="heroGlow"] { animation: none !important; }
  .quiz-result, .faq-a, .faq-chevron, .uc-body, .uc-chevron { transition: none !important; }
  .feature-card, .fc-image img, .hover-card, .hover-card-dark, .btn-primary, .btn-secondary, .btn-outline, .quiz-btn, nav { transition: none !important; }
  .feature-card:hover { transform: none; }
  .feature-card:hover .fc-image img { transform: none; }
  .btn-primary:hover, .btn-secondary:hover, .btn-outline:hover, .quiz-btn:hover { transform: none; }
}

@media (max-width: 768px) {
  .quiz-q { align-items: flex-start; flex-direction: column; }
  .quiz-opts { width: 100%; }
  .quiz-btn { flex: 1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-right-panel { display: none !important; }
  [style*="grid-template-columns:1.15fr 0.85fr"],
  [style*="grid-template-columns: 1.15fr 0.85fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Hero left panel — fix padding and overflow on mobile */
  [style*="grid-template-columns:1.15fr 0.85fr"] > div:first-child,
  [style*="grid-template-columns: 1.15fr 0.85fr"] > div:first-child {
    padding: 56px 24px 48px 24px !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
  }
  [style*="grid-template-columns:1.15fr 0.85fr"] > div:first-child > div:last-child,
  [style*="grid-template-columns: 1.15fr 0.85fr"] > div:first-child > div:last-child {
    max-width: 100% !important;
  }
}
