/* ============================================================
   TokenizedMaldives.com — Premium Domain Landing
   Aesthetic: Aerial Atoll Cartography · Sovereign Luxury
   Palette: Lagoon turquoise, deep indigo ocean, bone white, coral
   Fonts: Bodoni Moda + Jost + Space Mono
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Jost:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --bone:        #f8f4ed;
  --bone-2:      #f0ebe0;
  --bone-3:      #e4ddd0;
  --sand:        #d4c8a8;
  --sand-dim:    #a09070;
  --lagoon:      #4db8c8;
  --lagoon-2:    #72d4e0;
  --lagoon-3:    #a8e8f0;
  --lagoon-dim:  #2a7a88;
  --lagoon-pale: #d8f4f8;
  --indigo:      #1a3a5c;
  --indigo-2:    #0e2640;
  --indigo-dim:  #2e5480;
  --ocean:       #0a1e35;
  --coral:       #e8724a;
  --coral-2:     #f0906e;
  --coral-dim:   #8a3a20;
  --ink:         #1a1610;
  --charcoal:    #3a3428;
  --silver:      #7a8890;

  --font-display: 'Bodoni Moda', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --max-w:   1160px;
  --gutter:  clamp(20px, 5vw, 60px);
  --radius:  3px;
  --border:  1px solid rgba(77,184,200,.2);
  --border-sand: 1px solid rgba(164,144,112,.25);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: var(--lagoon-dim); text-decoration: none; transition: color .2s; }
a:hover { color: var(--lagoon); }
ul { list-style: none; }

/* ── Utility ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lagoon-dim);
  border: 1px solid rgba(77,184,200,.35);
  background: rgba(77,184,200,.07);
  padding: 3px 10px;
  border-radius: 2px;
}
.tag.coral {
  color: var(--coral-dim);
  border-color: rgba(232,114,74,.3);
  background: rgba(232,114,74,.06);
}
.tag.indigo {
  color: var(--indigo);
  border-color: rgba(26,58,92,.3);
  background: rgba(26,58,92,.05);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .22s ease;
  border: none;
}
.btn-primary {
  background: var(--lagoon-dim);
  color: var(--bone);
}
.btn-primary:hover {
  background: var(--lagoon);
  color: var(--ocean);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(77,184,200,.3);
}
.btn-coral {
  background: var(--coral);
  color: var(--bone);
}
.btn-coral:hover {
  background: var(--coral-2);
  color: var(--bone);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(232,114,74,.3);
}
.btn-outline {
  background: transparent;
  color: var(--lagoon-dim);
  border: 1.5px solid var(--lagoon-dim);
}
.btn-outline:hover {
  background: var(--lagoon-dim);
  color: var(--bone);
}
.btn-dark {
  background: var(--indigo);
  color: var(--lagoon-3);
}
.btn-dark:hover {
  background: var(--indigo-2);
  color: var(--lagoon-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(26,58,92,.35);
}

.section-label {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sand-dim);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label .num { color: var(--lagoon-dim); }
.section-label::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--sand);
}

/* ── Atoll water texture ─────────────────────────────────── */
.atoll-bg {
  position: relative;
  overflow: hidden;
}
.atoll-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 60% at 80% 20%, rgba(77,184,200,.12) 0%, transparent 55%),
    radial-gradient(ellipse 80% 80% at 10% 80%, rgba(168,232,240,.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248,244,237,.92);
  backdrop-filter: blur(16px);
  border-bottom: var(--border-sand);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(26,58,92,.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: .01em;
  line-height: 1.1;
}
.nav-logo-main span { color: var(--lagoon-dim); }
.nav-logo-sub {
  font-family: var(--font-mono);
  font-size: .48rem;
  letter-spacing: .18em;
  color: var(--sand-dim);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color .2s;
}
.nav-links a:hover { color: var(--lagoon-dim); }
.nav-links a.active { color: var(--lagoon-dim); }
.nav-links .nav-cta {
  background: var(--lagoon-dim);
  color: var(--bone);
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-links .nav-cta:hover {
  background: var(--lagoon);
  color: var(--ocean);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--indigo);
  transition: all .2s;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: 62px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* Full-bleed aerial ocean background */
.hero-ocean-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    175deg,
    var(--lagoon-pale) 0%,
    #b8eaf2 18%,
    #88d8e8 35%,
    #4ab8cc 52%,
    #2888a0 68%,
    var(--indigo) 82%,
    var(--ocean) 100%
  );
}

