* {
  box-sizing: border-box;
}

:root {
  --bg: #05070a;
  --panel: #0b0f14;
  --panel-soft: #10161e;
  --border: #1a2330;
  --blue: #0094ff;
  --blue-soft: #7cc6ff;
  --text: #ffffff;
  --muted: #9ca8b8;
  --muted-dark: #6f7a89;
  --danger: #ff5d5d;
  --shadow: rgba(0, 0, 0, 0.55);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 5%, rgba(0, 148, 255, 0.22), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(124, 198, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #070a0f 0%, #05070a 48%, #020305 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  z-index: -4;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

/* BACKGROUND FX */

.aurora {
  position: fixed;
  inset: -20%;
  z-index: -5;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 148, 255, 0.18), transparent 30%),
    radial-gradient(circle at 70% 10%, rgba(0, 255, 214, 0.08), transparent 24%),
    radial-gradient(circle at 60% 80%, rgba(0, 148, 255, 0.1), transparent 35%);
  filter: blur(28px);
  animation: auroraMove 18s ease-in-out infinite alternate;
}

@keyframes auroraMove {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }

  to {
    transform: translate3d(2%, 3%, 0) scale(1.08);
  }
}

.ocean-parallax {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
}

.sea-glow {
  position: absolute;
  left: 50%;
  bottom: -220px;
  width: 900px;
  height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 148, 255, 0.24), transparent 66%);
  filter: blur(20px);
}

.bubble {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(124, 198, 255, 0.28);
  background: rgba(124, 198, 255, 0.05);
  box-shadow: inset 0 0 18px rgba(124, 198, 255, 0.1);
  animation: bubbleFloat 10s ease-in-out infinite;
}

.bubble-one {
  width: 70px;
  height: 70px;
  left: 8%;
  top: 52%;
}

.bubble-two {
  width: 36px;
  height: 36px;
  right: 12%;
  top: 28%;
  animation-delay: -3s;
}

.bubble-three {
  width: 110px;
  height: 110px;
  right: 18%;
  bottom: 12%;
  animation-delay: -6s;
}

@keyframes bubbleFloat {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }

  50% {
    transform: translateY(-26px);
    opacity: 0.72;
  }
}

.fish-silhouette,
.jellyfish {
  position: absolute;
  color: rgba(124, 198, 255, 0.18);
  font-size: 92px;
  filter: blur(0.2px);
}

.fish-silhouette {
  left: 7%;
  bottom: 20%;
  animation: driftFish 16s ease-in-out infinite alternate;
}

.jellyfish {
  right: 8%;
  top: 44%;
  animation: jellyDrift 13s ease-in-out infinite alternate;
}

@keyframes driftFish {
  from {
    transform: translateX(0) rotate(-6deg);
  }

  to {
    transform: translateX(42px) rotate(4deg);
  }
}

@keyframes jellyDrift {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-42px);
  }
}

.ray-shape {
  position: absolute;
  left: 52%;
  top: 20%;
  width: 140px;
  height: 80px;
  opacity: 0.13;
  background: rgba(124, 198, 255, 0.55);
  clip-path: polygon(50% 0%, 100% 40%, 62% 48%, 50% 100%, 38% 48%, 0% 40%);
  filter: blur(0.5px);
  animation: rayDrift 18s ease-in-out infinite alternate;
}

@keyframes rayDrift {
  from {
    transform: translate(-20px, 0) rotate(8deg);
  }

  to {
    transform: translate(50px, 32px) rotate(-8deg);
  }
}

/* NAV */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 14px 14px 18px;
  border: 1px solid rgba(26, 35, 48, 0.9);
  border-radius: 22px;
  background: rgba(5, 7, 10, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(0, 148, 255, 0.24));
}

.brand span {
  font-size: 1.15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(0, 148, 255, 0.09);
}

.nav-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  border-radius: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.nav-btn {
  padding: 13px 16px;
  background: var(--blue);
  color: white;
  font-size: 0.72rem;
}

.nav-btn:hover,
.btn:hover {
  transform: translateY(-2px);
}

/* HERO */

main {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 90px 0 80px;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  margin: 18px 0 0;
  font-size: clamp(4.2rem, 11vw, 8.8rem);
  line-height: 0.82;
  letter-spacing: -0.08em;
  font-weight: 950;
}

