:root {
  --bg: #f3f6f7;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(26, 98, 122, 0.14);
  --ink: #11232b;
  --muted: #5f7179;
  --brand: #1a627a;
  --brand-deep: #103c4b;
  --brand-soft: #dceef3;
  --accent: #7fd3ea;
  --shadow: 0 24px 80px rgba(16, 60, 75, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(127, 211, 234, 0.28), transparent 32%),
    linear-gradient(180deg, #eef4f6 0%, #f8fbfb 24%, #eef4f6 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(80vw, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(243, 246, 247, 0.82);
  border-bottom: 1px solid rgba(17, 35, 43, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--brand) 0%, #2c88a7 100%);
  color: #f7fcfd;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.brand-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name strong {
  font-size: 1.05rem;
  line-height: 1;
}

.brand-name span {
  font-size: 0.74rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #247892 100%);
  color: #f7fcfd;
  box-shadow: 0 18px 34px rgba(26, 98, 122, 0.28);
}

.btn-secondary {
  background: rgba(17, 35, 43, 0.04);
  color: var(--ink);
  border: 1px solid rgba(17, 35, 43, 0.08);
}

.btn-white {
  background: rgba(255, 255, 255, 0.14);
  color: #f5fbfc;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 56px 0 40px;
}

.hero-shell {
  position: relative;
  min-height: 760px;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(127, 211, 234, 0.26), transparent 20%),
    radial-gradient(circle at 66% 78%, rgba(92, 229, 201, 0.18), transparent 18%),
    linear-gradient(90deg, rgba(8, 24, 31, 0.9) 0%, rgba(9, 29, 37, 0.58) 42%, rgba(10, 31, 38, 0.18) 100%),
    url("../images/hero-fishing-sunset.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(10, 31, 38, 0) 0%, rgba(10, 31, 38, 0.48) 100%);
  z-index: 0;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 40%, rgba(255, 255, 255, 0.08) 48%, transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 35%);
  mix-blend-mode: screen;
  opacity: 0.75;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: 34px;
  min-height: 760px;
  padding: clamp(36px, 5vw, 72px);
}

.hero-copy {
  color: #eef7f9;
  max-width: 600px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(127, 211, 234, 0.28);
  font-size: 0.92rem;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero h1,
.section-heading h2,
.cta-box h2 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-weight: 700;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.2vw, 5.4rem);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.hero p {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.85;
  color: rgba(238, 247, 249, 0.82);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  color: rgba(238, 247, 249, 0.76);
  font-size: 0.95rem;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel {
  justify-self: end;
  width: min(100%, 430px);
  display: grid;
  gap: 18px;
}

.floating-card,
.mini-stat,
.review-card,
.social-card,
.shot-card,
.cta-box,
.feature-card {
  backdrop-filter: blur(18px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: 0 20px 60px rgba(16, 60, 75, 0.1);
}

.floating-card {
  border-radius: 30px;
  padding: 16px;
}

.phone-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.phone {
  position: relative;
  width: 100%;
  max-width: 190px;
  justify-self: center;
  align-self: start;
  border-radius: 34px;
  background: linear-gradient(180deg, #0d252e 0%, #173846 100%);
  padding: 10px;
  box-shadow: 0 24px 50px rgba(6, 22, 28, 0.34);
}

.phone.alt {
  max-width: 208px;
}

.phone::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 22px;
  border-radius: 0 0 14px 14px;
  background: #0d252e;
  z-index: 2;
}

.phone-screen {
  aspect-ratio: 9 / 19;
  min-height: 0;
  border-radius: 26px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  background: linear-gradient(180deg, #f4fbfd 0%, #e7f3f7 100%);
}

.phone.alt .phone-screen {
  background: linear-gradient(180deg, #f9fbfc 0%, #edf2f3 100%);
}

.screen-top {
  padding: 16px 16px 12px;
  color: #f2fbfd;
  background: linear-gradient(180deg, rgba(26, 98, 122, 0.96) 0%, rgba(21, 82, 102, 0.96) 100%);
}

.screen-top small,
.screen-top strong,
.list-item span,
.detail-row span,
.feed-item small,
.community-copy p,
.footer-grid p,
.footer-meta {
  line-height: 1.6;
}

.screen-banner {
  margin-top: 12px;
  border-radius: 22px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    url("../images/phone-banner-river.jpg") center/cover no-repeat;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.pill-row,
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.screen-body {
  padding: 12px;
  display: grid;
  gap: 10px;
  overflow: hidden;
}

.list-item,
.feed-item,
.detail-panel {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 35, 43, 0.06);
  padding: 12px;
}

.list-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
}

.thumb {
  aspect-ratio: 1;
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(26, 98, 122, 0.08), rgba(26, 98, 122, 0.32)),
    url("../images/thumb-lure.jpg") center/cover no-repeat;
}

.thumb.alt {
  background:
    linear-gradient(160deg, rgba(26, 98, 122, 0.06), rgba(26, 98, 122, 0.26)),
    url("../images/thumb-lake.jpg") center/cover no-repeat;
}

.thumb.third {
  background:
    linear-gradient(160deg, rgba(26, 98, 122, 0.08), rgba(26, 98, 122, 0.28)),
    url("../images/thumb-boat.jpg") center/cover no-repeat;
}

.list-item strong,
.detail-panel strong,
.shot-card strong,
.review-card strong,
.social-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.list-item strong,
.list-item span,
.detail-row,
.feed-item small {
  font-size: 0.82rem;
}

.list-item span,
.detail-row span,
.feed-item small,
.shot-card p,
.review-card p,
.social-card p,
.feature-card p,
.section-heading p,
.cta-box p,
.footer-grid p,
.footer-meta {
  color: var(--muted);
}

.score-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.detail-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(236, 245, 248, 0.94));
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(17, 35, 43, 0.06);
}