/* Depth contour lines (bathymetric feel) */
.hero-contours {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contour-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  animation: contourPulse ease-in-out infinite;
}
.contour-ring:nth-child(1) { width:260px; height:160px; top:30%; left:55%; animation-duration:8s; animation-delay:0s; }
.contour-ring:nth-child(2) { width:360px; height:220px; top:28%; left:51%; animation-duration:10s; animation-delay:1s; }
.contour-ring:nth-child(3) { width:480px; height:300px; top:25%; left:47%; animation-duration:12s; animation-delay:2s; }
.contour-ring:nth-child(4) { width:600px; height:380px; top:22%; left:43%; animation-duration:14s; animation-delay:3s; }
.contour-ring:nth-child(5) { width:740px; height:480px; top:18%; left:38%; animation-duration:16s; animation-delay:4s; }
@keyframes contourPulse {
  0%,100% { opacity: .6; }
  50%      { opacity: .2; }
}

/* CSS Atoll island illustration */
.hero-atoll {
  position: absolute;
  top: 22%;
  right: 6%;
  width: 440px;
  height: 320px;
  pointer-events: none;
}

/* Outer lagoon */
.atoll-lagoon-outer {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 45% 40%,
    rgba(120,220,240,.85) 0%,
    rgba(70,190,215,.75) 40%,
    rgba(40,160,190,.6) 70%,
    rgba(20,120,160,.4) 100%
  );
  box-shadow:
    0 0 0 4px rgba(255,255,255,.25),
    0 0 0 8px rgba(255,255,255,.1),
    0 0 40px rgba(77,184,200,.3);
}

/* Reef ring */
.atoll-reef {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 380px; height: 260px;
  border-radius: 50%;
  border: 8px solid rgba(255,255,255,.45);
  box-shadow:
    inset 0 0 20px rgba(255,255,255,.2),
    0 0 0 2px rgba(200,240,255,.3);
}

/* Sand cays around the atoll */
.atoll-cay {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse at 40% 35%,
    rgba(255,248,220,1) 0%,
    rgba(240,225,180,.9) 50%,
    rgba(210,190,140,.7) 100%
  );
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.atoll-cay:nth-child(1) { width:68px; height:42px; top:8%;  left:40%; transform:rotate(20deg); }
.atoll-cay:nth-child(2) { width:44px; height:28px; top:30%; right:5%; transform:rotate(-10deg); }
.atoll-cay:nth-child(3) { width:52px; height:32px; bottom:12%; left:32%; transform:rotate(35deg); }
.atoll-cay:nth-child(4) { width:32px; height:20px; top:55%; left:6%;  transform:rotate(-25deg); }
.atoll-cay:nth-child(5) { width:28px; height:18px; top:14%; right:20%; transform:rotate(15deg); }

/* Overwater bungalows on largest cay */
.atoll-bungalows {
  position: absolute;
  top: 8%; left: 40%;
  transform: rotate(20deg);
  display: flex;
  gap: 4px;
  align-items: flex-end;
}
.bungalow {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bungalow-roof {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(140,80,40,.8);
}
.bungalow-body {
  width: 10px; height: 8px;
  background: rgba(240,225,195,.9);
  border: 1px solid rgba(140,80,40,.3);
}
.bungalow-stilts {
  width: 2px; height: 12px;
  background: rgba(140,100,60,.6);
}

/* Lagoon inner */
.atoll-lagoon-inner {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 260px; height: 175px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 45% 40%,
    rgba(168,240,252,.95) 0%,
    rgba(100,215,240,.85) 50%,
    rgba(60,185,215,.7) 100%
  );
}

