/* TeeTime Golf Pass — /golf-deals-app/ landing page (v2)
   Built on the design-system tokens in styles.css */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg-1);
  background: var(--bg-1);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- shared ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ttgp-teal);
  margin: 0 0 14px;
}
.eyebrow.on-dark { color: #5BD0E8; }
h1,h2,h3,h4 { margin: 0; }
.display {
  font-family: var(--font-display); font-weight: 900;
  line-height: 1.08; letter-spacing: -.01em; color: var(--fg-1);
}
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px); line-height: 1.12; letter-spacing: -.01em;
  color: var(--fg-1);
}
.section-title.center { text-align: center; }
.lede { font-size: 19px; line-height: 1.6; color: var(--fg-2); }

section { padding: 84px 0; }
.band-light { background: var(--bg-3); }
.band-blue { background: #EAF7FF; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .03em; font-size: 16px; border-radius: var(--radius-sm);
  padding: 16px 28px; cursor: pointer; border: 2px solid transparent;
  transition: background 120ms ease, color 120ms ease, transform 80ms ease, border-color 120ms ease;
}
.btn-cta { background: var(--cta-bg); color: #fff; }
.btn-cta:hover { background: var(--cta-bg-hover); }
.btn-cta:active { background: var(--cta-bg-press); transform: translateY(1px); }
.btn-outline { background: transparent; color: var(--ttgp-navy); border-color: var(--ttgp-navy); }
.btn-outline:hover { background: var(--ttgp-navy); color: #fff; }
.btn-outline.on-dark { color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline.on-dark:hover { background: #fff; color: var(--ttgp-navy); border-color:#fff; }
.btn-lg { font-size: 17px; padding: 18px 34px; }

/* ---------- promo bar ---------- */
.promo {
  background: var(--ttgp-navy); color: #fff; text-align: center;
  font-family: var(--font-ui); font-size: 14px; font-weight: 500;
  padding: 9px 16px; display: flex; gap: 8px; justify-content: center; align-items: center; flex-wrap: wrap;
}
.promo b { color: #fff; font-weight: 700; }
.promo .count { color: #5BD0E8; }
.promo a { color: #fff; text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--border-1);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.site-header .logo { height: 38px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-family: var(--font-ui); font-weight: 600; font-size: 15px; color: var(--fg-1);
  transition: color 120ms ease;
}
.nav a:hover { color: var(--ttgp-teal); }
.nav a.current { color: var(--ttgp-teal); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.menu-toggle { display: none; background: none; border: none; font-size: 22px; color: var(--ttgp-navy); cursor: pointer; }

/* ---------- hero ---------- */
.hero { background: linear-gradient(180deg, #fff 0%, #EAF7FF 100%); padding: 70px 0 84px; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(34px, 5vw, 56px); }
.hero h1 .accent { color: var(--ttgp-green); }
.hero .lede { margin: 22px 0 30px; max-width: 540px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.get-app { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.qr-block { display: flex; align-items: center; gap: 12px; }
.qr {
  width: 92px; height: 92px; border-radius: var(--radius-md); background: #fff;
  border: 1px solid var(--border-1); display: grid; place-items: center; color: var(--fg-3);
  font-family: var(--font-ui); font-size: 10px; text-align: center; padding: 8px; flex-shrink: 0;
}
.qr i { font-size: 34px; color: var(--ttgp-navy); }
.qr-block .qr-label { font-family: var(--font-ui); font-size: 13px; color: var(--fg-2); max-width: 120px; line-height: 1.35; }

/* app-store badge (CSS) */
.store-badge {
  display: inline-flex; align-items: center; gap: 10px; background: #000; color: #fff;
  border-radius: 10px; padding: 9px 16px; min-width: 168px;
}
.store-badge i { font-size: 26px; }
.store-badge .sb-text { display: flex; flex-direction: column; line-height: 1.1; font-family: var(--font-ui); }
.store-badge .sb-small { font-size: 10px; font-weight: 500; opacity: .9; }
.store-badge .sb-big { font-size: 18px; font-weight: 700; letter-spacing: .01em; }

/* hero device mockup (pre-framed, transparent) */
.hero-phone {
  display: block; width: auto; height: 600px; max-width: 100%; margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(2,48,71,.28));
}
.hero-visual { position: relative; }
.hero-badge {
  position: absolute; z-index: 2; background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  font-family: var(--font-ui);
}
.hero-badge i { font-size: 22px; }
.hero-badge .hb-big { font-family: var(--font-display); font-weight: 900; font-size: 22px; color: var(--ttgp-green); line-height: 1; }
.hero-badge .hb-sm { font-size: 12px; color: var(--fg-2); }
.hero-badge.tl { top: 58px; left: 0; }
.hero-badge.br { bottom: 70px; right: 0; }

/* ---------- trust strip ---------- */
.trust { background: var(--ttgp-navy); padding: 20px 0; }
.trust .wrap { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trust .item {
  display: flex; align-items: center; gap: 10px; color: #fff;
  font-family: var(--font-ui); font-weight: 600; font-size: 15px;
}
.trust .item i { color: var(--ttgp-green); font-size: 18px; }

/* ---------- free tools ---------- */
.tools-head { text-align: center; max-width: 760px; margin: 0 auto 52px; }
.tools-head .lede { margin-top: 16px; }
.free-pill {
  display: inline-flex; align-items: center; gap: 7px; background: var(--ttgp-green); color: #fff;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  font-size: 12px; padding: 6px 13px; border-radius: var(--radius-pill);
}
.tool-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.tool-card {
  background: #fff; border: 1px solid var(--border-1); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card); overflow: hidden;
  display: flex; flex-direction: column;
}
.tool-card .shot {
  background: linear-gradient(180deg, #EAF7FF 0%, #D9F2FF 100%);
  display: flex; align-items: flex-end; justify-content: center; padding: 40px 20px 0;
}
.tool-card .shot img {
  width: auto; height: 480px; max-width: 100%; display: block;
  filter: drop-shadow(0 18px 30px rgba(2,48,71,.22));
}
.tool-card .copy { padding: 30px 34px 36px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.copy-head { display: flex; align-items: center; gap: 12px; }
.tool-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -.01em; line-height: 1.2; }
.tool-card p { color: var(--fg-2); font-size: 16px; margin: 0; }
.tool-card .icon-chip {
  width: 52px; height: 52px; border-radius: var(--radius-md); background: var(--bg-2);
  display: grid; place-items: center; color: var(--ttgp-navy); font-size: 22px; flex-shrink: 0;
}
.tools-close {
  text-align: center; margin-top: 44px; font-family: var(--font-display); font-weight: 700;
  font-size: 22px; color: var(--ttgp-navy); letter-spacing:-.01em; line-height: 1.35;
}
.tools-close .g { color: var(--ttgp-green); }

/* ---------- bridge ---------- */
.bridge { background: var(--ttgp-navy); color: #fff; text-align: center; padding: 96px 0; }
.bridge h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px,3vw,30px); line-height: 1.15; letter-spacing: -.01em; color: #fff; }
.bridge p { font-size: 20px; color: #CFE9F5; max-width: 720px; margin: 22px auto 30px; line-height: 1.55; }
.bridge .anchor {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 40px); line-height: 1.12; letter-spacing: -.015em;
  max-width: 900px; margin: 0 auto 36px;
}
.bridge .anchor .o { color: var(--ttgp-orange); }
.bridge .anchor .g { color: var(--ttgp-green); }

/* ---------- pass value ---------- */
.pass .wrap > .head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 64px; }
.value-card {
  background: #fff; border: 1px solid var(--border-1); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.value-card .vc-num { font-family: var(--font-display); font-weight: 900; font-size: 40px; color: var(--ttgp-green); line-height: 1; }
.value-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin: 14px 0 8px; letter-spacing:-.01em; line-height: 1.2; }
.value-card p { color: var(--fg-2); margin: 0; font-size: 15.5px; }
.tracker { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: center; background: var(--ttgp-navy); border-radius: var(--radius-xl); padding: 48px; color: #fff; }
.tracker .shot { display: flex; justify-content: center; }
.tracker .shot img.tracker-phone { width: auto; height: 560px; max-width: 100%; display: block; filter: drop-shadow(0 18px 30px rgba(0,0,0,.35)); }
.tracker h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px,3vw,30px); line-height: 1.15; letter-spacing:-.01em; color:#fff; }
.tracker p { color: #CFE9F5; font-size: 17px; margin: 18px 0 0; line-height: 1.6; }
.pass-cta { text-align: center; margin-top: 56px; }
.cta-lead { font-family: var(--font-ui); font-weight: 600; font-size: 17px; color: var(--fg-2); margin: 0 0 18px; }
.pass-foot { display:flex; gap: 30px; justify-content:center; flex-wrap:wrap; margin-top: 22px; }
.pass-foot .pf { display:flex; align-items:center; gap:8px; font-family:var(--font-ui); font-weight:600; color:var(--fg-2); font-size:14px; }
.pass-foot .pf i { color: var(--ttgp-green); }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 52px; }
.step { background:#fff; border:1px solid var(--border-1); border-radius: var(--radius-lg); padding: 34px 30px; position: relative; }
.step .num { font-family: var(--font-display); font-weight:900; font-size: 18px; width: 44px; height:44px; border-radius:50%; background: var(--ttgp-navy); color:#fff; display:grid; place-items:center; margin-bottom: 20px; }
.step h4 { font-family: var(--font-display); font-weight:700; font-size: 22px; letter-spacing:-.01em; margin-bottom: 10px; line-height: 1.2; }
.step p { color: var(--fg-2); margin: 0; font-size: 15.5px; }
.guardrail-note { text-align:center; margin-top: 26px; font-family: var(--font-ui); font-size: 14px; color: var(--fg-3); }

/* ---------- account paths ---------- */
.paths { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 44px; }
.path { display:flex; gap:16px; background:#fff; border:1px solid var(--border-1); border-left: 4px solid var(--ttgp-teal); border-radius: var(--radius-md); padding: 22px 24px; }
.path i { font-size: 22px; color: var(--ttgp-teal); margin-top: 2px; }
.path h4 { font-family: var(--font-ui); font-weight: 700; font-size: 16px; margin-bottom: 5px; }
.path p { margin: 0; color: var(--fg-2); font-size: 14.5px; }
.path b { color: var(--ttgp-navy); }

/* ---------- social proof ---------- */
.proof { text-align:center; }
.stars { color: #FFB300; font-size: 20px; letter-spacing: 3px; margin-bottom: 18px; }
.quote { font-family: var(--font-body); font-size: clamp(20px,2.6vw,28px); line-height: 1.5; color: var(--fg-1); max-width: 880px; margin: 0 auto 22px; font-weight: 600; }
.quote .hl { color: var(--ttgp-green); }
.quote-by { font-family: var(--font-ui); font-weight: 700; color: var(--fg-1); font-size: 16px; }
.quote-by span { color: var(--fg-3); font-weight: 500; }
.proof-badges { display:flex; gap: 14px; justify-content:center; flex-wrap:wrap; margin-top: 30px; }
.proof-badges .pb { display:inline-flex; align-items:center; gap:8px; background: var(--bg-2); color: var(--ttgp-navy); font-family: var(--font-ui); font-weight:600; font-size:14px; padding: 9px 16px; border-radius: var(--radius-pill); }
.proof-badges .pb i { color: var(--ttgp-green); }

/* ---------- comparison ---------- */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 44px; background:#fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.compare-table th, .compare-table td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--border-1); }
.compare-table thead th { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing:-.005em; }
.compare-table thead th:nth-child(2) { background: var(--ttgp-navy); color:#fff; text-align:center; }
.compare-table thead th:nth-child(3) { text-align:center; color: var(--fg-3); }
.compare-table tbody td:first-child { font-family: var(--font-ui); font-weight: 600; font-size: 15.5px; }
.compare-table tbody td:nth-child(2) { text-align:center; background: rgba(58,175,86,.06); }
.compare-table tbody td:nth-child(3) { text-align:center; }
.compare-table .yes { color: var(--ttgp-green); font-size: 20px; }
.compare-table .no { color: var(--border-2); font-size: 18px; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .highlight-row td:first-child { color: var(--ttgp-navy); }
.compare-cta { text-align:center; margin-top: 40px; }

/* ---------- faq ---------- */
.faq-list { max-width: 860px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--border-1); border-radius: var(--radius-md); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 18px;
  font-family: var(--font-ui); font-weight: 700; font-size: 17px; color: var(--ttgp-navy);
}
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary i { color: var(--ttgp-teal); transition: transform 160ms ease; flex-shrink:0; }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item .answer { padding: 0 26px 24px; color: var(--fg-2); font-size: 15.5px; line-height: 1.6; }
.faq-item .answer a { color: var(--ttgp-teal); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- footer ---------- */
.site-footer { background: var(--ttgp-navy); color: #fff; padding: 64px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo { height: 40px; margin-bottom: 16px; }
.footer-brand p { color: #BcdAe6; color: rgba(217,242,255,.8); font-size: 15px; margin: 0 0 22px; }
.footer-brand .store-badges { margin-bottom: 22px; }
.footer-social { display:flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); display:grid; place-items:center; font-size:16px; transition: background 120ms ease; }
.footer-social a:hover { background: var(--ttgp-teal); }
.footer-col h5 { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: 0; margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display:flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(217,242,255,.78); font-size: 14.5px; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 48px; padding-top: 22px; display:flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: rgba(217,242,255,.7); }
.footer-bottom a { text-decoration: underline; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .nav, .header-cta .btn { display: none; }
  .menu-toggle { display: block; }
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .tool-grid { grid-template-columns: 1fr; }
  .value-grid, .steps { grid-template-columns: 1fr; }
  .tracker { grid-template-columns: 1fr; text-align: center; }
  .tracker .shot { order: -1; }
  .hero-phone { height: 520px; }
  .paths { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .qr-desktop { display: none !important; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  section { padding: 60px 0; }
  .footer-top { grid-template-columns: 1fr; }
  .trust .wrap { justify-content: center; }
  .hero-phone { height: auto; width: 76%; }
  .tool-card .shot img { height: auto; width: 64%; }
  .tracker .shot img.tracker-phone { height: auto; width: 58%; }
}
