@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #020509;
  --bg-soft: #06101b;
  --card: #081726;
  --card-2: #0b2033;
  --card-deep: #03111a;
  --border: #16405e;
  --border-soft: rgba(0, 207, 255, 0.18);
  --cyan: #00cfff;
  --gold: #f5a000;
  --gold-deep: #b96f00;
  --green: #27ae60;
  --text: #ffffff;
  --muted: #8eb3ca;
  --dim: #54748e;
  --danger: #e74c3c;
  --shadow-cyan: 0 0 28px rgba(0, 207, 255, 0.18);
  --shadow-gold: 0 0 28px rgba(245, 160, 0, 0.18);
  --container: min(1160px, calc(100% - 36px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(2, 5, 9, 0.74), #020509 640px),
    url("app-status-panel.png") top center / 100% auto no-repeat,
    var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body.community-page {
  background:
    linear-gradient(90deg, rgba(2, 5, 9, 0.96), rgba(2, 5, 9, 0.68)),
    url("app-status-panel.png") top center / cover fixed no-repeat,
    var(--bg);
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--cyan);
  color: #001018;
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  width: var(--container);
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  width: 192px;
  min-width: 150px;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(0, 207, 255, 0.25));
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.site-header a {
  text-decoration: none;
}

.site-header nav a:hover,
.site-footer a:hover {
  color: var(--cyan);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0 22px;
  border: 1.5px solid transparent;
  font-family: "Oswald", Impact, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(90deg, var(--gold), #d4780a);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}

.button-ghost {
  border-color: var(--cyan);
  background: rgba(3, 17, 26, 0.68);
  color: var(--cyan);
}

.button:hover {
  transform: translateY(-1px);
}

.hero,
.section,
.community-band,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: 50px;
  padding: 38px 0 90px;
}

.community-hero {
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.82fr);
}

.eyebrow,
.tag {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(0, 207, 255, 0.32);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(0, 207, 255, 0.08);
}

.tag.gold {
  border-color: rgba(245, 160, 0, 0.42);
  background: rgba(245, 160, 0, 0.11);
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Oswald", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(62px, 10vw, 126px);
  line-height: 0.88;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.96;
}

h3 {
  margin-bottom: 8px;
  font-size: 27px;
  line-height: 1.02;
}

.lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: #dcebf3;
  font-size: 19px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-actions.center {
  justify-content: center;
}

.metric-row,
.community-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 34px;
}

.metric-row span,
.community-proof span {
  min-height: 78px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: rgba(8, 23, 38, 0.72);
  padding: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.metric-row strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 26px;
  line-height: 1;
}

.product-stage {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.phone {
  position: relative;
  z-index: 2;
  width: min(370px, 100%);
  min-height: 610px;
  border: 1.5px solid rgba(0, 207, 255, 0.44);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(11, 32, 51, 0.98), rgba(3, 17, 26, 0.98));
  padding: 18px;
  box-shadow: var(--shadow-cyan), 0 22px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.phone::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  pointer-events: none;
}

.phone-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.phone-top b {
  color: var(--gold);
  font-weight: 800;
}

.spot-card {
  position: relative;
  overflow: hidden;
  border: 1.4px solid var(--border);
  border-radius: 18px;
  background: var(--card);
}

.spot-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.spot-card div {
  padding: 14px;
}

.spot-card strong,
.app-list b,
.ranking-card strong {
  display: block;
  color: #fff;
  font-family: "Oswald", Impact, sans-serif;
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
}

.spot-card span,
.app-list span,
.ranking-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.app-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.app-list div {
  border: 1px solid rgba(0, 207, 255, 0.14);
  border-radius: 14px;
  background: rgba(3, 17, 26, 0.86);
  padding: 13px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  right: 2%;
  bottom: 74px;
  width: 230px;
  border: 1px solid rgba(245, 160, 0, 0.5);
  border-radius: 18px;
  background: rgba(8, 23, 38, 0.92);
  padding: 18px;
  box-shadow: var(--shadow-gold);
}

.hero-fishing {
  position: absolute;
  z-index: 4;
  right: -20px;
  top: 18px;
  width: min(280px, 38vw);
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.38));
}

.section {
  padding: 86px 0;
}

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

.section-heading.narrow {
  max-width: 650px;
}

.section-heading p,
.split-premium p,
.premium-copy p,
.community-band p,
.member-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.interface-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.interface-panel,
.feature-list article,
.venue-card,
.premium-section,
.community-band,
.member-card,
.lead-form,
.thanks-shell {
  border: 1.3px solid var(--border);
  border-radius: 18px;
  background: rgba(8, 23, 38, 0.84);
  box-shadow: var(--shadow-cyan);
}

.interface-panel {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 26px;
}

.interface-panel.wide {
  grid-row: span 2;
  display: grid;
  align-content: space-between;
  min-height: 558px;
}

