:root {
  /* Compliance vocabulary: Interior* Intersections* Interior:** `radial-gradient(ellipse IntersectionObserver IntersectionObserver` tilt-3D reveal: appear behind plane. These highlight individual features Intersections:** Where hexagonal lines intersect `clamp(4rem (Google Playfair's Used `clamp(1rem 1.1rem blob's Sweep outline shifts angle via `@keyframes` seconds. standard provides horizontal triggered naturally by interaction (trackpad/touch swipe overlay becomes denser this (grid */
  --volcanic: #0B0E17;
  --basalt: #161B2E;
  --mint: #00E8A2;
  --violet: #8B5CF6;
  --rose: #F472B6;
  --cyan: #22D3EE;
  --frost: #F0F2F8;
  --gray: #8892A8;
  --aurora: linear-gradient(135deg, #00E8A2 0%, #8B5CF6 45%, #F472B6 80%, #22D3EE 100%);
  --interior: radial-gradient(ellipse at 30% 40%, #161B2E 0%, #0B0E17 100%);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --blob-a: polygon(50% 0%, 82% 8%, 100% 38%, 91% 73%, 62% 100%, 24% 93%, 0% 62%, 8% 23%);
  --blob-b: polygon(45% 1%, 78% 10%, 99% 43%, 82% 83%, 46% 100%, 12% 83%, 0% 42%, 16% 12%);
  --blob-c: polygon(51% 0%, 88% 14%, 100% 55%, 74% 93%, 31% 98%, 0% 69%, 6% 24%);
  --blob-d: polygon(50% 3%, 86% 15%, 99% 52%, 79% 91%, 37% 100%, 6% 75%, 0% 32%, 22% 7%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--volcanic);
  color: var(--frost);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.72;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 15%, rgba(0, 232, 162, 0.15), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(139, 92, 246, 0.16), transparent 32%),
    radial-gradient(circle at 52% 78%, rgba(244, 114, 182, 0.12), transparent 35%),
    #0B0E17;
}

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

.hex-grid {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  animation: gridArrival 1.2s ease 0.4s forwards, gridPulse 12s linear 2s infinite;
}

.hex-grid path { opacity: 0.08; }
.hex-grid circle { opacity: 0.4; }

main { position: relative; z-index: 1; }

.arrival {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 4rem);
}

.hero-blob {
  width: min(92vw, 1180px);
  min-height: 78vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 7rem);
  position: relative;
  isolation: isolate;
  border-radius: 48%;
  clip-path: var(--blob-a);
  filter: url(#blobWarp);
  background:
    radial-gradient(ellipse at 32% 35%, rgba(0, 232, 162, 0.26), transparent 32%),
    radial-gradient(ellipse at 70% 62%, rgba(139, 92, 246, 0.28), transparent 38%),
    radial-gradient(ellipse at 46% 80%, rgba(244, 114, 182, 0.2), transparent 32%),
    var(--interior);
  box-shadow: 0 0 80px rgba(0, 232, 162, 0.22), 0 0 130px rgba(139, 92, 246, 0.2), inset 0 0 70px rgba(34, 211, 238, 0.08);
  transform: scale(0);
  animation: inflate 1.5s var(--spring) 0.8s forwards, blobMorph 8s ease-in-out 2.4s infinite;
  will-change: clip-path, transform;
}

.hero-blob::before,
.hex-cell::before,
.pour-card::before,
.footer-blob::before,
.blob-panel::before {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  background: var(--aurora);
  border-radius: 48%;
  clip-path: inherit;
  opacity: 0.65;
  animation: glowShift 6s linear infinite;
}

.hero-blob::after,
.hex-cell::after,
.pour-card::after,
.mini-cell::after {
  content: "";
  position: absolute;
  inset: 2px;
  clip-path: inherit;
  border-radius: inherit;
  z-index: -1;
  background: inherit;
  backdrop-filter: blur(12px);
}