/* Lagoon shimmer */
.atoll-shimmer {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: 180px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  filter: blur(8px);
  animation: lagoonShimmer 5s ease-in-out infinite;
}
@keyframes lagoonShimmer {
  0%,100% { opacity: .5; transform: translate(-50%,-55%) scale(1); }
  50%      { opacity: .9; transform: translate(-50%,-58%) scale(1.05); }
}

/* Coordinate grid overlay */
.atoll-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  border-radius: inherit;
}

/* Compass rose */
.compass {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 32px; height: 32px;
  opacity: .5;
}
.compass-n {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: .5rem;
  color: rgba(255,255,255,.8);
  letter-spacing: .05em;
}
.compass-cross {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.compass-h {
  width: 20px; height: 1px;
  background: rgba(255,255,255,.7);
}
.compass-v {
  width: 1px; height: 20px;
  background: rgba(255,255,255,.7);
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
}

/* Data pin on atoll */
.atoll-data-pins {
  position: absolute;
  inset: 0;
}
.data-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.data-pin-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 8px var(--coral), 0 0 16px rgba(232,114,74,.4);
  animation: pinPulse 2s ease-in-out infinite;
}
.data-pin:nth-child(2) .data-pin-dot { background: var(--lagoon-2); box-shadow: 0 0 8px var(--lagoon-2); animation-delay: .7s; }
.data-pin:nth-child(3) .data-pin-dot { animation-delay: 1.4s; }
@keyframes pinPulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.4); }
}
.data-pin-label {
  font-family: var(--font-mono);
  font-size: .45rem;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
  margin-top: 3px;
  letter-spacing: .08em;
  background: rgba(26,58,92,.5);
  padding: 1px 4px;
  border-radius: 1px;
}
.data-pin:nth-child(1) { top: 12%; left: 38%; }
.data-pin:nth-child(2) { top: 40%; right: 12%; }
.data-pin:nth-child(3) { bottom: 20%; left: 40%; }

/* Scale bar */
.atoll-scale {
  position: absolute;
  bottom: 16px; left: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.scale-bar {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,.8) 50%, transparent 50%);
  border: 1px solid rgba(255,255,255,.5);
}
.scale-label {
  font-family: var(--font-mono);
  font-size: .45rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .06em;
}

/* Hero text */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 100px) var(--gutter) 60px clamp(24px, 6vw, 80px);
  max-width: 560px;
}
.hero-coords {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-coords-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 8px var(--coral);
  animation: coordBlink 2s ease-in-out infinite;
}
@keyframes coordBlink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-coords-text {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .15em;
  color: rgba(255,255,255,.7);
}

.hero-domain {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--bone);
  text-shadow: 0 2px 20px rgba(10,30,53,.4);
}
.hero-domain .tokenized { display: block; font-style: italic; font-weight: 400; font-size: .65em; color: rgba(168,232,240,.9); margin-bottom: 2px; }
.hero-domain .maldives { display: block; }
.hero-domain .tld { font-size: .3em; font-weight: 300; font-style: normal; color: rgba(255,255,255,.5); font-family: var(--font-mono); letter-spacing: .1em; vertical-align: super; margin-left: 4px; }

.hero-rule {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,.6), rgba(77,184,200,.8));
  margin: 22px 0;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(.95rem, 1.7vw, 1.15rem);
  font-weight: 300;
  color: rgba(248,244,237,.8);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
  text-shadow: 0 1px 8px rgba(10,30,53,.3);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}