.detail-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.mini-stat-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mini-stat {
  border-radius: 22px;
  padding: 18px;
  color: #eff8fa;
  background: linear-gradient(180deg, rgba(26, 98, 122, 0.84) 0%, rgba(18, 58, 71, 0.88) 100%);
}

.mini-stat strong {
  display: block;
  font-size: 1.8rem;
  margin-top: 8px;
  margin-bottom: 6px;
}

section {
  padding: 92px 0 0;
}

.section-heading {
  max-width: 620px;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  margin-bottom: 14px;
}

.section-heading p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.feature-lead {
  border-radius: 34px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(127, 211, 234, 0.24), transparent 26%),
    linear-gradient(180deg, rgba(16, 60, 75, 0.92) 0%, rgba(26, 98, 122, 0.95) 100%),
    url("../images/feature-lead-river.jpg") center/cover no-repeat;
  color: #edf7f9;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  box-shadow: var(--shadow);
}

.feature-lead h3 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.15;
}

.feature-lead p {
  margin: 0;
  max-width: 28ch;
  color: rgba(237, 247, 249, 0.82);
  line-height: 1.85;
}

.lead-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lead-strip div {
  border-radius: 20px;
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.lead-strip strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  border-radius: 24px;
  padding: 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #1a627a, #7fd3ea, #5ce5c9);
  opacity: 0.9;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(16, 60, 75, 0.14);
  border-color: rgba(127, 211, 234, 0.48);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(26, 98, 122, 0.18), rgba(127, 211, 234, 0.16));
  color: var(--brand);
  font-size: 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.feature-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.feature-card p {
  margin: 0;
  line-height: 1.8;
  font-size: 0.95rem;
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.shot-card {
  border-radius: 28px;
  overflow: hidden;
  min-height: 440px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.shot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 72px rgba(16, 60, 75, 0.14);
}

.shot-image {
  height: 280px;
  background-size: cover;
  background-position: center;
}

.shot-one {
  background-image:
    linear-gradient(180deg, rgba(10, 31, 38, 0.06), rgba(10, 31, 38, 0.26)),
    url("../images/shot-location-lake.jpg");
}

.shot-two {
  background-image:
    linear-gradient(180deg, rgba(10, 31, 38, 0.06), rgba(10, 31, 38, 0.22)),
    url("../images/shot-catch-angler.jpg");
}

.shot-three {
  background-image:
    linear-gradient(180deg, rgba(10, 31, 38, 0.08), rgba(10, 31, 38, 0.22)),
    url("../images/shot-community-outdoor.jpg");
}

.shot-copy {
  padding: 22px;
}

.shot-copy p {
  margin: 0;
  line-height: 1.75;
  font-size: 0.95rem;
}

.community-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 20px;
  align-items: stretch;
}