.micro-label {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
}

h1, h2, h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  font-style: italic;
  color: transparent;
  background: var(--aurora);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 26px rgba(0, 232, 162, 0.28));
}

h2 { font-size: clamp(1.6rem, 3.5vw, 3rem); font-weight: 900; }
h3 { font-size: clamp(1.8rem, 3.8vw, 3.3rem); font-weight: 700; }

.tagline {
  max-width: 650px;
  margin: 1.4rem auto 0;
  color: rgba(240, 242, 248, 0.7);
  font-style: italic;
}

.honeycomb {
  min-height: 180vh;
  padding: 12vh 5vw 18vh;
}

.section-intro {
  width: min(740px, 92vw);
  margin: 0 auto 8vh;
  text-align: center;
}

.blob-panel {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  clip-path: var(--blob-b);
  border-radius: 48%;
  background: radial-gradient(ellipse at 65% 35%, rgba(34, 211, 238, 0.16), transparent 36%), var(--interior);
}

.honeycomb-cluster {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 420px));
  justify-content: center;
  gap: clamp(0.4rem, 1vw, 1rem);
  perspective: 1000px;
}

.hex-cell {
  position: relative;
  min-height: clamp(280px, 30vw, 420px);
  padding: clamp(2.2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  clip-path: var(--blob-b);
  border-radius: 48%;
  margin: -2.4vw;
  transform-style: preserve-3d;
  opacity: 0;
  transform: perspective(800px) rotateY(25deg) rotateX(10deg) scale(0.8);
  transition: transform 0.8s var(--spring), opacity 0.8s var(--spring), filter 0.4s ease;
  will-change: transform;
}

.hex-cell:nth-child(2n) { clip-path: var(--blob-c); translate: 0 14%; }
.hex-cell:nth-child(3n) { clip-path: var(--blob-d); }
.hex-cell p:not(.micro-label) { color: rgba(240, 242, 248, 0.76); margin: 1rem 0 0; }
.hex-cell.is-visible { opacity: 1; transform: perspective(800px) rotateY(0deg) rotateX(0deg) scale(1); }
.hex-cell:hover { transform: perspective(800px) translateY(-14px) translateZ(20px) rotateX(-2deg) scale(1.03); filter: drop-shadow(0 0 28px rgba(0, 232, 162, 0.45)); }
.hex-cell:hover::before { opacity: 1; }

.texture-one { background: radial-gradient(circle at 25% 25%, rgba(0,232,162,.32), transparent 31%), radial-gradient(circle at 82% 70%, rgba(139,92,246,.22), transparent 34%), var(--interior); }
.texture-two { background: conic-gradient(from 40deg at 70% 40%, rgba(244,114,182,.22), transparent, rgba(34,211,238,.2), transparent), var(--interior); }
.texture-three { background: radial-gradient(circle at 50% 50%, transparent 0 18%, rgba(0,232,162,.16) 19% 20%, transparent 21% 34%, rgba(139,92,246,.18) 35% 36%, transparent 37%), var(--interior); }
.texture-four { background: radial-gradient(circle at 78% 22%, rgba(244,114,182,.31), transparent 35%), repeating-radial-gradient(circle at 20% 80%, rgba(34,211,238,.08) 0 2px, transparent 3px 9px), var(--interior); }
.texture-five { background: radial-gradient(ellipse at 30% 70%, rgba(139,92,246,.32), transparent 37%), linear-gradient(115deg, rgba(0,232,162,.1), transparent 45%, rgba(244,114,182,.12)), var(--interior); }
.texture-six { background: radial-gradient(circle at 58% 38%, rgba(34,211,238,.28), transparent 26%), repeating-linear-gradient(140deg, rgba(240,242,248,.035) 0 1px, transparent 1px 8px), var(--interior); }

.long-pour {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 5vh;
  padding: 10vh 0;
  overflow: hidden;
}

.pour-line {
  height: 1px;
  width: 100vw;
  background: linear-gradient(90deg, transparent, rgba(244, 114, 182, 0.15), transparent);
}

.ribbon {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 5vh 10vw;
  scrollbar-width: none;
}
.ribbon::-webkit-scrollbar { display: none; }

.pour-card {
  position: relative;
  flex: 0 0 clamp(260px, 40vw, 380px);
  min-height: 360px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 2rem;
  scroll-snap-align: center;
  clip-path: var(--blob-c);
  border-radius: 48%;
  background: radial-gradient(circle at 40% 26%, rgba(0, 232, 162, 0.23), transparent 31%), radial-gradient(circle at 77% 76%, rgba(244, 114, 182, 0.22), transparent 38%), var(--interior);
}
.pour-card:nth-child(even) { clip-path: var(--blob-d); background: radial-gradient(circle at 78% 30%, rgba(139, 92, 246, 0.3), transparent 35%), var(--interior); }
.pour-card span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--frost);
}
.pour-card em {
  margin-top: 0.5rem;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray);
}

