:root {
  --ink: #071b24;
  --muted: #667884;
  --line: rgba(7, 27, 36, 0.12);
  --paper: #ffffff;
  --mist: #f3f7f7;
  --teal: #0b89a6;
  --teal-dark: #063849;
  --cyan: #42e0d1;
  --sand: #f5e7cf;
  --orange: #f59d4c;
  --shadow: 0 24px 80px rgba(7, 27, 36, 0.16);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--mist);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 0%, rgba(66, 224, 209, 0.18), transparent 34rem),
    linear-gradient(180deg, #f8fbfb 0%, #eef4f2 52%, #f7efe2 100%);
}

body[data-page="login"],
body[data-page="register"] {
  min-height: 100vh;
  color: #fff;
  background:
    radial-gradient(circle at 16% 18%, rgba(66, 224, 209, 0.32), transparent 18rem),
    radial-gradient(circle at 84% 70%, rgba(245, 157, 76, 0.2), transparent 20rem),
    linear-gradient(135deg, rgba(3, 16, 23, 0.88), rgba(5, 46, 62, 0.88)),
    url("https://images.unsplash.com/photo-1516685018646-549198525c1b?auto=format&fit=crop&w=2200&q=80") center/cover fixed;
}

body[data-page="register"] {
  background:
    radial-gradient(circle at 18% 18%, rgba(66, 224, 209, 0.28), transparent 18rem),
    radial-gradient(circle at 86% 74%, rgba(88, 168, 109, 0.2), transparent 20rem),
    linear-gradient(135deg, rgba(3, 16, 23, 0.9), rgba(6, 66, 72, 0.86)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2200&q=80") center/cover fixed;
}

body[data-page="membership"] {
  background:
    radial-gradient(circle at 8% 2%, rgba(66, 224, 209, 0.22), transparent 28rem),
    radial-gradient(circle at 92% 34%, rgba(245, 157, 76, 0.14), transparent 24rem),
    linear-gradient(180deg, #f7fbfa 0%, #eef6f3 46%, #f7efe2 100%);
}

body[data-page="profile"] {
  background:
    radial-gradient(circle at 12% 0%, rgba(66, 224, 209, 0.2), transparent 26rem),
    radial-gradient(circle at 92% 28%, rgba(245, 157, 76, 0.15), transparent 24rem),
    linear-gradient(180deg, #f8fbfb 0%, #eef6f3 52%, #f7efe2 100%);
}

body[data-page="weather"] {
  background:
    radial-gradient(circle at 10% 0%, rgba(66, 224, 209, 0.22), transparent 28rem),
    radial-gradient(circle at 88% 30%, rgba(245, 157, 76, 0.16), transparent 24rem),
    linear-gradient(180deg, #f8fbfb 0%, #eef6f3 50%, #f7efe2 100%);
}

body[data-page="login"]::before,
body[data-page="register"]::before {
  display: none;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(7, 27, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 36, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
}

html[data-theme="dark"] {
  --ink: #e8f6f7;
  --muted: #a6bac1;
  --line: rgba(255, 255, 255, 0.12);
  --paper: #0d202a;
  --mist: #07141b;
  --teal: #25a8c5;
  --teal-dark: #082a36;
  --cyan: #55efe0;
  --sand: #283022;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  color-scheme: dark;
}

html[data-theme="dark"] body,
html[data-theme="dark"] body[data-page="membership"],
html[data-theme="dark"] body[data-page="profile"],
html[data-theme="dark"] body[data-page="weather"] {
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(66, 224, 209, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 30%, rgba(245, 157, 76, 0.08), transparent 24rem),
    linear-gradient(180deg, #06131a 0%, #0a2028 50%, #111a1c 100%);
}

html[data-theme="dark"] body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
}

html[data-theme="dark"] .panel,
html[data-theme="dark"] .fish-card,
html[data-theme="dark"] .continent-card,
html[data-theme="dark"] .membership-plan,
html[data-theme="dark"] .membership-status-card,
html[data-theme="dark"] .membership-flow article,
html[data-theme="dark"] .checkout-card,
html[data-theme="dark"] .checkout-summary,
html[data-theme="dark"] .profile-card,
html[data-theme="dark"] .profile-identity-card,
html[data-theme="dark"] .admin-list-item,
html[data-theme="dark"] .weather-metric-grid article,
html[data-theme="dark"] .weather-hourly-grid article,
html[data-theme="dark"] .map-weather-card,
html[data-theme="dark"] .result-panel {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--ink);
  background: rgba(13, 32, 42, 0.88);
  box-shadow: var(--shadow);
}

html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .section-heading p,
html[data-theme="dark"] .form-note,
html[data-theme="dark"] .weather-metric-grid small,
html[data-theme="dark"] .weather-hourly-grid small,
html[data-theme="dark"] .map-weather-card p {
  color: var(--muted);
}

html[data-theme="dark"] .weather-map-shell {
  border-color: rgba(255, 255, 255, 0.16);
  background: #061923;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: min(1320px, calc(100% - 24px));
  min-height: 66px;
  margin: 14px auto 0;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(24, 35, 22, 0.78), rgba(2, 58, 78, 0.84)),
    rgba(4, 24, 33, 0.74);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(22px) saturate(130%);
}

.site-header.is-overlay {
  position: fixed;
  top: 18px;
  left: 50%;
  margin: 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(26, 35, 19, 0.76), rgba(1, 58, 79, 0.84)),
    rgba(4, 24, 33, 0.74);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  padding-right: 4px;
  font-size: 1.24rem;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.brand-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 13px;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 -10px 22px rgba(255, 255, 255, 0.05);
  transform: skew(-6deg);
}

.main-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  width: min(360px, calc(100vw - 24px));
  align-items: stretch;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  color: #fff;
  background: rgba(7, 27, 36, 0.97);
  box-shadow: var(--shadow);
}

.main-nav.is-open {
  display: grid;
}

.main-nav a,
.nav-group > button,
.header-actions a {
  color: inherit;
  font-weight: 850;
}

.main-nav > a,
.nav-group > button {
  max-width: none;
  padding: 12px 14px;
  border: 0;
  border-radius: 15px;
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.15;
  text-align: left;
  white-space: nowrap;
  transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.main-nav > a {
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-nav [data-nav="admin"] {
  display: none;
}

body.is-admin .main-nav [data-nav="admin"] {
  display: inline-flex;
  align-items: center;
}

.main-nav > .nav-auth-link {
  display: block;
}

.nav-user-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: rgba(223, 251, 247, 0.9);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 850;
}

.nav-user-summary span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-divider {
  height: 1px;
  margin: 3px 4px;
  background: rgba(255, 255, 255, 0.12);
}

.main-nav > a:hover,
.main-nav > a.is-active,
.nav-group:hover > button,
.nav-group.is-open > button {
  color: #fff;
  background: linear-gradient(135deg, rgba(66, 224, 209, 0.2), rgba(66, 224, 209, 0.08));
  box-shadow: inset 0 0 0 1px rgba(66, 224, 209, 0.16);
  transform: translateY(-1px);
}

.main-nav > a.is-active {
  background: rgba(66, 224, 209, 0.2);
}

.nav-group {
  position: relative;
}

.nav-menu {
  position: static;
  display: none;
  min-width: 0;
  margin: 4px 0 0 10px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  opacity: 1;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  transform: none;
}

.nav-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #fff;
}

.nav-menu a:hover {
  background: rgba(66, 224, 209, 0.16);
}

.nav-group.is-open .nav-menu {
  display: grid;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  order: 2;
  gap: 8px;
  min-width: 0;
  margin-left: auto;
  white-space: nowrap;
}

.header-actions button,
.user-status,
.admin-status {
  color: inherit;
  font-weight: 850;
}

.user-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 172px;
}