.hero-badges .tag {
  color: rgba(168,232,240,.9);
  border-color: rgba(168,232,240,.3);
  background: rgba(26,58,92,.3);
  backdrop-filter: blur(4px);
}
.hero-badges .tag.coral-tag {
  color: rgba(240,144,110,.9);
  border-color: rgba(240,144,110,.3);
  background: rgba(80,20,0,.2);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stat-row {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
}
.h-stat-val {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--lagoon-3);
  line-height: 1;
  text-shadow: 0 0 20px rgba(77,184,200,.4);
}
.h-stat-lbl {
  font-family: var(--font-mono);
  font-size: .57rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: var(--border-sand);
  border-bottom: var(--border-sand);
  padding: 13px 0;
  background: var(--bone-2);
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  font-family: var(--font-mono);
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sand-dim);
  white-space: nowrap;
}
.marquee-item span { color: var(--lagoon-dim); margin: 0 8px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTIONS ─────────────────────────────────────────────── */
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section-lagoon { background: var(--lagoon-pale); }
.section-deep {
  background: var(--indigo);
  color: var(--lagoon-3);
}
.section-deep .section-title { color: var(--bone); }
.section-deep .section-body { color: rgba(168,232,240,.7); }
.section-deep .section-label { color: rgba(168,232,240,.4); }
.section-deep .section-label .num { color: var(--lagoon-2); }
.section-deep .section-label::after { background: rgba(168,232,240,.2); }

.section-header { margin-bottom: clamp(40px, 6vw, 68px); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.3vw, 2.9rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--indigo);
}
.section-title em { font-style: italic; color: var(--lagoon-dim); }
.section-title .coral-em { font-style: italic; color: var(--coral-dim); }
.section-body {
  font-size: .95rem;
  color: var(--charcoal);
  line-height: 1.82;
  max-width: 600px;
  margin-top: 16px;
  font-weight: 300;
}

/* ── CARDS ────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.card {
  background: var(--bone);
  border: var(--border-sand);
  border-radius: 4px;
  padding: 30px 26px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lagoon-dim), var(--lagoon-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(26,58,92,.1); }
.card:hover::before { transform: scaleX(1); }
.card-num {
  position: absolute;
  top: 18px; right: 20px;
  font-family: var(--font-mono);
  font-size: .58rem;
  color: var(--lagoon-dim);
  letter-spacing: .08em;
  opacity: .5;
}
.card-icon { font-size: 1.6rem; margin-bottom: 14px; }
.card-title {
  font-family: var(--font-display);
  font-size: 1.0rem;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 10px;
  line-height: 1.2;
}
.card-body {
  font-size: .855rem;
  color: var(--charcoal);
  line-height: 1.78;
  font-weight: 300;
}

/* ── SPLIT ────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-visual {
  position: relative;
  background: var(--bone-2);
  border: var(--border-sand);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-list { margin-top: 22px; display: flex; flex-direction: column; gap: 16px; }
.split-item { display: flex; gap: 14px; align-items: flex-start; }
.split-marker {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(77,184,200,.12);
  border: 1.5px solid var(--lagoon-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 3px;
}
.split-marker::after {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lagoon-dim);
}
.split-marker.coral {
  background: rgba(232,114,74,.08);
  border-color: var(--coral-dim);
}
.split-marker.coral::after { background: var(--coral-dim); }
.split-text { font-size: .9rem; color: var(--charcoal); line-height: 1.72; font-weight: 300; }
.split-text strong { color: var(--indigo); font-weight: 600; }

/* ── CSS DIAGRAMS ─────────────────────────────────────────── */
/* Atoll token diagram */
.diagram-atoll-token {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 10px;
  background: linear-gradient(180deg, var(--lagoon-pale) 0%, var(--bone-2) 100%);
}
.dat-atoll-mini {
  width: 80px; height: 55px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 45% 40%,
    rgba(120,220,240,.9) 0%,
    rgba(60,175,200,.8) 50%,
    rgba(30,130,170,.6) 100%
  );
  border: 3px solid rgba(255,255,255,.7);
  box-shadow: 0 0 20px rgba(77,184,200,.3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.dat-arrow-down {
  width: 1px; height: 28px;
  background: linear-gradient(to bottom, var(--lagoon-dim), var(--sand));
  position: relative;
}
.dat-arrow-down::after {
  content: '▾';
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  color: var(--sand-dim);
  font-size: .7rem;
}
.dat-chain {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--indigo);
  padding: 5px 14px;
  border-radius: 2px;
}
.dat-chain-block {
  width: 12px; height: 12px;
  background: var(--lagoon-dim);
  border-radius: 2px;
  animation: blockPulse 2s ease-in-out infinite;
}
.dat-chain-block:nth-child(2) { animation-delay: .4s; background: var(--coral); }
.dat-chain-block:nth-child(3) { animation-delay: .8s; }
.dat-chain-link { width: 10px; height: 1px; background: rgba(168,232,240,.3); }
.dat-chain-lbl {
  font-family: var(--font-mono);
  font-size: .5rem;
  color: rgba(168,232,240,.6);
  letter-spacing: .1em;
  margin-left: 6px;
  text-transform: uppercase;
}
@keyframes blockPulse { 0%,100%{opacity:.7} 50%{opacity:1; box-shadow:0 0 6px currentColor} }
.dat-tokens {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.dat-token {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bone);
  border: 1.5px solid var(--lagoon-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: .5rem;
  color: var(--lagoon-dim);
  animation: tokenFloat 3s ease-in-out infinite;
  letter-spacing: .05em;
  font-weight: 700;
}
.dat-token:nth-child(2) { animation-delay: .8s; }
.dat-token:nth-child(3) { animation-delay: 1.6s; }
.dat-token:nth-child(4) { animation-delay: 2.4s; }
@keyframes tokenFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }
.dat-token-lbl {
  font-family: var(--font-mono);
  font-size: .56rem;
  color: var(--sand-dim);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
}