.social-wall {
  display: grid;
  gap: 16px;
}

.social-card {
  border-radius: 24px;
  padding: 20px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.social-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(16, 60, 75, 0.14);
}

.social-head,
.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(26, 98, 122, 0.3), rgba(92, 229, 201, 0.5));
  display: grid;
  place-items: center;
  color: var(--brand-deep);
  font-weight: 800;
}

.social-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.social-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #20596a;
  background: linear-gradient(180deg, rgba(127, 211, 234, 0.22), rgba(92, 229, 201, 0.16));
  border: 1px solid rgba(127, 211, 234, 0.3);
}

.social-photo {
  border-radius: 20px;
  min-height: 220px;
  margin-top: 16px;
  background-size: cover;
  background-position: center;
}

.photo-a {
  background-image:
    linear-gradient(180deg, rgba(10, 31, 38, 0.12), rgba(10, 31, 38, 0.26)),
    url("../images/photo-fisherman-holding-fish.jpg");
}

.photo-b {
  background-image:
    linear-gradient(180deg, rgba(10, 31, 38, 0.1), rgba(10, 31, 38, 0.22)),
    url("../images/photo-fly-fishing-river.jpg");
  min-height: 190px;
}

.community-copy {
  display: grid;
  gap: 18px;
  grid-auto-rows: 1fr;
}

.review-card {
  border-radius: 26px;
  padding: 22px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.review-card p {
  margin: 0;
  line-height: 1.8;
}

.stars {
  color: #e8b34d;
  letter-spacing: 0.08em;
}

.cta {
  padding-bottom: 92px;
}

.cta-box {
  border-radius: 34px;
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(16, 60, 75, 0.96) 0%, rgba(26, 98, 122, 0.94) 58%, rgba(36, 120, 146, 0.94) 100%);
  color: #eef7f9;
  box-shadow: 0 30px 80px rgba(16, 60, 75, 0.22);
}

.cta-box h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  margin-bottom: 12px;
}

.cta-box p {
  margin: 0;
  color: rgba(238, 247, 249, 0.78);
  max-width: 40ch;
}

.footer {
  padding: 0 0 40px;
}

.footer-shell {
  border-top: 1px solid rgba(17, 35, 43, 0.08);
  padding-top: 28px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-grid p,
.footer-meta {
  margin: 0;
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .feature-layout,
  .community-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-self: stretch;
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .screens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav {
    min-height: 68px;
  }

  .nav-links {
    display: none;
  }

  .hero-shell,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding: 26px;
  }

  .phone-stack,
  .mini-stat-wrap,
  .feature-grid,
  .screens-grid,
  .lead-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .phone,
  .phone.alt {
    max-width: 250px;
    transform: none;
  }

  .footer-grid {
    display: grid;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .brand-name span,
  .actions .btn-secondary {
    display: none;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-shell {
    border-radius: 26px;
  }

  .eyebrow {
    font-size: 0.82rem;
  }

  .hero-actions,
  .cta-box {
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .floating-card {
    padding: 14px;
  }

  .phone,
  .phone.alt {
    max-width: min(76vw, 280px);
    border-radius: 28px;
  }

  .screen-top {
    padding: 14px 14px 10px;
  }

  .screen-banner {
    min-height: 116px;
    padding: 14px;
  }

  .screen-body {
    padding: 10px;
    gap: 8px;
  }

  .list-item,
  .feed-item,
  .detail-panel {
    padding: 10px;
  }

  section {
    padding-top: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