.interface-panel p,
.feature-list p,
.venue-card p {
  color: var(--muted);
  line-height: 1.62;
}

.interface-panel.wide img {
  width: 100%;
  height: 285px;
  margin-top: 22px;
  border-radius: 14px;
  object-fit: cover;
}

.coin {
  position: absolute;
  right: -36px;
  bottom: -46px;
  width: 178px;
  opacity: 0.96;
}

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

.feature-list article {
  min-height: 260px;
  padding: 26px;
}

.feature-list strong {
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 28px;
}

.split-premium {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 30px;
  align-items: center;
}

.venue-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.78fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
}

.venue-card img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.premium-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
}

.premium-copy {
  max-width: 680px;
}

.premium-lock {
  display: grid;
  justify-items: center;
  min-width: 230px;
  text-align: center;
}

.premium-lock img {
  width: 138px;
  filter: drop-shadow(0 0 22px rgba(0, 207, 255, 0.25));
}

.premium-lock span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.premium-lock strong {
  color: var(--gold);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 28px;
  text-transform: uppercase;
}

.community-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 52px;
  margin-bottom: 60px;
  padding: 34px;
}

.community-band div {
  max-width: 710px;
}

.community-band h2 {
  margin-bottom: 10px;
}

.lead-form {
  display: grid;
  gap: 13px;
  padding: 26px;
}

.premium-form {
  background: rgba(8, 23, 38, 0.94);
}

.form-head h2 {
  margin-bottom: 6px;
  font-size: 34px;
}

.form-head p,
.form-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form label span {
  color: #dcebf3;
  font-size: 13px;
  font-weight: 800;
}

.lead-form input {
  width: 100%;
  min-height: 50px;
  border: 1.3px solid rgba(0, 207, 255, 0.32);
  border-radius: 12px;
  background: rgba(3, 17, 26, 0.86);
  color: #fff;
  font: inherit;
  outline: none;
  padding: 13px 14px;
}

.lead-form input::placeholder {
  color: rgba(142, 179, 202, 0.65);
}

.lead-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 160, 0, 0.16);
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.form-button {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.form-note {
  font-size: 12px;
  text-align: center;
}

.community-steps {
  padding-top: 34px;
}

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

.step-grid article {
  min-height: 220px;
  border: 1.3px solid var(--border);
  border-radius: 18px;
  background: rgba(8, 23, 38, 0.76);
  padding: 26px;
}

.step-grid span {
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 28px;
}

.step-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.member-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 32px;
}

.member-card img {
  width: 180px;
  filter: drop-shadow(0 0 22px rgba(245, 160, 0, 0.24));
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(2, 5, 9, 0.72), rgba(2, 5, 9, 0.98)),
    url("app-status-panel.png") center / cover no-repeat,
    var(--bg);
}

.thanks-shell {
  width: min(720px, 100%);
  padding: 42px;
  text-align: center;
}

.thanks-shell img {
  width: min(320px, 78%);
  margin: 0 auto 18px;
}

.thanks-shell h1 {
  margin-bottom: 12px;
  font-size: clamp(42px, 9vw, 78px);
}

.thanks-shell p {
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0 42px;
  color: rgba(142, 179, 202, 0.82);
  font-size: 14px;
}

.site-footer img {
  width: 178px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #dcebf3;
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header nav {
    display: none;
  }

  .hero,
  .community-hero,
  .split-premium {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-stage {
    min-height: 560px;
  }

  .interface-grid,
  .feature-list,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .interface-panel.wide {
    min-height: 460px;
  }

  .premium-section,
  .community-band {
    display: grid;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 24px, 1160px);
  }

  .site-header {
    min-height: 74px;
  }

  .brand {
    width: 144px;
    min-width: 130px;
  }

  .header-action {
    min-height: 44px;
    padding-inline: 13px;
    font-size: 12px;
  }

  h1 {
    font-size: clamp(52px, 17vw, 76px);
  }

  h2 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions,
  .metric-row,
  .community-proof {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .product-stage {
    min-height: 520px;
  }

  .phone {
    min-height: 530px;
    border-radius: 24px;
  }

  .spot-card img {
    height: 150px;
  }

  .hero-fishing {
    right: -18px;
    top: 8px;
    width: 150px;
  }

  .floating-card {
    right: 0;
    bottom: 18px;
    width: min(230px, 70%);
  }

  .section {
    padding: 58px 0;
  }

  .interface-panel,
  .feature-list article,
  .venue-card,
  .premium-section,
  .community-band,
  .member-card,
  .lead-form,
  .thanks-shell {
    border-radius: 16px;
    padding: 22px;
  }

  .venue-card,
  .member-card {
    grid-template-columns: 1fr;
  }

  .member-card img {
    width: 140px;
  }

  .site-footer {
    display: grid;
    justify-items: center;
    text-align: center;
  }
}