.intro {
  max-width: 630px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.85;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 56px;
  padding: 0 24px;
  font-size: 0.78rem;
}

.btn.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 18px 46px rgba(0, 148, 255, 0.25);
}

.btn.secondary {
  border: 1px solid var(--border);
  background: rgba(16, 22, 30, 0.9);
  color: var(--text);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
  margin-top: 34px;
}

.stats div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(11, 15, 20, 0.72);
}

.stats strong {
  display: block;
  color: var(--blue);
  font-size: 1.45rem;
  font-weight: 950;
}

.stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.showcase-stack {
  position: relative;
  min-height: 650px;
}

.shot {
  position: absolute;
  width: min(58%, 310px);
  border-radius: 34px;
  border: 1px solid rgba(124, 198, 255, 0.18);
  background: var(--panel);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(0, 148, 255, 0.12);
  transform-origin: center;
}

.shot-one {
  top: 36px;
  left: 11%;
  z-index: 3;
  transform: rotate(-8deg);
}

.shot-two {
  top: 148px;
  right: 7%;
  z-index: 2;
  transform: rotate(7deg);
}

.shot-three {
  bottom: 26px;
  left: 23%;
  z-index: 4;
  transform: rotate(-2deg);
}

.ocean-depth {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 148, 255, 0.14), transparent 68%);
}

.depth-1 {
  width: 520px;
  height: 520px;
  right: 4%;
  bottom: 0;
  filter: blur(10px);
}

.depth-2 {
  width: 300px;
  height: 300px;
  left: 18%;
  top: 18%;
  filter: blur(18px);
}

/* SECTIONS */

.features,
.feature-showcase,
.conservation,
.partner-section,
.coming-soon {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.features {
  padding: 96px 0 40px;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 36px;
  align-items: end;
}

.section-head h2,
.feature-content h2,
.conservation h2,
.partner-section h2,
.coming-soon h2 {
  margin: 16px 0 0;
  font-size: clamp(2.4rem, 5.6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.section-text,
.feature-content p,
.conservation > p,
.partner-section > p,
.coming-soon > p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.card {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(0, 148, 255, 0.12), transparent 42%),
    rgba(11, 15, 20, 0.82);
  overflow: hidden;
  transition: 0.24s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 148, 255, 0.38);
}

.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel-soft);
  font-size: 1.75rem;
}

.card h3 {
  margin: 26px 0 0;
  font-size: 1.25rem;
}

.card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
  padding: 88px 0;
}

.feature-showcase.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.feature-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  border: 1px solid var(--border);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 15%, rgba(0, 148, 255, 0.18), transparent 48%),
    rgba(11, 15, 20, 0.64);
  overflow: hidden;
}

.feature-image::after {
  content: "";
  position: absolute;
  inset: auto -20% -36% -20%;
  height: 52%;
  background: radial-gradient(circle, rgba(0, 148, 255, 0.18), transparent 65%);
  filter: blur(12px);
}