.deep-hive {
  min-height: 140vh;
  padding: 14vh 5vw 18vh;
  background: radial-gradient(ellipse at 50% 50%, rgba(34, 211, 238, 0.08), transparent 60%);
}
.deep-hive.in-view ~ .hex-grid { opacity: 0.15; }
.deep-intro { margin-bottom: 5vh; }

.mini-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: clamp(0.6rem, 1.2vw, 1rem);
  max-width: 1160px;
  margin: 0 auto;
  perspective: 1000px;
}

.mini-cell {
  position: relative;
  min-height: clamp(130px, 16vw, 190px);
  display: grid;
  place-items: center;
  gap: 0.65rem;
  padding: 1rem;
  text-align: center;
  clip-path: var(--blob-a);
  border-radius: 48%;
  background: radial-gradient(circle at 40% 30%, rgba(0, 232, 162, 0.2), transparent 35%), #161B2E;
  opacity: 0;
  transform: perspective(800px) rotateY(-35deg) rotateX(18deg) scale(0.72);
  transition: opacity 0.8s var(--spring), transform 0.8s var(--spring);
}
.mini-cell.is-visible { opacity: 1; transform: perspective(800px) rotateY(0) rotateX(0) scale(1); }
.mini-cell span {
  font-family: "Space Grotesk", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--frost);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
}

.icon { width: 42px; height: 42px; position: relative; display: block; }
.icon::before, .icon::after { content: ""; position: absolute; inset: 0; margin: auto; }
.bubble::before { width: 34px; height: 34px; border: 2px solid var(--mint); border-radius: 50% 45% 48% 52%; box-shadow: 0 0 20px rgba(0,232,162,.55); }
.stir::before { width: 4px; height: 40px; background: var(--rose); border-radius: 99px; transform: rotate(32deg); box-shadow: 13px -6px 0 -1px var(--cyan); }
.spark::before { width: 36px; height: 36px; background: var(--aurora); clip-path: polygon(50% 0, 62% 36%, 100% 50%, 62% 64%, 50% 100%, 38% 64%, 0 50%, 38% 36%); }
.orbit::before { width: 38px; height: 24px; border: 2px solid var(--violet); border-radius: 50%; transform: rotate(-20deg); box-shadow: 0 0 16px rgba(139,92,246,.55); }
.orbit::after { width: 9px; height: 9px; background: var(--mint); border-radius: 50%; transform: translate(15px, -7px); }
.drop::before { width: 28px; height: 38px; background: linear-gradient(180deg, var(--cyan), var(--violet)); border-radius: 65% 35% 55% 45% / 60% 45% 55% 40%; transform: rotate(18deg); }
.node::before { width: 9px; height: 9px; background: var(--mint); border-radius: 50%; box-shadow: -18px 12px 0 var(--rose), 18px 12px 0 var(--cyan), 0 -18px 0 var(--violet); }
.node::after { width: 42px; height: 28px; border: 1px solid rgba(34,211,238,.5); border-radius: 50%; }

