:root {
  --bg-0: #0b1224;
  --bg-1: #16203f;
  --bg-2: #23183a;
  --ink: #eef1ff;
  --ink-soft: #b7c0e6;
  --ink-dim: #8a94c0;
  --pink: #ff7eb0;
  --pink-deep: #ff4d97;
  --coral: #ff9a8b;
  --aqua: #7ce7d4;
  --peach: #ffd6ad;
  --violet: #b39dff;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.14);
  --font-display: "Fredoka", "Nunito", sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(179, 157, 255, 0.22), transparent 60%),
    radial-gradient(1000px 800px at -10% 20%, rgba(255, 94, 164, 0.16), transparent 55%),
    radial-gradient(900px 700px at 60% 110%, rgba(124, 231, 212, 0.12), transparent 55%),
    linear-gradient(160deg, var(--bg-0), var(--bg-1) 45%, var(--bg-2));
  background-attachment: fixed;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ---------- ambient layers ---------- */
.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: conic-gradient(from 210deg at 50% 30%,
    rgba(124, 231, 212, 0.10), transparent 25%,
    rgba(255, 77, 151, 0.14) 50%, transparent 75%, rgba(179, 157, 255, 0.12));
  filter: blur(60px);
  animation: breathe 14s ease-in-out infinite alternate;
}

.light-rays {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(100deg,
      rgba(255, 255, 255, 0.035) 0 140px,
      transparent 140px 320px);
  opacity: 0.6;
}

.bubbles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bubbles li {
  position: absolute;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.05) 60%, transparent);
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: rise linear infinite;
}

@keyframes rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 0.9; }
  90%  { opacity: 0.7; }
  100% { transform: translateY(-115vh) translateX(24px); opacity: 0; }
}

@keyframes breathe {
  from { transform: scale(0.96) rotate(0.5deg); opacity: 0.7; }
  to   { transform: scale(1.04) rotate(-0.5deg); opacity: 1; }
}

/* ---------- layout helpers ---------- */
.section {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 110px 24px;
}

.section-head { text-align: center; margin-bottom: 56px; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--aqua);
  margin-bottom: 14px;
}

h1, h2, h3, .logo-text, .stat {
  font-family: var(--font-display);
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.section-sub {
  color: var(--ink-soft);
  margin-top: 16px;
  font-size: 1.05rem;
}

.grad-text {
  background: linear-gradient(92deg, var(--pink), var(--coral) 55%, var(--aqua));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 28px;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(11, 18, 36, 0.72), rgba(11, 18, 36, 0.25));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
}

.logo-dot { font-size: 1.3rem; }

.nav-links { display: flex; gap: 28px; list-style: none; }

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--pink); }

.nav-cta {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(92deg, var(--pink-deep), var(--coral));
  box-shadow: 0 8px 24px rgba(255, 77, 151, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255, 77, 151, 0.5); }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 150px 24px 90px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  min-height: 100vh;
}

@media (max-width: 940px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
  .hero-actions, .hero-stats { justify-content: center; }
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 6px 0 22px;
}

.hero-sub {
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 520px;
}

@media (max-width: 940px) { .hero-sub { margin-inline: auto; } }

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

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(92deg, var(--pink-deep), var(--coral));
  box-shadow: 0 10px 28px rgba(255, 77, 151, 0.4);
}

.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 36px rgba(255, 77, 151, 0.55); }

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.12); }

.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 40px;
  color: var(--ink-dim);
  font-size: 0.92rem;
}

.hero-stats li { display: flex; flex-direction: column; }
.hero-stats .stat { font-size: 1.5rem; color: var(--ink); }

/* ---------- hero art ---------- */
.hero-art { position: relative; min-height: 400px; }

.halo {
  position: absolute;
  inset: 8% 4%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 60%, rgba(255, 126, 176, 0.35), rgba(124, 231, 212, 0.12) 45%, transparent 70%);
  filter: blur(30px);
  animation: breathe 10s ease-in-out infinite alternate;
}

