/* ReelScope NEON — Independent Arcade Fishing Notes */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  --bg-deep: #06040e;
  --bg-card: #0e0b1a;
  --bg-elevated: #151226;
  --ink: #f0e6ff;
  --muted: #8b7fa8;
  --neon-pink: #ff2a6d;
  --neon-blue: #00d4ff;
  --neon-purple: #b829dd;
  --neon-gold: #ffd700;
  --gold-dim: #c9a227;
  --line: #2a1f3d;
  --line-bright: #3d2b5a;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.shell { width: min(1200px, 100% - 40px); margin-inline: auto; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,4,14,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-top {
  display: flex; justify-content: space-between; align-items: center;
  height: 76px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand .logo-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 16px;
  box-shadow: 0 0 20px rgba(255,42,109,.35);
}
.brand strong {
  font-size: 15px; letter-spacing: .14em; font-weight: 800;
}
.brand small {
  color: var(--muted); font-size: 10px; letter-spacing: .1em; margin-left: 8px;
}
.header-mail {
  color: var(--neon-blue); font-size: 12px; font-weight: 700;
}
.editorial-nav {
  display: flex; align-items: center; gap: 36px;
  height: 52px; overflow-x: auto;
}
.editorial-nav a {
  font-size: 13px; font-weight: 700; color: var(--muted);
  white-space: nowrap; transition: .2s;
}
.editorial-nav a:hover { color: var(--neon-pink); }

/* ===== EYEBROW ===== */
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  color: var(--neon-pink); font-size: 11px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
}
.eyebrow i {
  width: 28px; height: 2px; background: var(--neon-pink);
  display: inline-block;
  box-shadow: 0 0 8px var(--neon-pink);
}

/* ===== HERO ===== */
.editorial-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center;
  padding: 60px 0 40px;
}
.editorial-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05; font-weight: 500;
  letter-spacing: -0.02em;
  margin: 20px 0 24px;
}
.editorial-copy h1 em {
  color: var(--neon-pink); font-style: italic;
  text-shadow: 0 0 30px rgba(255,42,109,.4);
}
.editorial-copy > p:nth-of-type(2) {
  color: var(--muted); font-size: 17px; line-height: 1.75;
  max-width: 540px;
}
.hero-actions {
  display: flex; align-items: center; gap: 24px;
  margin: 32px 0 18px;
}
.button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; border-radius: 999px;
  font-size: 13px; font-weight: 800; transition: .2s;
}
.button.dark {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: #fff; box-shadow: 0 8px 30px rgba(255,42,109,.3);
}
.button.dark:hover { transform: translateY(-2px); }
.button.outline {
  border: 1px solid var(--line-bright); color: var(--ink);
}
.button.outline:hover { border-color: var(--neon-blue); }
.text-link {
  color: var(--neon-blue); font-size: 14px; font-weight: 700;
}
.editorial-copy > small {
  color: #5a4f6e; font-size: 11px;
}

.hero-art {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow:
    0 0 0 1px var(--line),
    0 20px 60px rgba(0,0,0,.5),
    0 0 80px rgba(184,41,221,.1);
}
.hero-art img {
  width: 100%; height: auto; object-fit: cover;
}
.hero-art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6,4,14,.9) 100%);
  pointer-events: none;
}
.hero-art aside {
  position: absolute; bottom: 5%; left: 5%; right: 5%;
  background: rgba(14,11,26,.92);
  border: 1px solid var(--line-bright);
  border-radius: 18px; padding: 20px;
  backdrop-filter: blur(10px);
}
.hero-art aside b {
  font-size: 10px; color: var(--neon-pink);
  letter-spacing: .14em;
}
.hero-art aside h2 {
  font-family: var(--font-display);
  font-size: 22px; margin: 8px 0 6px; font-weight: 500;
}
.hero-art aside p {
  color: var(--muted); font-size: 12px; line-height: 1.55;
}

/* ===== DISCLAIMER ===== */
.disclaimer-band {
  background: linear-gradient(90deg, rgba(255,42,109,.08), rgba(184,41,221,.08));
  border-block: 1px solid var(--line);
  padding: 24px 0;
}
.disclaimer-band .shell {
  display: flex; align-items: flex-start; gap: 16px;
}
.disclaimer-band b {
  color: var(--neon-pink); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  white-space: nowrap; margin-top: 2px;
}
.disclaimer-band p {
  color: #a08090; font-size: 12px; line-height: 1.7;
  max-width: 900px;
}

