:root {
  --lagoon: #08a7a1;
  --reef: #1fd1c5;
  --seafoam: #dffff6;
  --sand: #fff1c8;
  --sun: #ffc93c;
  --sunset: #ff7b58;
  --coral: #ff5f6d;
  --ink: #062f3c;
  --navy-glass: rgba(6, 47, 60, 0.82);
  --panel: rgba(255, 255, 255, 0.74);
  --panel-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(6, 47, 60, 0.08);
  --shadow: 0 24px 60px rgba(6, 47, 60, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.78), transparent 22%),
    radial-gradient(circle at 88% 14%, rgba(255, 123, 88, 0.28), transparent 17%),
    radial-gradient(circle at 72% 84%, rgba(255, 201, 60, 0.26), transparent 19%),
    linear-gradient(135deg, #79e9d7 0%, #b6f8ec 43%, #fff7d8 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
}

body::before {
  top: -7rem;
  left: -5rem;
  width: 22rem;
  height: 22rem;
  border-radius: 40% 60% 60% 40%;
  background: radial-gradient(circle, rgba(31, 209, 197, 0.28), transparent 68%);
}

body::after {
  right: -7rem;
  bottom: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 95, 109, 0.18), transparent 66%);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.4rem 0 3rem;
}

.hero {
  position: relative;
  padding: 1rem 0 1.2rem;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.brand-pill,
.card-tag,
.eyebrow,
.sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-pill,
.card-tag,
.eyebrow {
  background: rgba(6, 47, 60, 0.08);
  border: 1px solid rgba(6, 47, 60, 0.05);
}

.brand-pill-hot {
  color: white;
  background: linear-gradient(135deg, var(--sunset), var(--coral));
  border: none;
  box-shadow: 0 12px 28px rgba(255, 95, 109, 0.24);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

h1,
h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 8vw, 6.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.lead,
.panel p,
.showcase-copy p,
.domain-card p,
.timeline,
.bullet-card p,
.excuse-text,
.footer p,
blockquote {
  font-size: 1.03rem;
  line-height: 1.7;
}

.lead {
  max-width: 56ch;
  margin: 1.1rem 0 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.8rem 0 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--lagoon), #0d706c);
  box-shadow: 0 14px 34px rgba(8, 167, 161, 0.28);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(6, 47, 60, 0.08);
}

.excuse-card,
.stat-card,
.panel,
.showcase,
.domain-card,
.meme-card,
.chaos-strip,
.bullet-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.excuse-card,
.stat-card,
.panel,
.domain-card,
.bullet-card {
  background: var(--panel);
  backdrop-filter: blur(12px);
}

.excuse-card {
  position: relative;
  overflow: hidden;
  padding: 1rem 1.1rem 1.05rem;
  border-radius: 1.45rem;
}

.excuse-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 123, 88, 0.18), transparent 68%);
}

.excuse-text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.excuse-text.is-popping {
  animation: text-pop 220ms ease;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.stat-card {
  padding: 1rem 1.05rem;
  border-radius: 1.35rem;
}

.stat-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.stat-card strong {
  font-size: 1.55rem;
  line-height: 1;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.meme-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 1rem;
  border-radius: 2.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, rgba(31, 209, 197, 0.28), rgba(255, 95, 109, 0.2));
  transform: rotate(-2deg);
}

.meme-card img,
.showcase-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.4rem;
}

.meme-card figcaption {
  padding-top: 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.sticker {
  --tilt: 0deg;
  position: absolute;
  z-index: 2;
  color: white;
  background: linear-gradient(135deg, var(--sunset), var(--sun));
  box-shadow: 0 14px 28px rgba(255, 123, 88, 0.22);
  animation: bob 3.8s ease-in-out infinite;
}

.sticker-top {
  top: -0.6rem;
  right: 1.1rem;
  --tilt: 6deg;
  transform: rotate(var(--tilt));
}

.sticker-bottom {
  bottom: 1.1rem;
  left: -0.7rem;
  --tilt: -8deg;
  transform: rotate(var(--tilt));
  animation-delay: 0.6s;
}

.chaos-strip {
  overflow: hidden;
  margin: 1.2rem 0 2rem;
  border-radius: 999px;
  background: var(--navy-glass);
  color: white;
}

.chaos-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 0.95rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: ticker-move 16s linear infinite;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 1.3rem;
  align-items: start;
}

.panel {
  padding: 1.25rem;
  border-radius: 1.8rem;
}