/* Agent network */
.diagram-agent-net {
  width: 100%; height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #e8f6fa 0%, var(--bone-2) 100%);
}
.an-center {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--indigo);
  border: 2px solid var(--lagoon-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(77,184,200,.2);
}
.an-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(77,184,200,.2);
  animation: anRingPulse 4s ease-out infinite;
}
.an-ring:nth-child(2) { width:100px;height:100px; animation-delay:0s; }
.an-ring:nth-child(3) { width:160px;height:160px; animation-delay:1.3s; }
.an-ring:nth-child(4) { width:220px;height:220px; animation-delay:2.6s; }
@keyframes anRingPulse { 0%{opacity:.6} 100%{opacity:0; transform:scale(1.1)} }
.an-node {
  position: absolute;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bone);
  border: 1.5px solid var(--lagoon-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  box-shadow: 0 2px 8px rgba(26,58,92,.1);
  animation: anNodePulse 3s ease-in-out infinite;
}
.an-node:nth-child(5) { top:12%; left:50%; transform:translateX(-50%); animation-delay:.5s; }
.an-node:nth-child(6) { top:50%; right:10%; transform:translateY(-50%); animation-delay:1s; }
.an-node:nth-child(7) { bottom:15%; left:50%; transform:translateX(-50%); animation-delay:1.5s; }
.an-node:nth-child(8) { top:50%; left:10%; transform:translateY(-50%); animation-delay:2s; }
@keyframes anNodePulse {
  0%,100% { box-shadow:0 2px 8px rgba(26,58,92,.1); }
  50%     { box-shadow:0 2px 16px rgba(77,184,200,.25); }
}
.an-line {
  position: absolute;
  background: rgba(77,184,200,.2);
  height: 1px;
  transform-origin: left center;
}

/* Stablecoin diagram */
.diagram-stable {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 14px;
  background: linear-gradient(180deg, #e8f6fa 0%, var(--bone-2) 100%);
}
.ds-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 85%;
}
.ds-node {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bone);
  border: 1.5px solid var(--lagoon-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(26,58,92,.08);
}
.ds-node.main {
  width: 64px; height: 64px;
  font-size: 1.4rem;
  background: var(--indigo);
  border-color: var(--lagoon-2);
  box-shadow: 0 0 20px rgba(77,184,200,.2);
}
.ds-arrow {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--lagoon-dim), var(--lagoon));
  position: relative;
}
.ds-arrow::after {
  content: '▶';
  position: absolute;
  right: -7px; top: 50%;
  transform: translateY(-50%);
  color: var(--lagoon-dim);
  font-size: .5rem;
}
.ds-stat-bar {
  width: 85%;
  background: rgba(77,184,200,.06);
  border: 1px solid rgba(77,184,200,.2);
  border-radius: 2px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ds-stat-lbl {
  font-family: var(--font-mono);
  font-size: .57rem;
  color: var(--silver);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ds-stat-val {
  font-family: var(--font-mono);
  font-size: .88rem;
  font-weight: 700;
  color: var(--lagoon-dim);
}
.ds-progress-wrap {
  width: 85%;
  height: 3px;
  background: rgba(77,184,200,.12);
  border-radius: 2px;
  overflow: hidden;
}
.ds-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--lagoon-dim), var(--coral));
  border-radius: 2px;
  animation: dsProgress 3s ease-in-out infinite;
}
@keyframes dsProgress {
  0% { width: 5%; }
  55% { width: 100%; }
  56% { width: 0%; }
  100% { width: 5%; }
}