/* ===== STATS ===== */
.stat-strip {
  background: var(--bg-card);
  border-bottom: 1px solid var(--line);
}
.stat-strip > div {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-strip p {
  text-align: center; border-right: 1px solid var(--line);
  padding: 28px 16px; margin: 0;
}
.stat-strip p:last-child { border: 0; }
.stat-strip strong {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 500; display: block;
  background: linear-gradient(135deg, var(--neon-gold), #ffaa00);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-strip span {
  color: var(--muted); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
}

/* ===== SECTION HEAD ===== */
.section-head {
  display: grid; grid-template-columns: 1.3fr .7fr;
  gap: 50px; align-items: end;
  margin-bottom: 48px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.06; font-weight: 500;
  letter-spacing: -0.02em; margin-top: 16px;
}
.section-head h2 em {
  color: var(--neon-pink); font-style: italic;
}
.section-head > p {
  color: var(--muted); font-size: 15px; line-height: 1.75;
}

/* ===== REVIEWS ===== */
.current { padding-block: 90px; }
.review-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px; overflow: hidden;
  display: grid; grid-template-columns: 40% 60%;
  min-height: 360px;
  transition: .25s;
}
.review-card:hover {
  border-color: var(--line-bright);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.review-visual {
  position: relative; min-height: 240px; overflow: hidden;
  background: linear-gradient(135deg, #1a0f2e, #0d0818);
}
.review-visual img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.review-visual.rose { background: linear-gradient(135deg, #2a0f1e, #1a0812); }
.review-visual.aqua { background: linear-gradient(135deg, #0f1e2a, #08121a); }
.review-visual.lilac { background: linear-gradient(135deg, #1a0f2a, #12081a); }
.review-visual.peach { background: linear-gradient(135deg, #2a1a0f, #1a1008); }

.mini-phone {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(6deg);
  width: 110px; height: 190px;
  border: 5px solid rgba(255,255,255,.1);
  border-radius: 22px; background: rgba(0,0,0,.4);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7px; padding: 20px 9px 9px;
}
.mini-phone span {
  background: var(--neon-pink); border-radius: 10px;
  box-shadow: 0 0 10px rgba(255,42,109,.3);
}
.mini-phone span:nth-child(2n) { background: var(--neon-blue); box-shadow: 0 0 10px rgba(0,212,255,.3); }
.mini-phone span:nth-child(3n) { background: var(--neon-purple); box-shadow: 0 0 10px rgba(184,41,221,.3); }

.review-content { padding: 24px; }
.review-meta {
  display: flex; justify-content: space-between; align-items: center;
  text-transform: uppercase; letter-spacing: .1em;
  font-size: 9px; font-weight: 800; color: var(--muted);
}
.review-meta strong {
  color: var(--neon-gold); font-size: 13px;
}
.review-content h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500;
  margin: 16px 0 8px;
}
.review-content > p {
  color: var(--muted); font-size: 13px; line-height: 1.6;
}
.review-content dl {
  display: grid; grid-template-columns: 1fr 1fr;
  border-block: 1px solid var(--line);
  margin: 18px 0; padding: 14px 0;
}
.review-content dt {
  text-transform: uppercase; letter-spacing: .1em;
  color: #5a4f6e; font-size: 9px; font-weight: 800;
}
.review-content dd {
  margin-top: 4px; font-size: 12px; font-weight: 600;
}
.review-content > a {
  font-size: 12px; font-weight: 700; color: var(--neon-blue);
}
.review-content > a span { margin-left: 6px; }

/* ===== MULTIPLIERS ===== */
.multipliers { padding: 80px 0; }
.multipliers .section-head { grid-template-columns: 1fr 1fr; }
.multiplier-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mult-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px; padding: 28px;
  transition: .25s;
}
.mult-card:hover { border-color: var(--line-bright); }
.mult-badge {
  display: inline-block; padding: 6px 14px;
  border-radius: 999px; font-size: 12px; font-weight: 800;
}
.mult-badge.pink {
  background: rgba(255,42,109,.15); color: var(--neon-pink);
  border: 1px solid rgba(255,42,109,.3);
}
.mult-badge.purple {
  background: rgba(184,41,221,.15); color: var(--neon-purple);
  border: 1px solid rgba(184,41,221,.3);
}
.mult-card h3 {
  font-family: var(--font-display);
  font-size: 20px; margin: 16px 0 8px; font-weight: 500;
}
.mult-card p {
  color: var(--muted); font-size: 13px; line-height: 1.7;
}
.mult-card.dark {
  background: linear-gradient(135deg, #1a0f2e, #12081a);
  border-color: var(--line-bright);
}
.mult-card.dark h3 { color: var(--ink); }
.mult-card.dark p { color: #9a8ab0; }

/* ===== COMPARE TABLE ===== */
.compare { padding-bottom: 90px; }
.compare-table {
  width: 100%; border-collapse: collapse; font-size: 13px;
}
.compare-table th {
  text-align: left; padding: 14px 16px;
  border-bottom: 2px solid var(--line-bright);
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: #c4b8d8;
}
.compare-table tr:hover { background: rgba(255,255,255,.02); }
.compare-table strong { font-weight: 700; color: var(--ink); }
.compare-table .rating {
  color: var(--neon-gold); font-weight: 700;
}

/* ===== METHODOLOGY ===== */
.methodology {
  background: linear-gradient(180deg, var(--bg-elevated), var(--bg-deep));
  padding: 90px 0;
  border-top: 1px solid var(--line);
}
.method-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 36px;
}
.method-card {
  background: var(--bg-card);
  border-radius: 18px; padding: 26px;
  border: 1px solid var(--line);
  transition: .25s;
}
.method-card:hover { border-color: var(--line-bright); }
.method-card b {
  color: var(--neon-pink);
  font-family: var(--font-display);
  font-size: 20px; font-style: italic;
}
.method-card h3 {
  font-family: var(--font-display);
  font-size: 20px; margin: 12px 0 6px; font-weight: 500;
}
.method-card p {
  color: var(--muted); font-size: 13px; line-height: 1.65;
}

/* ===== GUIDES ===== */
.guides-home {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center;
  padding-block: 90px;
}
.guide-image {
  position: relative; height: 480px;
  border-radius: 24px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.guide-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.guide-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.08; font-weight: 500;
  margin: 16px 0;
}
.guide-copy > p:nth-of-type(2) {
  color: var(--muted); line-height: 1.75; margin-bottom: 20px;
}
.guide-list { list-style: none; padding: 0; }
.guide-list li {
  border-top: 1px solid var(--line);
  padding: 15px 0; font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 14px;
  color: #d0c4e0;
}
.guide-list li span {
  color: var(--neon-pink);
  font-family: var(--font-display);
  font-style: italic; font-size: 15px; min-width: 28px;
}

/* ===== FAQ ===== */
.faq { padding-bottom: 90px; }
.faq-grid {
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: 50px; align-items: start;
}
.faq h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.08; font-weight: 500;
}
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-header {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none;
  font-size: 15px; font-weight: 600; color: var(--ink);
  cursor: pointer; text-align: left;
}
.accordion-header::after {
  content: "+"; font-size: 20px; color: var(--neon-pink);
  transition: .2s; flex-shrink: 0; margin-left: 12px;
}
.accordion-item.open .accordion-header::after { content: "−"; }
.accordion-body {
  max-height: 0; overflow: hidden; transition: .3s ease;
}
.accordion-item.open .accordion-body {
  max-height: 300px; padding-bottom: 20px;
}
.accordion-body p {
  color: var(--muted); font-size: 13px; line-height: 1.7;
}

/* ===== TEAM ===== */
.team {
  background: var(--bg-elevated);
  padding: 90px 0;
  border-top: 1px solid var(--line);
}
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 36px;
}
.team-card {
  background: var(--bg-card);
  border-radius: 18px; padding: 28px;
  text-align: center; border: 1px solid var(--line);
  transition: .25s;
}
.team-card:hover { border-color: var(--line-bright); }
.team-avatar {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  margin: 0 auto 14px;
  display: grid; place-items: center;
  color: #fff; font-family: var(--font-display);
  font-size: 26px; font-weight: 500;
  box-shadow: 0 0 20px rgba(255,42,109,.25);
}
.team-card h4 { font-size: 15px; margin-bottom: 3px; }
.team-card p { color: var(--muted); font-size: 12px; }

/* ===== NEWSLETTER ===== */
.newsletter {
  text-align: center; padding-block: 90px;
}
.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500; margin: 18px 0;
}
.newsletter > p:nth-of-type(2) {
  color: var(--muted); max-width: 580px;
  margin: 0 auto 26px; line-height: 1.7;
}
.newsletter small {
  color: #5a4f6e; display: block; margin-top: 14px; font-size: 12px;
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-card);
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-grid > div:first-child > p {
  max-width: 320px; color: var(--muted);
  font-size: 13px; line-height: 1.7; margin-top: 10px;
}
.footer-grid h3 {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 14px; color: var(--muted);
}
.footer-grid > div:not(:first-child) {
  display: flex; flex-direction: column; gap: 9px;
}
.footer-grid a { font-size: 13px; color: #b0a4c4; transition: .2s; }
.footer-grid a:hover { color: var(--neon-pink); }
.footer-grid p { color: #5a4f6e; font-size: 12px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 36px; padding-top: 18px;
  font-size: 11px; color: #4a3f5e;
}

/* ===== PAGE INTRO ===== */
.page-intro {
  text-align: center; padding: 80px 0 50px;
}
.page-intro .eyebrow { justify-content: center; }
.page-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: 1.04; font-weight: 500;
  max-width: 800px; margin: 20px auto;
}
.page-intro > p:last-child {
  color: var(--muted); font-size: 16px;
  line-height: 1.75; max-width: 640px; margin: 10px auto 0;
}

/* ===== LEGAL / PROSE ===== */
.legal {
  max-width: 780px; margin: 0 auto;
  padding-bottom: 90px;
  color: #a090b8; font-size: 15px; line-height: 1.8;
}
.legal h2 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 26px; font-weight: 500;
  margin: 36px 0 10px;
}
.legal h2:first-child { margin-top: 0; }
.legal a { color: var(--neon-pink); font-weight: 700; }
.legal aside {
  background: rgba(255,42,109,.06);
  border: 1px solid rgba(255,42,109,.15);
  border-radius: 14px; padding: 18px 22px;
  font-size: 12px; margin-top: 36px; color: #b08090;
}

/* ===== STORY (ABOUT) ===== */
.story {
  display: grid; grid-template-columns: 36% 1fr;
  gap: 50px; padding-bottom: 90px;
}
.story-card {
  color: #fff; text-align: center;
  background: linear-gradient(145deg, #2a1f3d, #1a0f2e);
  border-radius: 24px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  min-height: 340px; padding: 40px 24px;
  border: 1px solid var(--line-bright);
  position: relative; overflow: hidden;
}
.story-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,42,109,.15), transparent 60%);
}
.story-card span { font-size: 56px; margin-bottom: 10px; position: relative; }
.story-card p {
  letter-spacing: .16em; font-size: 10px; font-weight: 800;
  margin-bottom: 8px; position: relative;
  color: var(--neon-pink);
}
.story-card h2 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 500;
  max-width: 240px; position: relative;
}
.prose h2 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 500;
  margin: 32px 0 10px;
}
.prose p {
  margin-bottom: 14px; color: #a090b8; line-height: 1.8;
}
.prose a { color: var(--neon-pink); font-weight: 700; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .editorial-hero, .story, .guides-home, .faq-grid, .section-head {
    grid-template-columns: 1fr;
  }
  .review-grid, .multiplier-grid, .method-grid, .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .hero-art { max-height: 420px; }
  .stat-strip > div { grid-template-columns: 1fr 1fr; }
  .stat-strip p:nth-child(2) { border-right: 0; }
  .stat-strip p:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .guide-image { height: 360px; }
}
@media (max-width: 650px) {
  .shell { width: min(100% - 28px, 1200px); }
  .brand small, .header-mail { display: none; }
  .editorial-nav { gap: 20px; height: 48px; }
  .editorial-nav a { font-size: 12px; }
  .editorial-hero { padding: 36px 0 24px; }
  .editorial-copy h1 { font-size: 38px; }
  .review-card { grid-template-columns: 1fr; }
  .review-visual { height: 220px; }
  .multiplier-grid, .method-grid, .team-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .page-intro h1 { font-size: 38px; }
  .story { gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}