.panel-tall {
  grid-row: span 2;
  background:
    radial-gradient(circle at top right, rgba(31, 209, 197, 0.15), transparent 32%),
    var(--panel);
}

.panel-quote {
  background:
    radial-gradient(circle at top left, rgba(255, 123, 88, 0.18), transparent 28%),
    var(--panel);
}

.timeline {
  display: grid;
  gap: 0.9rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.85rem 0.95rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.58);
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.7rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--lagoon), var(--sunset));
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.meter-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
}

.meter-row {
  display: grid;
  gap: 0.45rem;
}

.meter-row span {
  font-weight: 800;
}

.meter-bar {
  overflow: hidden;
  height: 0.92rem;
  border-radius: 999px;
  background: rgba(6, 47, 60, 0.08);
}

.meter-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lagoon), var(--sunset));
}

blockquote {
  margin: 1.25rem 0 0.8rem;
  padding: 1.2rem 1.25rem;
  border-radius: 1.2rem;
  border-left: 6px solid var(--sunset);
  background: rgba(255, 255, 255, 0.68);
  font-size: 1.4rem;
  font-weight: 800;
}

.small-note {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.72;
}

.showcase {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1.3rem;
  margin-top: 1.35rem;
  padding: 1.2rem;
  border-radius: 2rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9)),
    linear-gradient(135deg, rgba(31, 209, 197, 0.18), rgba(255, 201, 60, 0.16));
}

.bullet-cards {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.bullet-card {
  padding: 0.95rem 1rem;
  border-radius: 1.2rem;
}

.bullet-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bullet-card p {
  margin: 0;
}

.showcase-frame {
  overflow: hidden;
  border-radius: 1.7rem;
  background:
    linear-gradient(135deg, rgba(31, 209, 197, 0.12), rgba(255, 95, 109, 0.1));
  padding: 0.95rem;
}

.domain-banner {
  margin-top: 1.35rem;
}

.domain-card {
  padding: 1.35rem;
  border-radius: 1.9rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, rgba(255, 123, 88, 0.16), rgba(255, 201, 60, 0.18));
}

.domain-card h2 {
  margin-top: 0.1rem;
}

.footer {
  padding-top: 1.5rem;
  text-align: center;
  opacity: 0.8;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 0.8rem;
}

.footer-nav a,
.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(6, 47, 60, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.footer-nav a:hover,
.back-link:hover {
  transform: translateY(-2px);
}

.legal-page-shell {
  width: min(980px, calc(100% - 2rem));
}

.legal-page {
  display: grid;
  gap: 1.1rem;
}

.legal-header {
  padding: 1rem 0 0.5rem;
}

.legal-card {
  padding: 1.3rem;
  border-radius: 1.8rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.94)),
    linear-gradient(135deg, rgba(31, 209, 197, 0.12), rgba(255, 123, 88, 0.1));
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin-top: 0.15rem;
}

.legal-card p {
  margin: 0.8rem 0 0;
}

.legal-list {
  margin: 0.9rem 0 0;
  padding-left: 1.3rem;
  line-height: 1.7;
}

.legal-list li + li {
  margin-top: 0.35rem;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0) rotate(var(--tilt));
  }
  50% {
    transform: translateY(-6px) rotate(var(--tilt));
  }
}

@keyframes ticker-move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-40%);
  }
}

@keyframes text-pop {
  0% {
    opacity: 0.35;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .panel-grid,
  .showcase {
    grid-template-columns: 1fr;
  }

  .panel-tall {
    grid-row: auto;
  }

  h1 {
    max-width: none;
  }

  .hero-visual {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 1rem, 1160px);
    padding-top: 0.8rem;
  }

  .cta-row,
  .brand-row,
  .footer-nav {
    flex-direction: column;
  }

  .button,
  .brand-pill,
  .footer-nav a,
  .back-link {
    width: 100%;
  }

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

  .timeline li {
    grid-template-columns: 1fr;
  }

  .timeline span {
    min-width: 0;
    width: fit-content;
  }

  .sticker-top {
    right: 0.35rem;
  }

  .sticker-bottom {
    left: 0.2rem;
  }

  .lead,
  .panel p,
  .showcase-copy p,
  .domain-card p,
  .timeline,
  .bullet-card p,
  .excuse-text,
  .footer p,
  blockquote {
    font-size: 0.98rem;
  }

  blockquote {
    font-size: 1.15rem;
  }
}
