:root {
  --bg: #0b0f14;
  --bg-card: #131a22;
  --bg-card-hover: #182230;
  --border: #223041;
  --text: #e8eef4;
  --text-dim: #9fb0c0;
  --text-faint: #6b7d8e;
  --accent: #00d4aa;
  --accent-dim: #00a383;
  --live: #ff4d5e;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 15, 20, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1080px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--text); text-decoration: none; }
.brand-badge {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #0a7c66);
  display: flex; align-items: center; justify-content: center;
  color: #04211b; font-weight: 800; font-size: 15px;
}
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-size: 14.5px; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent); color: #04211b !important;
  padding: 8px 18px; border-radius: 8px; font-weight: 600; font-size: 14px;
}
.nav-cta:hover { background: var(--accent-dim); }

/* ---------- Hero ---------- */
.hero { padding: 88px 0 72px; text-align: center; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(0, 212, 170, 0.10), transparent 70%),
    radial-gradient(600px 300px at 80% 10%, rgba(0, 120, 255, 0.08), transparent 70%);
  pointer-events: none;
}
.hero h1 { font-size: clamp(34px, 5vw, 54px); line-height: 1.15; font-weight: 800; letter-spacing: -1px; }
.hero h1 span { color: var(--accent); }
.hero p.sub { color: var(--text-dim); font-size: clamp(16px, 2vw, 19px); max-width: 640px; margin: 18px auto 0; }
.hero-ctas { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #04211b;
  padding: 14px 28px; border-radius: 12px; font-weight: 700; font-size: 16px;
  text-decoration: none; transition: transform 0.15s, background 0.15s;
}
.btn-primary:hover { background: var(--accent-dim); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center;
  border: 1px solid var(--border); color: var(--text);
  padding: 14px 28px; border-radius: 12px; font-weight: 600; font-size: 16px;
  text-decoration: none; transition: border-color 0.15s;
}
.btn-ghost:hover { border-color: var(--accent); }

.play-badge { width: 18px; height: 18px; }

/* multiview mockup (pure CSS) */
.mockup {
  margin: 56px auto 0; max-width: 620px;
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  background: var(--bg-card);
}
.mockup-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.dot.live { background: var(--live); box-shadow: 0 0 8px var(--live); }
.mockup-bar .live-label { font-size: 11px; font-weight: 700; color: var(--live); letter-spacing: 1.5px; }
.mockup-bar .timer { margin-left: auto; font-size: 11px; color: var(--text-faint); font-variant-numeric: tabular-nums; }
.mockup-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px;
  aspect-ratio: 16 / 9;
}
.pane { border-radius: 6px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.pane small { font-size: 11px; color: rgba(255,255,255,0.55); font-weight: 600; letter-spacing: 1px; }
.pane.active { outline: 2px solid var(--accent); outline-offset: -2px; }
.pane.p1 { background: linear-gradient(135deg, #163a4d, #0d2433); }
.pane.p2 { background: linear-gradient(135deg, #2c2440, #1a1530); }
.pane.p3 { background: linear-gradient(135deg, #40292a, #2b1a1c); }
.pane.p4 { background: linear-gradient(135deg, #173d2e, #0e281f); }
.mockup-score {
  position: absolute; bottom: 10px; left: 10px; right: 10px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(0,0,0,0.55); border-radius: 6px; padding: 6px 12px;
  font-size: 13px; font-weight: 700;
}
.mockup-score .vs { color: var(--accent); }

/* ---------- Sections ---------- */
section { padding: 72px 0; border-top: 1px solid var(--border); }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 800; letter-spacing: -0.5px; }
.section-head p { color: var(--text-dim); margin-top: 10px; max-width: 560px; margin-left: auto; margin-right: auto; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
  padding: 24px; transition: border-color 0.2s, background 0.2s;
}
.card:hover { border-color: var(--accent-dim); background: var(--bg-card-hover); }
.card .icon { font-size: 26px; }
.card h3 { font-size: 17px; margin: 12px 0 6px; }
.card p { font-size: 14px; color: var(--text-dim); }

/* fishing band */
.fishing-band {
  background: linear-gradient(120deg, rgba(0,212,170,0.07), rgba(0,120,255,0.05));
  border: 1px solid rgba(0,212,170,0.25);
  border-radius: 16px; padding: 40px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center;
}
.fishing-band h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; }
.fishing-band h2 em { color: var(--accent); font-style: normal; }
.fishing-band p { color: var(--text-dim); font-size: 15px; margin-top: 12px; }
.fishing-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tag {
  border: 1px solid var(--border); background: rgba(0,0,0,0.25);
  border-radius: 999px; padding: 6px 14px; font-size: 13px; color: var(--text);
}
.fishing-visual { text-align: center; }
.fishing-visual .big { font-size: 52px; }

/* ---------- Pricing ---------- */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; }
.plan.highlight { border-color: var(--accent); position: relative; }
.plan.highlight::before {
  content: "MOST POPULAR"; position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #04211b; font-size: 10.5px; font-weight: 800;
  padding: 3px 12px; border-radius: 999px; letter-spacing: 1px;
}
.plan h3 { font-size: 18px; }
.plan .price { font-size: 34px; font-weight: 800; margin: 10px 0 2px; }
.plan .price small { font-size: 14px; color: var(--text-faint); font-weight: 500; }
.plan ul { list-style: none; margin: 18px 0 24px; flex: 1; }
.plan li { font-size: 14px; color: var(--text-dim); padding: 7px 0 7px 26px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 4px; color: var(--accent); font-weight: 700; }
.plan .btn-primary, .plan .btn-ghost { justify-content: center; }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 0 auto; }
.faq details { border: 1px solid var(--border); border-radius: 12px; background: var(--bg-card); margin-bottom: 12px; overflow: hidden; }
.faq summary { cursor: pointer; padding: 16px 20px; font-weight: 600; font-size: 15px; list-style: none; position: relative; padding-right: 44px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--accent); font-size: 18px; font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq .faq-body { padding: 0 20px 18px; color: var(--text-dim); font-size: 14.5px; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--border); padding: 40px 0 56px; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: flex-start; }
footer .col h4 { font-size: 13px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
footer .col a { display: block; color: var(--text-dim); text-decoration: none; font-size: 14px; padding: 4px 0; }
footer .col a:hover { color: var(--accent); }
.copyright { margin-top: 36px; color: var(--text-faint); font-size: 13px; }

/* ---------- Legal pages ---------- */
.legal { padding: 56px 0 80px; }
.legal h1 { font-size: 32px; margin-bottom: 6px; }
.legal .updated { color: var(--text-faint); font-size: 14px; margin-bottom: 32px; }
.legal h2 { font-size: 20px; margin: 34px 0 12px; color: var(--accent); }
.legal h3 { font-size: 16px; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--text-dim); font-size: 15px; margin-bottom: 10px; }
.legal ul, .legal ol { padding-left: 24px; margin-bottom: 14px; }
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.legal th, .legal td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; color: var(--text-dim); }
.legal th { background: var(--bg-card); color: var(--text); }
.legal strong { color: var(--text); }
.legal hr { border: none; border-top: 1px solid var(--border); margin: 28px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid-3, .plan-grid { grid-template-columns: 1fr; }
  .fishing-band { grid-template-columns: 1fr; padding: 28px; }
  .nav-links a:not(.nav-cta) { display: none; }
}