.feature-image img {
  position: relative;
  z-index: 1;
  max-height: 500px;
  max-width: min(80%, 330px);
  border-radius: 34px;
  border: 1px solid rgba(124, 198, 255, 0.18);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.feature-content {
  padding: 20px;
}

.feature-content p {
  max-width: 650px;
  margin-top: 24px;
}

/* CONSERVATION */

.conservation {
  position: relative;
  margin-top: 70px;
  margin-bottom: 70px;
  padding: 64px 28px;
  border: 1px solid rgba(0, 148, 255, 0.18);
  border-radius: 36px;
  background:
    radial-gradient(circle at top, rgba(0, 148, 255, 0.18), transparent 45%),
    rgba(5, 7, 10, 0.78);
  text-align: center;
}

.conservation > p {
  max-width: 780px;
  margin: 24px auto 0;
}

.conservation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.conservation-grid div {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(11, 15, 20, 0.88);
}

.conservation-grid strong {
  display: block;
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 950;
}

.conservation-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

/* PARTNERS */

.partner-section {
  position: relative;
  margin-top: 90px;
  margin-bottom: 90px;
  padding: 64px 28px;
  border: 1px solid rgba(0, 148, 255, 0.18);
  border-radius: 36px;
  background:
    radial-gradient(circle at top, rgba(0, 148, 255, 0.18), transparent 45%),
    rgba(5, 7, 10, 0.78);
  text-align: center;
}

.partner-section > p {
  max-width: 760px;
  margin: 24px auto 0;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.partner-grid article {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(11, 15, 20, 0.88);
  text-align: left;
}

.partner-grid h3 {
  margin: 0;
  font-size: 1.15rem;
}

.partner-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.partner-btn {
  margin-top: 36px;
}

/* COMING SOON */

.coming-soon {
  position: relative;
  margin-top: 90px;
  margin-bottom: 70px;
  padding: 72px 28px;
  border: 1px solid rgba(0, 148, 255, 0.22);
  border-radius: 42px;
  background:
    radial-gradient(circle at top, rgba(0, 148, 255, 0.22), transparent 45%),
    rgba(11, 15, 20, 0.84);
  text-align: center;
  overflow: hidden;
}

.launch-glow {
  position: absolute;
  inset: auto 20% -28% 20%;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 148, 255, 0.25), transparent 60%);
  filter: blur(18px);
}

.coming-logo {
  width: 122px;
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 0 35px rgba(0, 148, 255, 0.25));
}

.coming-soon > p {
  max-width: 760px;
  margin: 24px auto 0;
}

.launch-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.launch-badges span {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(5, 7, 10, 0.74);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

/* FOOTER */

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 90px auto 0;
  padding: 0 0 54px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(0, 148, 255, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(0, 148, 255, 0.14), transparent 42%),
    rgba(11, 15, 20, 0.86);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.footer-brand,
.footer-block {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(5, 7, 10, 0.54);
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px rgba(0, 148, 255, 0.22));
}

.footer-brand h3,
.footer-block h4 {
  margin: 0;
  color: var(--text);
  font-weight: 950;
  letter-spacing: -0.03em;
}

.footer-brand h3 {
  font-size: 1.45rem;
}

.footer-brand p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.92rem;
}

.footer-block h4 {
  margin-bottom: 18px;
  color: var(--blue-soft);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-block a,
.footer-block span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-block a:hover {
  color: var(--blue-soft);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 22px 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(5, 7, 10, 0.64);
  color: var(--muted-dark);
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

/* OFFICIAL STYLE LEGAL / INFORMATION PAGES */

.legal-body {
  background: #f4f6f8;
  color: #111827;
  font-family: Arial, Helvetica, sans-serif;
}

.legal-body::before {
  display: none;
}

.legal-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #d6dde6;
}

.legal-header-inner {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #0b1220;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.legal-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.legal-brand span {
  font-size: 1.1rem;
}

.legal-header-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.legal-header-links a {
  color: #374151;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-header-links a:hover {
  color: #006cbf;
  text-decoration: underline;
}

.legal-page {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 70px;
}

.legal-back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: #005ea8;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-back-link:hover {
  color: #003f73;
}

.legal-hero {
  margin-bottom: 24px;
  padding-bottom: 26px;
  border-bottom: 3px solid #005ea8;
}

.legal-hero .eyebrow {
  margin: 0;
  color: #4b5563;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 14px 0 0;
  color: #111827;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.legal-hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.75;
}

.legal-date {
  display: inline-flex;
  margin-top: 20px;
  padding: 8px 12px;
  border-left: 4px solid #005ea8;
  background: #eaf4ff;
  color: #0b3155;
  font-size: 0.92rem;
  font-weight: 800;
}

.legal-card {
  padding: 42px;
  border: 1px solid #d6dde6;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.legal-card h2 {
  margin: 44px 0 14px;
  padding-top: 28px;
  border-top: 1px solid #e5e7eb;
  color: #111827;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
  font-weight: 900;
}

.legal-card h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-card h3 {
  margin: 30px 0 12px;
  color: #1f2937;
  font-size: 1.08rem;
  line-height: 1.4;
  font-weight: 900;
}

.legal-card p {
  max-width: 800px;
  margin: 0 0 18px;
  color: #374151;
  font-size: 1rem;
  line-height: 1.8;
}