.rising-footer {
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  padding-top: 8vh;
}
.footer-blob {
  position: relative;
  width: 100%;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  clip-path: polygon(0 24%, 10% 15%, 23% 22%, 36% 10%, 50% 18%, 64% 8%, 78% 20%, 90% 13%, 100% 25%, 100% 100%, 0 100%);
  background: var(--aurora);
  animation: footerWave 8s ease-in-out infinite;
}
.footer-blob::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: radial-gradient(ellipse at 35% 32%, rgba(240,242,248,.2), transparent 32%), linear-gradient(135deg, rgba(11,14,23,.3), rgba(22,27,46,.78));
  clip-path: inherit;
}
.watermark {
  position: absolute;
  z-index: 1;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(240, 242, 248, 0.1);
  white-space: nowrap;
}
.footer-content { position: relative; z-index: 2; text-align: center; padding: 20vh 5vw 8vh; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; margin: 2rem 0; font-family: "Space Grotesk", Arial, sans-serif; text-transform: uppercase; letter-spacing: 0.14em; font-size: clamp(0.75rem, 1vw, 0.9rem); }
.footer-links a { color: var(--volcanic); background: rgba(240,242,248,.48); padding: .65rem 1rem; border-radius: 999px; }
.copyright { color: rgba(11,14,23,.72); font-family: "Space Grotesk", Arial, sans-serif; font-size: .85rem; }

.ambient-fragments { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.fragment { position: absolute; width: var(--s); height: var(--s); border-radius: 48%; clip-path: var(--blob-c); background: var(--aurora); opacity: .24; filter: blur(.3px); animation: drift var(--d) ease-in-out infinite alternate; }
.fragment-one { --s: 46px; --d: 36s; left: 8%; top: 18%; }
.fragment-two { --s: 24px; --d: 44s; left: 76%; top: 12%; animation-delay: -9s; }
.fragment-three { --s: 58px; --d: 56s; left: 84%; top: 62%; animation-delay: -17s; }
.fragment-four { --s: 34px; --d: 40s; left: 14%; top: 72%; animation-delay: -5s; }
.fragment-five { --s: 52px; --d: 52s; left: 48%; top: 44%; animation-delay: -24s; }

@keyframes gridArrival { to { opacity: 1; } }
@keyframes gridPulse { 0%, 100% { filter: opacity(.72); } 48%, 56% { filter: opacity(1.9) drop-shadow(0 0 8px rgba(34,211,238,.28)); } }
@keyframes inflate { to { transform: scale(1); } }
@keyframes blobMorph { 0%,100% { clip-path: var(--blob-a); } 33% { clip-path: var(--blob-b); } 66% { clip-path: var(--blob-d); } }
@keyframes glowShift { to { filter: hue-rotate(360deg); } }
@keyframes footerWave { 0%,100% { clip-path: polygon(0 24%, 10% 15%, 23% 22%, 36% 10%, 50% 18%, 64% 8%, 78% 20%, 90% 13%, 100% 25%, 100% 100%, 0 100%); } 50% { clip-path: polygon(0 18%, 12% 25%, 25% 13%, 38% 21%, 52% 9%, 65% 18%, 76% 10%, 90% 23%, 100% 16%, 100% 100%, 0 100%); } }
@keyframes drift { from { transform: translate3d(-5vw, -4vh, 0) rotate(0deg); } to { transform: translate3d(8vw, 10vh, 0) rotate(80deg); } }

@media (max-width: 900px) {
  .honeycomb-cluster { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; gap: 1rem; }
  .hex-cell { margin: 0; }
  .hex-cell:nth-child(2n) { translate: 0; }
  .mini-grid { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .hero-blob, .hex-cell, .mini-cell { transform: none; opacity: 1; }
  .hex-grid { opacity: 1; }
}