.user-status > span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-avatar {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #03212b;
  background: linear-gradient(135deg, var(--cyan), var(--orange));
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.header-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-actions button,
.theme-toggle {
  border: 0;
  cursor: pointer;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: #061f2a;
  background: linear-gradient(135deg, #ffffff, var(--cyan));
  box-shadow: 0 14px 32px rgba(66, 224, 209, 0.2);
  font-size: 0.82rem;
  font-weight: 950;
}

.theme-toggle-icon {
  font-size: 1rem;
  line-height: 1;
}

.admin-status {
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #0db6c7);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-width: max-content;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.main-nav .language-switcher {
  justify-content: center;
  width: 100%;
  margin-top: 2px;
  padding: 5px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.main-nav .language-switcher button {
  flex: 1;
}

.language-switcher button {
  min-width: 34px;
  min-height: 30px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.language-switcher button.is-active {
  color: #03212b;
  background: linear-gradient(135deg, var(--cyan), #ffffff);
  box-shadow: 0 10px 24px rgba(66, 224, 209, 0.22);
}

html[lang="tr"] .main-nav {
  gap: 2px;
}

html[lang="tr"] .main-nav > a,
html[lang="tr"] .nav-group > button {
  padding-right: 11px;
  padding-left: 11px;
  font-size: 0.88rem;
  letter-spacing: -0.02em;
}

html[lang="tr"] .hero-content h1,
html[lang="tr"] .page-hero h1,
html[lang="tr"] .membership-hero h1,
html[lang="tr"] .checkout-card h1,
html[lang="tr"] .profile-identity-card h1,
html[lang="tr"] .auth-copy h1 {
  max-width: 920px;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

html[lang="tr"] .section-heading h2,
html[lang="tr"] .weather-summary-panel h2,
html[lang="tr"] .wind-command-panel h2,
html[lang="tr"] .membership-plan h3 {
  letter-spacing: -0.045em;
  line-height: 1.02;
}

html[lang="tr"] .button,
html[lang="tr"] .pill,
html[lang="tr"] label,
html[lang="tr"] .form-note,
html[lang="tr"] .map-weather-card,
html[lang="tr"] .wind-map-badge {
  letter-spacing: -0.01em;
}

html[lang="tr"] .weather-hero-copy p:not(.eyebrow),
html[lang="tr"] .page-hero p:not(.eyebrow),
html[lang="tr"] .section-heading p,
html[lang="tr"] .form-note {
  line-height: 1.7;
}

.nav-toggle {
  display: grid;
  flex: 0 0 auto;
  order: 3;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: inherit;
  background: rgba(66, 224, 209, 0.16);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: currentColor;
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(24px, 1fr) minmax(0, 660px) minmax(300px, 440px) minmax(24px, 1fr);
  gap: 60px;
  align-items: center;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 13, 18, 0.4), rgba(7, 13, 18, 0.72) 68%, rgba(7, 13, 18, 0.94)),
    url("https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=2200&q=80") center/cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 62% 52%, rgba(12, 147, 171, 0.2), transparent 24rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-column: 2;
  padding-top: 80px;
}

.hero-content h1,
.page-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 0.91;
  letter-spacing: -0.08em;
}

.hero-content p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.72;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow.is-light {
  color: var(--cyan);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, #0787a5, #0db6c7);
  box-shadow: 0 18px 44px rgba(11, 137, 166, 0.34);
}

.button.light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.button.dark {
  color: #fff;
  background: var(--teal-dark);
}

.button.danger {
  color: #fff;
  background: #b63f3f;
}

.button.full {
  width: 100%;
}

.phone-showcase {
  position: relative;
  z-index: 2;
  grid-column: 3;
  display: grid;
  place-items: center;
  padding-top: 110px;
}

.phone-frame {
  display: grid;
  width: min(100%, 300px);
  height: 440px;
  place-items: center;
  align-content: center;
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 34px;
  color: #e9fffb;
  text-align: center;
  background:
    radial-gradient(circle at 60% 80%, rgba(66, 224, 209, 0.58), transparent 8rem),
    linear-gradient(160deg, #031827, #006d87 72%, #0ac1c8);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.38);
}

.phone-frame span,
.phone-frame small {
  font-weight: 950;
  letter-spacing: 0.08em;
}

.phone-frame strong {
  color: var(--cyan);
  font-size: 1.05rem;
  line-height: 1.08;
}

.spot-pin {
  position: absolute;
  z-index: 1;
  width: 42px;
  height: 54px;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-radius: 50% 50% 50% 0;
  background: rgba(66, 224, 209, 0.22);
  box-shadow: 0 0 0 8px rgba(66, 224, 209, 0.05);
  transform: rotate(-45deg);
}

.spot-pin::after {
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  content: "";
  background: rgba(255, 255, 255, 0.34);
}

.pin-one {
  left: 16%;
  top: 55%;
}

.pin-two {
  left: 54%;
  top: 47%;
}

.pin-three {
  right: 12%;
  top: 61%;
}

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading.centered {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
}

.section-heading h2,
.panel h2,
.form-section-title h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stats-grid article,
.panel,
.fish-card,
.empty-state {
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 22px 60px rgba(7, 27, 36, 0.09);
  backdrop-filter: blur(16px);
}

.stats-grid article {
  padding: 24px;
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  color: var(--teal-dark);
  font-size: 3rem;
  letter-spacing: -0.06em;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 850;
}

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

.continent-grid.wide {
  margin-bottom: 18px;
}

.continent-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(135deg, #0a3848, #0e9bb0);
  box-shadow: 0 24px 60px rgba(7, 27, 36, 0.16);
}

.continent-card::after {
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border: 28px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.continent-card span,
.continent-card strong {
  position: relative;
  z-index: 1;
  display: block;
}

.continent-card span {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 950;
  letter-spacing: -0.06em;
}

.continent-card strong {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.continent-card.europe,
.continent-hero.europe {
  background-image: linear-gradient(135deg, rgba(6, 56, 73, 0.92), rgba(10, 137, 166, 0.84)), url("https://images.unsplash.com/photo-1467269204594-9661b134dd2b?auto=format&fit=crop&w=1600&q=80");
}

.continent-card.asia,
.continent-hero.asia {
  background-image: linear-gradient(135deg, rgba(24, 34, 20, 0.9), rgba(230, 122, 48, 0.72)), url("https://images.unsplash.com/photo-1505761671935-60b3a7427bad?auto=format&fit=crop&w=1600&q=80");
}

.continent-card.america,
.continent-hero.america {
  background-image: linear-gradient(135deg, rgba(15, 44, 61, 0.92), rgba(45, 122, 78, 0.76)), url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1600&q=80");
}

.continent-card.africa,
.continent-hero.africa {
  background-image: linear-gradient(135deg, rgba(64, 36, 13, 0.92), rgba(230, 145, 58, 0.78)), url("https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?auto=format&fit=crop&w=1600&q=80");
}

.continent-card.oceania,
.continent-hero.oceania {
  background-image: linear-gradient(135deg, rgba(1, 56, 72, 0.92), rgba(21, 181, 191, 0.7)), url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80");
}

.continent-card.antarctica,
.continent-hero.antarctica {
  background-image: linear-gradient(135deg, rgba(6, 28, 45, 0.9), rgba(171, 218, 232, 0.58)), url("https://images.unsplash.com/photo-1517783999520-f068d7431a60?auto=format&fit=crop&w=1600&q=80");
}

.continent-card,
.continent-hero {
  background-position: center;
  background-size: cover;
}

.page-hero {
  margin-top: -84px;
  padding: 190px max(24px, calc((100vw - 1180px) / 2)) 96px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(5, 24, 32, 0.94), rgba(9, 108, 130, 0.78)),
    url("https://images.unsplash.com/photo-1516685018646-549198525c1b?auto=format&fit=crop&w=2200&q=80") center/cover;
}

.page-hero.compact {
  min-height: 480px;
}

.admin-hero {
  background:
    linear-gradient(135deg, rgba(5, 24, 32, 0.94), rgba(13, 132, 146, 0.78)),
    url("https://images.unsplash.com/photo-1529958030586-3aae4ca485ff?auto=format&fit=crop&w=2200&q=80") center/cover;
}

.auth-page {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: 58px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 118px);
  margin: -84px auto 0;
  padding: 190px 0 86px;
}

.auth-page::before {
  position: absolute;
  top: 170px;
  left: -90px;
  width: 300px;
  height: 120px;
  border-radius: 60% 42% 45% 60%;
  content: "";
  background:
    radial-gradient(circle at 72% 38%, rgba(3, 16, 23, 0.9) 0 6px, transparent 7px),
    linear-gradient(90deg, rgba(233, 255, 251, 0.22), rgba(66, 224, 209, 0.42));
  filter: blur(0.2px);
  transform: rotate(-8deg);
}

.auth-copy {
  color: #fff;
}

.auth-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.91;
  letter-spacing: -0.08em;
  text-wrap: balance;
}

.auth-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
}

.auth-feature-list {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin-top: 30px;
}

.auth-feature-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.auth-feature-list article span {
  display: grid;
  width: 42px;
  height: 42px;
  grid-row: span 2;
  place-items: center;
  border-radius: 50%;
  color: #03212b;
  background: var(--cyan);
  font-size: 0.84rem;
  font-weight: 950;
}

.auth-feature-list article strong {
  align-self: end;
  color: #fff;
  font-size: 1rem;
}

.auth-feature-list article small {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}

.auth-card {
  display: grid;
  gap: 18px;
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-color: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 50% 100%, rgba(66, 224, 209, 0.24), transparent 14rem);
}

.auth-card::after {
  position: absolute;
  right: -44px;
  bottom: -64px;
  width: 180px;
  height: 180px;
  border: 28px solid rgba(11, 137, 166, 0.1);
  border-radius: 50%;
  content: "";
}

.auth-card > * {
  position: relative;
  z-index: 1;
}

.auth-card .form-section-title h2 {
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.auth-card-copy {
  margin: -6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.auth-card input {
  min-height: 56px;
  border-radius: 18px;
  background: #fff;
}

.auth-card .button {
  min-height: 58px;
  margin-top: 4px;
}

.auth-message {
  min-height: 22px;
  margin: 0;
  color: #b63f3f;
  font-weight: 850;
}

.auth-message[data-type="success"] {
  color: var(--teal-dark);
}

.form-note a {
  color: var(--teal-dark);
  font-weight: 950;
}

body[data-page="login"] .site-footer,
body[data-page="register"] .site-footer {
  color: rgba(223, 251, 247, 0.92);
  background: rgba(3, 16, 23, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.analyzer-layout,
.admin-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.panel {
  padding: 26px;
}

.upload-panel,
.admin-form {
  display: grid;
  gap: 18px;
}

.drop-zone {
  display: grid;
  min-height: 280px;
  place-items: center;
  padding: 28px;
  border: 2px dashed rgba(11, 137, 166, 0.38);
  border-radius: 26px;
  color: var(--teal-dark);
  cursor: pointer;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(66, 224, 209, 0.24), transparent 16rem),
    rgba(238, 249, 248, 0.85);
}

.drop-zone input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.drop-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 250;
  background: var(--teal);
}

.drop-zone strong,
.drop-zone small {
  display: block;
}

.drop-zone small {
  margin-top: 8px;
  color: var(--muted);
}

.preview-card {
  overflow: hidden;
  border-radius: 24px;
  background: #061f2a;
}

.preview-card img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.text-button {
  width: 100%;
  padding: 14px;
  border: 0;
  color: #fff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  outline: none;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(11, 137, 166, 0.12);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.form-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.form-section-title {
  display: grid;
  gap: 10px;
}

.compact-title {
  margin-top: 12px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(66, 224, 209, 0.18);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-panel {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: center;
}

.result-panel h2 {
  margin-top: 16px;
}

.result-panel p,
.fish-card p,
.empty-state p {
  color: var(--muted);
  line-height: 1.65;
}

.result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.result-stats div,
.info-list li,
.rig-list li {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.result-stats div {
  padding: 14px;
}

.result-stats strong,
.result-stats span {
  display: block;
}

.result-stats strong {
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.result-stats span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.fish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fish-card {
  overflow: hidden;
}

.fish-cover {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.58), transparent 7rem),
    linear-gradient(135deg, #063849, #0db6c7);
}

.fish-cover img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.fish-cover.empty-cover::after,
.gallery-item.empty::after {
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 60% 42% 45% 60%;
  content: "";
  background: rgba(255, 255, 255, 0.72);
  transform: translate(-50%, -50%);
}

.fish-cover.empty-cover::after {
  width: 180px;
  height: 72px;
}

.fish-card-body {
  padding: 22px;
}

.fish-card h3 {
  margin: 10px 0 8px;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.tag-row,
.mini-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row {
  margin: 16px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(66, 224, 209, 0.18);
  font-size: 0.82rem;
  font-weight: 900;
}

.mini-gallery {
  margin: 16px 0;
}

.gallery-item {
  position: relative;
  width: 72px;
  height: 58px;
  overflow: hidden;
  margin: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #063849, #42e0d1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item.empty::after {
  width: 42px;
  height: 18px;
}

.info-list,
.rig-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li,
.rig-list li {
  padding: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.info-list strong,
.rig-list strong {
  display: block;
  color: var(--ink);
}

.rig-list {
  margin-top: 14px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 34px;
  text-align: center;
}

.empty-state h3 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  letter-spacing: -0.05em;
}

.empty-state p {
  max-width: 640px;
  margin: 0 auto 20px;
}

.admin-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.admin-list-item {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.admin-thumb {
  position: relative;
  width: 82px;
  height: 70px;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #063849, #42e0d1);
}

.admin-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-list-item h3 {
  margin: 0 0 4px;
}

.admin-list-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-list-item .button {
  min-height: 40px;
  padding: 0 14px;
}

.membership-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 38px auto 0;
  overflow: hidden;
  padding: clamp(48px, 7vw, 84px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 42px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 10%, rgba(66, 224, 209, 0.36), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(245, 157, 76, 0.22), transparent 18rem),
    linear-gradient(135deg, rgba(3, 24, 34, 0.98), rgba(6, 79, 94, 0.94));
  box-shadow: 0 34px 110px rgba(7, 27, 36, 0.24);
}

.membership-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 24, 34, 0.9), rgba(3, 24, 34, 0.42)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2200&q=80") center/cover;
  opacity: 0.42;
}

.membership-hero::after {
  position: absolute;
  right: -120px;
  bottom: -170px;
  z-index: -1;
  width: 420px;
  height: 420px;
  border: 72px solid rgba(66, 224, 209, 0.16);
  border-radius: 999px;
  content: "";
}

.membership-hero > * {
  position: relative;
  z-index: 1;
}

.membership-hero h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.membership-hero p {
  max-width: 720px;
  color: rgba(237, 253, 251, 0.86);
  font-size: 1.12rem;
  line-height: 1.7;
}

.membership-status-card {
  align-self: center;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 10%, rgba(66, 224, 209, 0.18), transparent 12rem),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(20px);
}

.membership-status-card h2 {
  margin: 18px 0 10px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.membership-status-card p {
  color: var(--muted);
}

.membership-status-card .button.light {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #0787a5, #0db6c7);
  box-shadow: 0 16px 40px rgba(11, 137, 166, 0.26);
}

.membership-section {
  width: min(1320px, calc(100% - 32px));
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.membership-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(7, 27, 36, 0.09);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 8%, rgba(66, 224, 209, 0.18), transparent 11rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 249, 0.9));
  box-shadow: 0 18px 50px rgba(7, 27, 36, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.membership-plan:hover {
  border-color: rgba(11, 137, 166, 0.22);
  box-shadow: 0 28px 76px rgba(7, 27, 36, 0.14);
  transform: translateY(-6px);
}

.membership-plan::after {
  position: absolute;
  right: -42px;
  top: 18px;
  width: 148px;
  padding: 7px 0;
  color: #fff;
  content: "-50%";
  background: linear-gradient(135deg, #f59d4c, #e14f4f);
  font-size: 0.74rem;
  font-weight: 950;
  text-align: center;
  transform: rotate(35deg);
}

.membership-plan.is-featured {
  color: #fff;
  background:
    radial-gradient(circle at 16% 0%, rgba(66, 224, 209, 0.42), transparent 14rem),
    radial-gradient(circle at 92% 20%, rgba(245, 157, 76, 0.26), transparent 12rem),
    linear-gradient(155deg, #051c27, #0a6574 70%, #0b8ca1);
  border-color: rgba(66, 224, 209, 0.34);
  box-shadow: 0 30px 90px rgba(4, 44, 57, 0.28);
  transform: translateY(-10px);
}

.membership-plan.is-featured:hover {
  transform: translateY(-14px);
}

.plan-card-head {
  min-height: 176px;
}

.plan-topline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 34px;
  padding-right: 32px;
}

.plan-topline strong {
  color: var(--orange);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.membership-plan h3 {
  margin: 20px 0 10px;
  font-size: clamp(2rem, 2.5vw, 2.85rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.membership-plan p {
  min-height: 74px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.membership-plan.is-featured p,
.membership-plan.is-featured li {
  color: rgba(238, 253, 251, 0.82);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0 0;
}

.plan-price-block {
  min-height: 96px;
  padding: 16px;
  margin: 16px 0 18px;
  border: 1px solid rgba(7, 27, 36, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.membership-plan.is-featured .plan-price-block {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.plan-discount {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.plan-discount del {
  color: rgba(102, 120, 132, 0.82);
  font-size: 0.95rem;
  font-weight: 900;
}

.plan-discount span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  color: #7a3600;
  background: #ffe7c6;
  font-size: 0.7rem;
  font-weight: 950;
}

.membership-plan.is-featured .plan-discount del {
  color: rgba(238, 253, 251, 0.6);
}

.plan-price strong {
  font-size: clamp(2.3rem, 3.2vw, 3.2rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.plan-price span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 850;
}

.membership-plan.is-featured .plan-price span {
  color: rgba(238, 253, 251, 0.72);
}

.membership-plan ul,
.checkout-feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.plan-feature-list {
  flex: 1;
}

.membership-plan li,
.checkout-feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 780;
  line-height: 1.42;
}

.membership-plan li::before,
.checkout-feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(135deg, var(--cyan), var(--teal));
}

.plan-cta {
  margin-top: auto;
  box-shadow: 0 14px 34px rgba(7, 27, 36, 0.16);
}

.membership-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 0;
}

.membership-flow article {
  padding: 26px;
  border-radius: 28px;
  color: #dffbf7;
  background: linear-gradient(145deg, #062331, #0b6070);
}

.membership-flow span {
  color: var(--cyan);
  font-weight: 950;
}

.membership-flow h3 {
  margin: 18px 0 8px;
  font-size: 1.45rem;
}

.membership-flow p {
  margin: 0;
  color: rgba(223, 251, 247, 0.76);
  line-height: 1.6;
}

.checkout-page {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.6fr);
  gap: 28px;
  width: min(1080px, calc(100% - 32px));
  margin: -76px auto 0;
  padding: 160px 0 84px;
}

.checkout-card h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.checkout-summary {
  align-self: start;
  color: #fff;
  background:
    radial-gradient(circle at 12% 0%, rgba(66, 224, 209, 0.34), transparent 16rem),
    linear-gradient(145deg, #061f2a, #0b6b7b);
}

.checkout-summary p {
  color: rgba(223, 251, 247, 0.76);
  line-height: 1.6;
}

.checkout-price {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 24px 0;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.checkout-price span {
  color: rgba(223, 251, 247, 0.68);
  font-size: 1rem;
  letter-spacing: 0;
}

.admin-membership-section {
  padding-top: 0;
}

.membership-order-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.membership-order-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
}

.membership-order-item h3 {
  margin: 10px 0 6px;
}

.membership-order-item p,
.membership-order-item small {
  display: block;
  margin: 0;
  color: var(--muted);
}

.membership-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.membership-order-actions .button {
  min-height: 40px;
  padding: 0 14px;
}

.weather-hero {
  background:
    radial-gradient(circle at 78% 34%, rgba(66, 224, 209, 0.26), transparent 18rem),
    radial-gradient(circle at 12% 18%, rgba(245, 157, 76, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(3, 15, 24, 0.96), rgba(5, 70, 90, 0.84)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=80") center/cover;
}

.professional-weather-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}

.weather-hero-copy {
  max-width: 860px;
}

.weather-hero-stats {
  display: grid;
  gap: 12px;
}

.weather-hero-stats article {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.weather-hero-stats span {
  color: rgba(223, 251, 247, 0.68);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.weather-hero-stats strong {
  color: #fff;
  font-size: 1.26rem;
  letter-spacing: -0.04em;
}

.weather-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.12fr) minmax(280px, 0.72fr);
  gap: 24px;
  align-items: start;
}

.weather-command-center {
  margin-top: -84px;
  padding-top: 0;
}

.weather-control-panel,
.weather-summary-panel,
.wind-command-panel {
  display: grid;
  gap: 18px;
}

.weather-control-panel,
.weather-summary-panel,
.wind-command-panel {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 26px 80px rgba(7, 27, 36, 0.12);
  backdrop-filter: blur(18px);
}

.weather-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.weather-actions .button {
  flex: 1 1 180px;
}

.weather-summary-panel h2 {
  margin: 4px 0 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.weather-summary-panel > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.fishing-decision-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(66, 224, 209, 0.28);
  border-radius: 24px;
  color: #dffbf7;
  background:
    radial-gradient(circle at 100% 0%, rgba(66, 224, 209, 0.2), transparent 9rem),
    linear-gradient(145deg, #052331, #087083);
}

.fishing-decision-card span,
.fishing-decision-card small {
  color: rgba(223, 251, 247, 0.72);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fishing-decision-card strong {
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  letter-spacing: -0.05em;
}

.fishing-decision-card p {
  margin: 0;
  color: rgba(223, 251, 247, 0.82);
  line-height: 1.52;
}

.wind-command-panel {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 24% 16%, rgba(66, 224, 209, 0.28), transparent 13rem),
    radial-gradient(circle at 86% 80%, rgba(245, 157, 76, 0.18), transparent 12rem),
    linear-gradient(150deg, #041723, #07495b 62%, #0c8295);
}

.wind-command-panel h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.wind-command-panel p {
  margin: 0;
  color: rgba(223, 251, 247, 0.78);
  line-height: 1.58;
}

.wind-compass {
  position: relative;
  display: grid;
  width: min(100%, 260px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.16) 0 18%, transparent 19%),
    repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.12) 0 2deg, transparent 2deg 15deg),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.04), 0 24px 60px rgba(0, 0, 0, 0.24);
}

.wind-compass > span {
  position: absolute;
  color: rgba(223, 251, 247, 0.74);
  font-size: 0.76rem;
  font-weight: 950;
}

.compass-north { top: 14px; }
.compass-east { right: 18px; }
.compass-south { bottom: 14px; }
.compass-west { left: 18px; }

.wind-compass-arrow {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  color: #03212b;
  background: linear-gradient(135deg, var(--cyan), #fff);
  box-shadow: 0 18px 40px rgba(66, 224, 209, 0.26);
  font-size: 2.35rem;
  font-weight: 950;
  transform-origin: center;
  transition: transform 0.45s ease;
}

.wind-command-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.wind-command-grid article {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.wind-command-grid span {
  color: rgba(223, 251, 247, 0.62);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wind-command-grid strong {
  color: #fff;
  font-size: 1.05rem;
}

.weather-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.weather-metric-grid article {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(66, 224, 209, 0.16), transparent 8rem),
    rgba(255, 255, 255, 0.68);
}

.weather-metric-grid span,
.weather-hourly-grid span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.weather-metric-grid strong {
  color: var(--teal-dark);
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  letter-spacing: -0.05em;
}

.weather-metric-grid small,
.weather-hourly-grid small {
  color: var(--muted);
  line-height: 1.35;
}

.weather-map-section {
  padding-top: 24px;
}

.weather-real-map-section {
  padding-top: 24px;
}

.pro-map-section {
  padding-top: 18px;
}

.weather-map-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 58px rgba(7, 27, 36, 0.12);
}

.weather-map-shell::before {
  display: none;
}

.weather-map {
  width: 100%;
  min-height: 520px;
  isolation: isolate;
}

.weather-map .leaflet-control-container,
.weather-map .leaflet-pane {
  z-index: 1;
}

.weather-map .leaflet-marker-pane {
  z-index: 5;
}

.weather-map .leaflet-tooltip-pane,
.weather-map .leaflet-popup-pane {
  z-index: 6;
}

.wind-flow-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.wind-flow-canvas {
  display: block;
  width: 100%;
  height: 100%;
  mix-blend-mode: normal;
  opacity: 1;
  filter: drop-shadow(0 0 5px rgba(0, 28, 42, 0.42));
}

.wind-map-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 8;
  display: grid;
  max-width: min(390px, calc(100% - 36px));
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 20px;
  color: #fff;
  background: rgba(4, 23, 32, 0.76);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.wind-map-badge span,
.wind-map-badge small {
  color: rgba(223, 251, 247, 0.72);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wind-map-badge strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.15;
}

.map-weather-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 8;
  display: grid;
  width: min(315px, calc(100% - 36px));
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 52px rgba(7, 27, 36, 0.16);
  backdrop-filter: blur(14px);
}

.map-weather-card strong {
  color: var(--teal-dark);
  font-size: 1.28rem;
  letter-spacing: -0.04em;
}

.map-weather-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.map-wind-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.wind-arrow {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #0db6c7);
  font-size: 1.2rem;
  font-weight: 950;
}

.fish-chance-map {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 42px;
  cursor: crosshair;
  background:
    radial-gradient(circle at 22% 70%, rgba(245, 157, 76, 0.2), transparent 14rem),
    radial-gradient(circle at 62% 46%, rgba(66, 224, 209, 0.34), transparent 18rem),
    linear-gradient(145deg, #052431, #0a6b7c 56%, #12a9b3);
  box-shadow: 0 34px 100px rgba(7, 27, 36, 0.22);
}

.map-layer {
  position: absolute;
  inset: auto -10% 0;
  height: 45%;
  opacity: 0.42;
  background: repeating-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.34) 0 2px, transparent 3px 28px);
  transform: rotate(-4deg);
}

.wave-two {
  inset: 20% -8% auto;
  opacity: 0.22;
  transform: rotate(7deg);
}

.map-hotspot {
  position: absolute;
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #e9fffb;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 18px rgba(66, 224, 209, 0.06);
  font-weight: 950;
  text-align: center;
}

.map-hotspot span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(3, 24, 34, 0.42);
  backdrop-filter: blur(10px);
}

.hotspot-reef {
  left: 12%;
  bottom: 12%;
}

.hotspot-drop {
  left: 52%;
  top: 34%;
}

.hotspot-shade {
  right: 9%;
  top: 14%;
}

.fish-chance-bubble {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  min-width: 154px;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
  pointer-events: none;
  text-align: center;
  transform: translate(-50%, -112%);
}

.fish-chance-bubble strong {
  color: var(--teal-dark);
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.fish-chance-bubble span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: capitalize;
}

.weather-hourly-section {
  padding-top: 28px;
}

.weather-hourly-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.weather-hourly-grid article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 48px rgba(7, 27, 36, 0.08);
}

.weather-hourly-grid strong {
  color: var(--teal-dark);
  font-size: 2.2rem;
  letter-spacing: -0.06em;
}

.weather-hourly-grid p {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.profile-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 38px auto 0;
}

.profile-identity-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  overflow: hidden;
  padding: clamp(32px, 6vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 42px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 10%, rgba(66, 224, 209, 0.34), transparent 22rem),
    radial-gradient(circle at 88% 20%, rgba(245, 157, 76, 0.22), transparent 18rem),
    linear-gradient(135deg, rgba(3, 24, 34, 0.98), rgba(6, 80, 94, 0.94));
  box-shadow: 0 34px 110px rgba(7, 27, 36, 0.22);
}

.profile-identity-card h1 {
  margin: 8px 0 14px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.profile-identity-card p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(237, 253, 251, 0.84);
  line-height: 1.65;
}

.profile-avatar {
  display: grid;
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.74);
  border-radius: 30px;
  color: #03212b;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.85), transparent 5rem),
    linear-gradient(135deg, var(--cyan), var(--orange));
  background-position: center;
  background-size: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  font-size: 1.6rem;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.profile-avatar.large {
  width: 116px;
  height: 116px;
  border-color: rgba(11, 137, 166, 0.18);
  border-radius: 34px;
  box-shadow: 0 20px 48px rgba(7, 27, 36, 0.12);
}

.profile-avatar.has-photo {
  color: transparent;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.profile-card {
  display: grid;
  gap: 18px;
}

.profile-side-stack {
  display: grid;
  gap: 24px;
}

.profile-photo-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
}

.standard-avatar-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
}

.standard-avatar-panel strong {
  color: var(--teal-dark);
  font-size: 1rem;
}

.standard-avatar-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.standard-avatar-choice {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(7, 27, 36, 0.12);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-weight: 950;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.standard-avatar-choice:hover,
.standard-avatar-choice.is-selected {
  border-color: rgba(11, 137, 166, 0.38);
  box-shadow: 0 16px 34px rgba(7, 27, 36, 0.1);
  transform: translateY(-2px);
}

.standard-avatar-choice.is-selected {
  color: var(--teal-dark);
  background: rgba(238, 249, 248, 0.94);
}

.standard-avatar-choice img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  object-fit: cover;
}

.standard-avatar-choice span {
  font-size: 0.8rem;
}

.text-button.inline {
  width: auto;
  margin-top: 10px;
  padding: 0;
  color: var(--teal-dark);
  background: transparent;
  text-align: left;
}

.connected-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.connected-links a,
.connected-links span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #e9fffb;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: capitalize;
}

.security-form {
  display: grid;
  gap: 14px;
}

.two-factor-setup {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(11, 137, 166, 0.18);
  border-radius: 22px;
  background: rgba(238, 249, 248, 0.78);
}

.two-factor-setup[hidden] {
  display: none;
}

.two-factor-setup .button.light {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #0787a5, #0db6c7);
}

.secret-box {
  padding: 14px;
  border: 1px dashed rgba(11, 137, 166, 0.4);
  border-radius: 16px;
  color: var(--teal-dark);
  background: #fff;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
}

.two-factor-login {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(11, 137, 166, 0.16);
  border-radius: 18px;
  background: rgba(238, 249, 248, 0.76);
}

.two-factor-login[hidden] {
  display: none;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 24px;
  padding: 28px;
  border-radius: 24px;
  color: #dffbf7;
  background: #061f2a;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(223, 251, 247, 0.72);
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .site-header,
  .site-header.is-overlay {
    align-items: center;
    border-radius: 26px;
  }

  .nav-toggle {
    display: grid;
    order: 3;
  }

  .language-switcher {
    order: initial;
    margin-left: 0;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    width: auto;
    display: none;
    align-items: stretch;
    padding: 12px;
    border-radius: 24px;
    background: rgba(7, 27, 36, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav > .nav-auth-link {
    display: block;
  }

  .main-nav > a,
  .nav-group > button {
    color: #fff;
    max-width: none;
    text-align: left;
  }

  .nav-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 4px 0 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .nav-group.is-open .nav-menu {
    display: grid;
  }

  .header-actions {
    display: inline-flex;
    order: 2;
    margin-left: auto;
  }

  .home-hero {
    grid-template-columns: minmax(20px, 1fr) minmax(0, 760px) minmax(20px, 1fr);
    gap: 20px;
    padding-bottom: 90px;
  }

  .hero-content {
    grid-column: 2;
  }

  .phone-showcase {
    grid-column: 2;
    justify-content: start;
    padding-top: 0;
  }

  .phone-frame {
    width: 230px;
    height: 330px;
  }

  .auth-page,
  .analyzer-layout,
  .admin-layout,
  .weather-layout,
  .professional-weather-hero,
  .membership-hero,
  .checkout-page,
  .profile-layout {
    grid-template-columns: 1fr;
  }

  .fish-grid,
  .continent-grid,
  .weather-metric-grid,
  .weather-hourly-grid,
  .membership-grid,
  .membership-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .membership-plan.is-featured {
    transform: none;
  }

  .membership-plan.is-featured:hover {
    transform: translateY(-6px);
  }

  .membership-hero {
    gap: 22px;
    padding-right: clamp(28px, 6vw, 54px);
    padding-left: clamp(28px, 6vw, 54px);
  }

  .checkout-page {
    gap: 22px;
  }

  .profile-identity-card {
    grid-template-columns: 1fr;
  }

  .weather-command-center {
    margin-top: -52px;
  }

  .wind-compass {
    width: min(100%, 220px);
  }
}

@media (max-width: 700px) {
  .site-header,
  .site-header.is-overlay {
    width: min(100% - 20px, 1240px);
    min-height: 62px;
    top: 10px;
  }

  .brand {
    font-size: 1.08rem;
  }

  .brand-icon {
    width: 36px;
    height: 36px;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .home-hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 116px;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: clamp(2.9rem, 16vw, 4.5rem);
  }

  .page-hero {
    margin-top: -76px;
    padding-top: 154px;
    padding-bottom: 70px;
  }

  .auth-page {
    width: min(100% - 22px, 1180px);
    margin-top: -76px;
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .auth-card {
    padding: 24px;
    border-radius: 26px;
  }

  .auth-copy h1 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .auth-feature-list article {
    grid-template-columns: 1fr;
  }

  .auth-feature-list article span {
    grid-row: auto;
  }

  .stats-grid,
  .fish-grid,
    .continent-grid,
    .weather-metric-grid,
    .weather-hourly-grid,
    .membership-grid,
    .membership-flow,
    .form-grid.two,
    .form-grid.four,
    .result-stats,
    .membership-order-item {
    grid-template-columns: 1fr;
  }

  .membership-hero,
  .checkout-page,
  .profile-hero {
    width: min(100% - 22px, 1180px);
    margin-top: -76px;
    padding-top: 150px;
  }

  .profile-hero {
    padding-top: 0;
  }

  .profile-identity-card {
    padding: 150px 22px 30px;
    border-radius: 30px;
  }

  .profile-identity-card h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .profile-photo-row {
    grid-template-columns: 1fr;
  }

  .avatar-choice-grid {
    grid-template-columns: 1fr;
  }

  .standard-avatar-choice {
    grid-template-columns: 68px 1fr;
    align-items: center;
    text-align: left;
  }

  .profile-avatar.large {
    width: 96px;
    height: 96px;
  }

  .membership-hero {
    padding-right: 22px;
    padding-bottom: 32px;
    padding-left: 22px;
    border-radius: 30px;
  }

  .membership-hero p {
    font-size: 1rem;
  }

  .membership-hero .hero-actions .button {
    width: 100%;
  }

  .membership-hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .membership-status-card,
  .membership-plan,
  .membership-flow article,
  .checkout-card,
  .checkout-summary {
    border-radius: 24px;
  }

  .membership-status-card,
  .membership-plan,
  .membership-flow article {
    padding: 20px;
  }

  .plan-card-head,
  .membership-plan p,
  .plan-price-block {
    min-height: 0;
  }

  .membership-plan h3 {
    margin-top: 16px;
  }

  .checkout-page {
    padding-bottom: 56px;
  }

  .checkout-card h1 {
    font-size: clamp(2.55rem, 14vw, 4.1rem);
  }

  .checkout-summary {
    order: -1;
  }

  .drop-zone {
    min-height: 220px;
    padding: 22px;
  }

  .drop-icon {
    width: 60px;
    height: 60px;
  }

  .result-panel {
    min-height: 320px;
  }

  .fish-chance-map {
    min-height: 420px;
    border-radius: 30px;
  }

  .weather-map-shell {
    border-radius: 28px;
  }

  .weather-map {
    min-height: 440px;
  }

  .map-weather-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 12px;
  }

  .wind-map-badge {
    position: relative;
    top: auto;
    left: auto;
    max-width: none;
    margin: 12px 12px 0;
  }

  .wind-command-grid {
    grid-template-columns: 1fr;
  }

  .weather-hero-stats {
    grid-template-columns: 1fr;
  }

  .map-hotspot {
    width: 116px;
    height: 116px;
    font-size: 0.82rem;
  }

  .fish-chance-bubble {
    min-width: 128px;
    padding: 12px;
  }

  .weather-actions .button {
    width: 100%;
  }

  .membership-order-actions {
    justify-content: stretch;
  }

  .membership-order-actions .button {
    width: 100%;
  }

  .section-pad {
    width: min(100% - 22px, 1180px);
    padding: 60px 0;
  }

  .section-heading.split {
    align-items: flex-start;
    flex-direction: column;
  }

  .panel,
  .fish-card-body {
    padding: 18px;
  }

  .admin-list-item {
    grid-template-columns: 72px 1fr;
  }

  .admin-list-item > div,
  .membership-order-item > div {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .admin-list-item .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .spot-pin {
    display: none;
  }
}
