/* BANTAY landing — navy/gold/cyan brand system */
:root {
  --navy: #1F3864; --navy-2: #2d4f8a; --navy-dark: #16213e;
  --gold: #C9A84C; --cyan: #59c8f0; --ink: #111827; --muted: #6b7280;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; color: var(--ink); background: #fff; line-height: 1.6; }
img { max-width: 100%; }
a { color: inherit; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* header */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid #eef0f4; }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img.mark { height: 40px; }
.nav-brand img.word { height: 20px; }
.nav-links { display: flex; gap: 22px; align-items: center; font-size: 14px; font-weight: 600; color: var(--muted); }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--navy); }
.btn { display: inline-block; padding: 12px 22px; border-radius: 14px; font-weight: 800; font-size: 15px; text-decoration: none; transition: transform .12s ease; }
.btn:active { transform: scale(.97); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-ghost { border: 2px solid rgba(255,255,255,0.35); color: #fff; }
.btn-sm { padding: 9px 16px; font-size: 13px; border-radius: 11px; }

/* hero */
.hero { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-dark) 100%); color: #fff; padding: 72px 0 84px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -140px; right: -120px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.16), transparent 70%); }
.hero::after { content: ''; position: absolute; bottom: -160px; left: -140px; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(89,200,240,0.14), transparent 70%); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero .mark-big { height: 120px; filter: drop-shadow(0 0 18px rgba(103,216,244,0.45)); margin-bottom: 22px; }
.hero h1 { font-size: clamp(30px, 4.6vw, 46px); line-height: 1.15; font-weight: 900; letter-spacing: -0.5px; }
.hero h1 .gold { color: var(--gold); }
.hero p.sub { margin: 18px 0 30px; font-size: 17px; color: #c6d3ea; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 14px; font-size: 13px; color: #9fb2d4; }
.phone { width: 300px; margin: 0 auto; border-radius: 36px; border: 10px solid #0e1830; box-shadow: 0 30px 80px rgba(0,0,0,0.45); overflow: hidden; background: #0e1830; }
.phone img { display: block; width: 100%; }

/* sections */
section { padding: 74px 0; }
.eyebrow { font-size: 12px; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
h2.title { font-size: clamp(24px, 3.4vw, 34px); font-weight: 900; color: var(--navy); margin: 8px 0 14px; }
p.lead { color: var(--muted); max-width: 640px; }
.center { text-align: center; }
.center p.lead { margin: 0 auto; }

/* features */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.card { background: #fff; border: 1px solid #eef0f4; border-radius: 22px; padding: 26px; box-shadow: 0 2px 10px rgba(16,24,40,0.04); }
.card .ico { font-size: 30px; }
.card h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin: 12px 0 6px; }
.card p { font-size: 14px; color: var(--muted); }

/* steps */
.steps { background: #f7f9fd; }
.step-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; counter-reset: step; }
.step { background: #fff; border-radius: 22px; padding: 28px; border: 1px solid #eef0f4; position: relative; }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: -18px; left: 24px; width: 38px; height: 38px; border-radius: 12px; background: var(--gold); color: var(--navy); font-weight: 900; display: flex; align-items: center; justify-content: center; font-size: 17px; }
.step h3 { font-weight: 800; color: var(--navy); margin: 10px 0 6px; font-size: 16px; }
.step p { font-size: 14px; color: var(--muted); }

/* pricing */
.tiers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 42px; align-items: stretch; }
.tier { border: 1px solid #eef0f4; border-radius: 20px; padding: 22px 18px; display: flex; flex-direction: column; background: #fff; }
.tier.hot { background: linear-gradient(160deg, #1a2f54, var(--navy) 60%, #27447a); color: #fff; border: 1.5px solid var(--gold); position: relative; }
.tier.hot .chip { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 900; padding: 4px 12px; border-radius: 999px; white-space: nowrap; }
.tier h3 { font-size: 15px; font-weight: 900; color: var(--navy); }
.tier.hot h3 { color: #fff; }
.tier .price { font-size: 26px; font-weight: 900; margin: 8px 0 2px; color: var(--ink); }
.tier.hot .price { color: var(--gold); }
.tier .per { font-size: 11px; color: var(--muted); }
.tier.hot .per { color: #a9bbd8; }
.tier ul { list-style: none; margin: 14px 0 18px; font-size: 12.5px; color: var(--muted); display: flex; flex-direction: column; gap: 7px; }
.tier.hot ul { color: #dbe4f5; }
.tier ul li::before { content: '✓  '; color: var(--gold); font-weight: 900; }
.tier .cta { margin-top: auto; text-align: center; }
.pricing-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 26px; }

/* seats */
.seats { background: #f7f9fd; }
.seat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }

/* faq */
details { border: 1px solid #eef0f4; border-radius: 16px; padding: 18px 22px; margin-top: 12px; background: #fff; }
details summary { font-weight: 800; color: var(--navy); cursor: pointer; font-size: 15px; }
details p { margin-top: 10px; font-size: 14px; color: var(--muted); }

/* cta band */
.band { background: linear-gradient(160deg, var(--navy), var(--navy-dark)); color: #fff; text-align: center; border-radius: 28px; padding: 56px 28px; }
.band h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 900; }
.band p { color: #c6d3ea; margin: 10px 0 26px; }

/* footer */
footer { border-top: 1px solid #eef0f4; padding: 36px 0 44px; font-size: 13px; color: var(--muted); }
.foot { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; align-items: center; }
.foot-links { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-links a { text-decoration: none; }
.foot-links a:hover { color: var(--navy); }

/* legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 56px 20px 80px; }
.legal h1 { color: var(--navy); font-size: 30px; font-weight: 900; margin-bottom: 6px; }
.legal .updated { color: var(--muted); font-size: 13px; margin-bottom: 30px; }
.legal h2 { color: var(--navy); font-size: 19px; font-weight: 800; margin: 28px 0 10px; }
.legal p, .legal li { font-size: 14.5px; color: #374151; margin-bottom: 10px; }
.legal ul { padding-left: 22px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p.sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero .mark-big { margin-left: auto; margin-right: auto; }
  .phone { margin-top: 40px; }
  .grid3, .step-row, .seat-cards { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr 1fr; }
  .nav-links .hide-m { display: none; }
}
@media (max-width: 560px) { .tiers { grid-template-columns: 1fr; } }

/* pain points */
.pain { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff; }
.pain .eyebrow { color: var(--cyan); }
.pain h2.title { color: #fff; }
.pain p.lead { color: #b9c7e2; }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
.pain-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 22px; padding: 26px; }
.pain-card .ico { font-size: 28px; }
.pain-card h3 { font-size: 17px; font-weight: 900; margin: 12px 0 8px; color: #fff; }
.pain-card p.hurt { font-size: 14px; color: #b9c7e2; }
.pain-card p.fix { font-size: 13.5px; color: var(--gold); font-weight: 700; margin-top: 12px; }
.pain-card p.fix::before { content: '→ '; }

/* speed / fomo */
.speed-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 10px; }
.tline { margin-top: 34px; display: flex; flex-direction: column; gap: 0; }
.tstep { display: flex; gap: 18px; position: relative; padding-bottom: 26px; }
.tstep:not(:last-child)::before { content: ''; position: absolute; left: 27px; top: 44px; bottom: 0; width: 2px; background: #e3e9f4; }
.tstep .clock { flex-shrink: 0; width: 56px; height: 44px; border-radius: 12px; background: var(--navy); color: var(--gold); font-weight: 900; display: flex; align-items: center; justify-content: center; font-size: 14px; font-variant-numeric: tabular-nums; }
.tstep h4 { font-size: 15.5px; font-weight: 800; color: var(--navy); }
.tstep p { font-size: 13.5px; color: var(--muted); }
.fomo { margin-top: 26px; background: #fff7e8; border: 1px solid #f0dfb6; border-radius: 16px; padding: 16px 20px; font-size: 14px; color: #7a5b16; }
.fomo b { color: #5c430c; }

/* feature matrix */
.matrix-scroll { overflow-x: auto; margin-top: 40px; border: 1px solid #eef0f4; border-radius: 20px; }
table.matrix { border-collapse: collapse; width: 100%; min-width: 640px; font-size: 13.5px; background: #fff; }
.matrix th, .matrix td { padding: 11px 14px; border-bottom: 1px solid #f1f3f7; text-align: center; }
.matrix th { background: #f7f9fd; font-weight: 900; color: var(--navy); font-size: 13px; position: sticky; top: 0; }
.matrix td:first-child, .matrix th:first-child { text-align: left; font-weight: 600; color: #374151; position: sticky; left: 0; background: #fff; min-width: 250px; }
.matrix th:first-child { background: #f7f9fd; }
.matrix tr:last-child td { border-bottom: none; }
.matrix .ck { display: inline-flex; width: 20px; height: 20px; border-radius: 6px; background: #e7f6ec; color: #16a34a; font-weight: 900; align-items: center; justify-content: center; font-size: 12px; }
.matrix .dash { color: #c3c9d4; }
.matrix .note { font-size: 10.5px; color: var(--muted); font-weight: 400; }
.matrix-foot { font-size: 12px; color: var(--muted); margin-top: 14px; line-height: 1.7; }
.matrix td.mod b { font-weight: 800; color: var(--navy); }

@media (max-width: 900px) {
  .pain-grid { grid-template-columns: 1fr; }
  .speed-wrap { grid-template-columns: 1fr; }
}

/* full feature audit */
.audit { background: #f7f9fd; }
.audit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.acat { background: #fff; border: 1px solid #eef0f4; border-radius: 20px; padding: 4px 0; overflow: hidden; }
.acat details { border: none; border-radius: 0; margin: 0; padding: 0; background: transparent; }
.acat summary { list-style: none; cursor: pointer; padding: 18px 22px; display: flex; align-items: center; gap: 12px; font-weight: 900; color: var(--navy); font-size: 15.5px; }
.acat summary::-webkit-details-marker { display: none; }
.acat summary .aic { font-size: 22px; }
.acat summary .cnt { margin-left: auto; font-size: 11px; font-weight: 800; color: var(--gold); background: #faf5e6; border: 1px solid #f0e4c1; padding: 2px 10px; border-radius: 999px; white-space: nowrap; }
.acat summary .chev { color: #b9c2d4; transition: transform .2s; font-size: 12px; }
.acat details[open] summary .chev { transform: rotate(90deg); }
.acat ul { list-style: none; padding: 0 22px 18px; display: flex; flex-direction: column; gap: 9px; }
.acat li { font-size: 13.5px; color: #4b5563; padding-left: 22px; position: relative; }
.acat li::before { content: '✓'; position: absolute; left: 0; top: 1px; color: #16a34a; font-weight: 900; font-size: 12px; background: #e7f6ec; width: 16px; height: 16px; border-radius: 5px; display: flex; align-items: center; justify-content: center; }
.acat li b { color: var(--navy); }
.audit-cta { text-align: center; margin-top: 34px; }
.audit-stat { display: flex; justify-content: center; gap: 34px; margin-top: 26px; flex-wrap: wrap; }
.audit-stat div { text-align: center; }
.audit-stat .n { font-size: 30px; font-weight: 900; color: var(--navy); }
.audit-stat .l { font-size: 12px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 900px) { .audit-grid { grid-template-columns: 1fr; } }