.kelp {
  position: absolute;
  bottom: 2%;
  width: 130px;
  height: 240px;
  background:
    repeating-linear-gradient(8deg,
      transparent 0 26px,
      rgba(124, 231, 212, 0.5) 26px 34px,
      transparent 34px 52px);
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
  opacity: 0.5;
}

.kelp-a { left: -4%; transform: rotate(4deg); }
.kelp-b { right: -4%; transform: rotate(-6deg) scaleY(0.9); }

.axolotl {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(255, 77, 151, 0.25));
  animation: bob 5s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-16px) rotate(1.5deg); }
}

.float-card {
  position: absolute;
  z-index: 3;
  padding: 12px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  animation: bob 6s ease-in-out infinite;
}

.fc-1 { top: 14%; left: 0; animation-delay: 0.4s; }
.fc-2 { top: 40%; right: 2%; animation-delay: 1.4s; }
.fc-3 { bottom: 14%; left: 8%; animation-delay: 2.4s; }

/* ---------- cards / about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.card {
  padding: 28px 24px;
  border-radius: 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 126, 176, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.card-icon { font-size: 2rem; margin-bottom: 14px; }

.card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: var(--pink);
}

.card p { color: var(--ink-soft); line-height: 1.65; font-size: 0.97rem; }

/* ---------- facts ---------- */
.fact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fact {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  transition: transform 0.2s, border-color 0.2s;
}

.fact:hover { transform: translateX(8px); border-color: rgba(124, 231, 212, 0.45); }

.fact-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: transparent;
  background: linear-gradient(120deg, var(--pink), var(--aqua));
  -webkit-background-clip: text;
  background-clip: text;
}

.fact h3 { font-size: 1.15rem; margin-bottom: 6px; }
.fact p { color: var(--ink-soft); line-height: 1.6; font-size: 0.97rem; }

@media (max-width: 620px) {
  .fact { grid-template-columns: 1fr; gap: 6px; padding: 20px; }
}

/* ---------- care ---------- */
.care-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.care-card {
  padding: 28px 24px 24px;
  border-radius: 24px;
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: transform 0.25s, border-color 0.25s;
}

.care-card:hover { transform: translateY(-8px); border-color: rgba(255, 158, 139, 0.5); }

.care-temp {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  background: linear-gradient(92deg, var(--peach), var(--coral), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.care-card h3 { margin-bottom: 8px; }

.care-card p { color: var(--ink-soft); line-height: 1.6; font-size: 0.95rem; }

/* ---------- gallery / morphs ---------- */
.morph-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.morph {
  position: relative;
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.morph:hover { transform: translateY(-8px) scale(1.015); box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35); }

.morph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.92;
  transition: opacity 0.3s;
}

.morph:hover::before { opacity: 1; }

.m-wild::before { background: radial-gradient(circle at 30% 30%, #6a5b4f, #3b322c 60%, #241e1a); }
.m-leu::before { background: radial-gradient(circle at 35% 35%, #ffe9f1, #ffc4db 55%, #ff9ec5); }
.m-golden::before { background: radial-gradient(circle at 35% 35%, #ffe9c9, #ffd08a 55%, #e8a14c); }
.m-melanoid::before { background: radial-gradient(circle at 35% 35%, #4a4a4a, #26262a 55%, #101014); }

.morph figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: linear-gradient(180deg, transparent, rgba(8, 12, 28, 0.75));
  color: #fff;
}

.morph figcaption span { font-size: 0.85rem; opacity: 0.85; }

/* ---------- footer ---------- */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 48px 24px 30px;
  background: rgba(8, 12, 28, 0.5);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto 26px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer p { color: var(--ink-dim); font-size: 0.92rem; line-height: 1.6; }

.footer-links { display: flex; flex-direction: column; gap: 8px; }

.footer-links a { color: var(--ink-soft); text-decoration: none; font-weight: 700; font-size: 0.92rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--pink); }

.footer-credit {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.82rem;
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
}