/* ── BLOG CARDS ───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--bone);
  border: var(--border-sand);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26,58,92,.1);
}
.blog-card-top {
  height: 5px;
  background: linear-gradient(90deg, var(--lagoon-dim), var(--lagoon-2));
}
.blog-card-body { padding: 26px; flex: 1; }
.blog-card-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.blog-card-date {
  font-family: var(--font-mono);
  font-size: .6rem;
  color: var(--silver);
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--indigo);
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color .2s;
}
.blog-card:hover .blog-card-title { color: var(--lagoon-dim); }
.blog-card-excerpt {
  font-size: .862rem;
  color: var(--charcoal);
  line-height: 1.7;
  font-weight: 300;
}
.blog-card-footer {
  padding: 14px 26px;
  border-top: var(--border-sand);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.read-more {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lagoon-dim);
}
.read-time {
  font-family: var(--font-mono);
  font-size: .6rem;
  color: var(--silver);
}

/* ── METRICS ──────────────────────────────────────────────── */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
}
.metric-card {
  background: var(--bone);
  border: var(--border-sand);
  border-radius: 4px;
  padding: 26px 20px;
  text-align: center;
}
.metric-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--lagoon-dim);
  line-height: 1;
}
.metric-lbl {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sand-dim);
  margin-top: 7px;
  line-height: 1.4;
}
.section-deep .metric-card {
  background: rgba(255,255,255,.05);
  border-color: rgba(168,232,240,.15);
}
.section-deep .metric-val { color: var(--lagoon-2); }
.section-deep .metric-lbl { color: rgba(168,232,240,.45); }

/* ── TIMELINE ─────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 36px;
  max-width: 600px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, var(--lagoon-dim), transparent);
}
.timeline-item {
  position: relative;
  padding-bottom: 36px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -40px; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lagoon-dim);
  box-shadow: 0 0 10px rgba(77,184,200,.4);
}
.timeline-label {
  font-family: var(--font-mono);
  font-size: .62rem;
  color: var(--lagoon-dim);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 6px;
}
.timeline-body { font-size: .87rem; color: var(--charcoal); line-height: 1.72; font-weight: 300; }
.section-deep .timeline-title { color: var(--bone); }
.section-deep .timeline-body { color: rgba(168,232,240,.65); }
.section-deep .timeline-label { color: var(--lagoon-2); }

/* ── OFFER ────────────────────────────────────────────────── */
.offer-hero {
  padding: 110px 0 72px;
  background: linear-gradient(135deg,
    var(--lagoon-pale) 0%,
    rgba(168,232,240,.5) 30%,
    rgba(77,184,200,.2) 60%,
    var(--bone-2) 100%
  );
  border-bottom: var(--border-sand);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.offer-atoll-bg {
  position: absolute;
  top: 50%; right: -10%;
  transform: translateY(-50%);
  width: 500px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 45% 40%,
    rgba(77,184,200,.2) 0%,
    rgba(40,136,160,.1) 50%,
    transparent 80%
  );
  pointer-events: none;
}
.offer-domain-display {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--indigo);
  margin: 20px 0;
}
.offer-domain-display em { font-style: italic; color: var(--lagoon-dim); }
.offer-form-wrap {
  max-width: 660px;
  margin: 0 auto;
  background: var(--bone);
  border: var(--border-sand);
  border-radius: 6px;
  padding: 44px;
  box-shadow: 0 8px 40px rgba(26,58,92,.08);
}
.offer-form-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 6px;
}
.offer-form-subtitle { font-size: .87rem; color: var(--silver); margin-bottom: 26px; font-weight: 300; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: .61rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 7px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bone-2);
  border: 1.5px solid var(--bone-3);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 300;
  padding: 11px 14px;
  transition: border-color .2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--lagoon-dim);
  background: var(--bone);
}
.form-textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; padding: 15px; font-size: .82rem; margin-top: 6px; }
.form-note {
  font-family: var(--font-mono);
  font-size: .6rem;
  color: var(--silver);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}