.legal-card ul {
  max-width: 800px;
  margin: 0 0 24px;
  padding-left: 24px;
  color: #374151;
}

.legal-card li {
  margin-bottom: 9px;
  line-height: 1.75;
}

.legal-card a {
  color: #005ea8;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-card a:hover {
  color: #003f73;
}

.legal-card strong {
  color: #111827;
}

.legal-contact-box {
  margin: 30px 0;
  padding: 22px 24px;
  border-left: 5px solid #005ea8;
  background: #f0f7ff;
}

.legal-contact-box p {
  margin-bottom: 8px;
}

.legal-contact-box p:last-child {
  margin-bottom: 0;
}

/* LEGAL PAGE FOOTER OVERRIDE */

.legal-body .site-footer {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: #4b5563;
}

.legal-body .footer-grid {
  display: none;
}

.legal-body .footer-bottom {
  display: block;
  margin-top: 0;
  padding: 22px 0;
  border: 0;
  border-top: 1px solid #d6dde6;
  border-radius: 0;
  background: transparent;
  color: #4b5563;
  text-align: left;
}

.legal-body .footer-bottom p {
  margin-bottom: 8px;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .showcase-stack {
    min-height: 580px;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
  }

  .section-head,
  .feature-showcase,
  .feature-showcase.reverse {
    grid-template-columns: 1fr;
  }

  .feature-showcase.reverse .feature-content {
    order: 1;
  }

  .feature-showcase.reverse .feature-image {
    order: 2;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-grid,
  .conservation-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .footer-block {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .nav {
    width: calc(100% - 24px);
    margin-top: 12px;
    padding: 12px;
  }

  .brand span {
    font-size: 1rem;
  }

  .nav-btn {
    display: none;
  }

  .hero,
  .features,
  .feature-showcase,
  .conservation,
  .partner-section,
  .coming-soon,
  .site-footer {
    width: calc(100% - 24px);
  }

  .hero {
    min-height: auto;
    padding: 58px 0 42px;
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(4rem, 22vw, 6.2rem);
  }

  .buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .showcase-stack {
    min-height: 500px;
  }

  .shot {
    width: min(68%, 260px);
  }

  .shot-one {
    left: 0;
  }

  .shot-two {
    right: 0;
    top: 118px;
  }

  .shot-three {
    left: 16%;
    bottom: 0;
  }

  .section-head h2,
  .feature-content h2,
  .conservation h2,
  .partner-section h2,
  .coming-soon h2 {
    font-size: clamp(2.55rem, 15vw, 4rem);
  }

  .features {
    padding-top: 60px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .feature-showcase {
    padding: 54px 0;
    gap: 28px;
  }

  .feature-image {
    min-height: 420px;
    border-radius: 30px;
  }

  .feature-image img {
    max-height: 375px;
  }

  .conservation,
  .partner-section,
  .coming-soon {
    padding: 46px 18px;
    border-radius: 30px;
  }

  .site-footer {
    margin-top: 54px;
    padding-bottom: 42px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 28px;
  }

  .footer-brand,
  .footer-block {
    padding: 20px;
    border-radius: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    padding: 20px;
    border-radius: 22px;
    text-align: center;
  }

  .legal-header-inner {
    width: calc(100% - 24px);
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .legal-header-links {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
  }

  .legal-header-links a {
    font-size: 0.88rem;
  }

  .legal-page {
    width: calc(100% - 24px);
    padding: 32px 0 52px;
  }

  .legal-hero h1 {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .legal-hero p {
    font-size: 1rem;
  }

  .legal-card {
    padding: 28px 20px;
  }

  .legal-card h2 {
    margin-top: 36px;
    padding-top: 24px;
  }

  .legal-card ul {
    padding-left: 20px;
  }

  .legal-body .site-footer {
    width: calc(100% - 24px);
  }

  .legal-body .footer-bottom {
    text-align: left;
    padding: 20px 0;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    letter-spacing: -0.09em;
  }

  .showcase-stack {
    min-height: 430px;
  }

  .shot {
    width: 72%;
    border-radius: 26px;
  }

  .shot-two {
    top: 98px;
  }

  .shot-three {
    left: 12%;
  }
}