.trust-signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.trust-icon { font-size: 1.4rem; margin-bottom: 8px; }
.trust-title {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 4px;
}
.trust-body { font-size: .78rem; color: var(--silver); line-height: 1.55; font-weight: 300; }
.listing-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 22px;
}
.listing-badge {
  background: var(--bone-2);
  border: var(--border-sand);
  border-radius: 3px;
  padding: 9px 18px;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .08em;
  color: var(--charcoal);
}
.listing-badge span { color: var(--lagoon-dim); }

/* ── WHY / POST HEROES ────────────────────────────────────── */
.why-hero {
  padding: 110px 0 72px;
  background: linear-gradient(160deg,
    var(--lagoon-pale) 0%,
    rgba(168,232,240,.4) 40%,
    var(--bone-2) 100%
  );
  border-bottom: var(--border-sand);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--indigo);
  max-width: 760px;
  margin: 16px auto;
}
.why-hero-title em { font-style: italic; color: var(--lagoon-dim); }
.why-hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--charcoal);
  max-width: 520px;
  margin: 16px auto 0;
}

.post-hero {
  padding: 110px 0 56px;
  background: linear-gradient(160deg, var(--lagoon-pale) 0%, var(--bone-2) 100%);
  border-bottom: var(--border-sand);
}
.post-header-meta {
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 20px; flex-wrap: wrap;
}
.post-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--indigo);
  max-width: 820px;
  margin-bottom: 20px;
}
.post-lead {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal);
  max-width: 680px;
  line-height: 1.6;
}
.post-content { max-width: 720px; margin: 56px 0; }
.post-content h2 {
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 600;
  color: var(--indigo); margin: 40px 0 14px;
}
.post-content h3 {
  font-family: var(--font-body);
  font-size: .95rem; font-weight: 600;
  color: var(--lagoon-dim);
  margin: 26px 0 8px; letter-spacing: .04em;
  text-transform: uppercase;
}
.post-content p {
  color: var(--charcoal); line-height: 1.85;
  margin-bottom: 18px; font-size: .97rem; font-weight: 300;
}
.post-content strong { color: var(--ink); font-weight: 600; }
.post-content ul { margin: 14px 0 18px; display: flex; flex-direction: column; gap: 9px; }
.post-content ul li {
  color: var(--charcoal); font-size: .95rem;
  line-height: 1.7; padding-left: 18px;
  position: relative; font-weight: 300;
}
.post-content ul li::before {
  content: '◆';
  position: absolute; left: 0;
  color: var(--lagoon-dim); font-size: .5rem; top: 6px;
}
.post-content blockquote {
  border-left: 3px solid var(--lagoon-dim);
  padding: 16px 24px; margin: 28px 0;
  background: rgba(77,184,200,.05);
  border-radius: 0 3px 3px 0;
}
.post-content blockquote p {
  font-family: var(--font-display);
  font-style: italic; font-size: 1.1rem;
  color: var(--indigo); margin: 0;
}
.post-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--silver); margin-bottom: 36px;
  transition: color .2s;
}
.post-back:hover { color: var(--lagoon-dim); }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer { background: var(--indigo); padding: 52px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lagoon-3);
}
.footer-logo em { font-style: italic; color: var(--lagoon-2); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--font-mono);
  font-size: .61rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(168,232,240,.45);
}
.footer-links a:hover { color: var(--lagoon-2); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: .59rem;
  color: rgba(168,232,240,.28);
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(168,232,240,.1);
}

/* ── FADE ─────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse { direction: ltr; }
  .hero-atoll { display: none; }
  .trust-signals { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { max-width: 100%; }
}
@media (max-width: 620px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .offer-form-wrap { padding: 24px 18px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr; }
}
