/* ============================================================
   OnChainResorts.com — Premium Domain Landing
   Aesthetic: Deep Ocean Night · Bioluminescent · Tropical Luxury
   Fonts: Italiana + Outfit + IBM Plex Mono
   Palette: Deep teal, aqua glow, coral accent, midnight depths
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Outfit:wght@300;400;500;600;700;800&family=IBM+Plex+Mono:wght@300;400;500&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --deep:       #050f14;
  --deep-2:     #071820;
  --deep-3:     #0c2535;
  --ocean:      #0d3348;
  --ocean-2:    #144560;
  --teal:       #0a7a8a;
  --aqua:       #00c9cc;
  --aqua-2:     #4de8eb;
  --aqua-dim:   #005f62;
  --coral:      #ff6b4a;
  --coral-2:    #ff8c70;
  --coral-dim:  #8a3020;
  --sand:       #e8d5b0;
  --sand-dim:   #9a8a70;
  --white:      #f0fafb;
  --silver:     #6a9aaa;

  --font-display: 'Italiana', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  --max-w:   1180px;
  --gutter:  clamp(20px, 5vw, 60px);
  --radius:  4px;
  --border:  1px solid rgba(0,201,204,.12);
  --border-bright: 1px solid rgba(0,201,204,.28);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--deep);
  color: var(--sand);
  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(--aqua); text-decoration: none; transition: color .2s; }
a:hover { color: var(--aqua-2); }
ul { list-style: none; }

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

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .63rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--aqua);
  border: 1px solid rgba(0,201,204,.3);
  background: rgba(0,201,204,.06);
  padding: 3px 10px;
  border-radius: 2px;
}
.tag.coral {
  color: var(--coral);
  border-color: rgba(255,107,74,.3);
  background: rgba(255,107,74,.06);
}
.tag.sand {
  color: var(--sand-dim);
  border-color: rgba(154,138,112,.3);
  background: rgba(154,138,112,.06);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  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(--aqua);
  color: var(--deep);
}
.btn-primary:hover {
  background: var(--aqua-2);
  color: var(--deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0,201,204,.35);
}
.btn-coral {
  background: var(--coral);
  color: var(--white);
}
.btn-coral:hover {
  background: var(--coral-2);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(255,107,74,.35);
}
.btn-outline {
  background: transparent;
  color: var(--aqua);
  border: 1px solid var(--aqua);
}
.btn-outline:hover {
  background: rgba(0,201,204,.1);
  box-shadow: 0 0 20px rgba(0,201,204,.2);
}

.section-label {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label .lnum {
  color: var(--aqua);
}

/* ── Bioluminescent wave background ──────────────────────── */
.wave-bg {
  position: relative;
  overflow: hidden;
}
.wave-bg::before {
  content: '';
  position: absolute;
  bottom: 0; left: -50%;
  width: 200%;
  height: 160px;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(0,201,204,.08) 0%, transparent 70%);
  animation: waveShift 12s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes waveShift {
  from { transform: translateX(-5%); }
  to   { transform: translateX(5%); }
}

/* Depth grid */
.depth-grid {
  position: relative;
}
.depth-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,201,204,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,204,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5,15,20,.88);
  backdrop-filter: blur(16px);
  border-bottom: var(--border);
  transition: border-color .3s;
}
.nav.lit { border-bottom-color: rgba(0,201,204,.3); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: .02em;
}
.nav-logo span { color: var(--aqua); }
.nav-logo sup {
  font-family: var(--font-mono);
  font-size: .48rem;
  color: var(--silver);
  letter-spacing: .08em;
  font-weight: 300;
  margin-left: 2px;
}
.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: .08em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color .2s;
}
.nav-links a:hover { color: var(--aqua); }
.nav-links a.active { color: var(--aqua); }
.nav-links .nav-cta {
  background: var(--aqua);
  color: var(--deep);
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 700;
}
.nav-links .nav-cta:hover {
  background: var(--aqua-2);
  color: var(--deep);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--aqua);
  transition: all .2s;
}

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

/* Deep ocean background layers */
.hero-ocean {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 65% 30%, rgba(10,122,138,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0,201,204,.07) 0%, transparent 50%),
    linear-gradient(180deg, var(--deep) 0%, var(--deep-2) 40%, var(--deep-3) 100%);
}

/* Animated bioluminescent particles */
.bio-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bio-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--aqua);
  animation: bioFloat linear infinite;
  opacity: 0;
}
/* Generated via JS but fallback CSS positions */
.bio-particle:nth-child(1)  { width:3px;height:3px; left:12%; top:40%; animation-duration:8s;  animation-delay:0s; }
.bio-particle:nth-child(2)  { width:2px;height:2px; left:28%; top:65%; animation-duration:12s; animation-delay:2s; }
.bio-particle:nth-child(3)  { width:4px;height:4px; left:45%; top:30%; animation-duration:10s; animation-delay:4s; }
.bio-particle:nth-child(4)  { width:2px;height:2px; left:72%; top:55%; animation-duration:9s;  animation-delay:1s; }
.bio-particle:nth-child(5)  { width:3px;height:3px; left:85%; top:70%; animation-duration:11s; animation-delay:3s; }
.bio-particle:nth-child(6)  { width:2px;height:2px; left:55%; top:80%; animation-duration:7s;  animation-delay:5s; }
.bio-particle:nth-child(7)  { width:3px;height:3px; left:33%; top:20%; animation-duration:13s; animation-delay:1.5s; }
.bio-particle:nth-child(8)  { width:2px;height:2px; left:68%; top:15%; animation-duration:9s;  animation-delay:6s; }
.bio-particle:nth-child(9)  { width:4px;height:4px; left:90%; top:35%; animation-duration:14s; animation-delay:0.5s; }
.bio-particle:nth-child(10) { width:2px;height:2px; left:8%;  top:75%; animation-duration:10s; animation-delay:7s; }
@keyframes bioFloat {
  0%   { opacity: 0;   transform: translateY(0) scale(1); }
  20%  { opacity: .8; }
  80%  { opacity: .4; }
  100% { opacity: 0;   transform: translateY(-80px) scale(1.5); }
}

/* CSS Resort illustration — right side */
.hero-resort-scene {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 100%;
  pointer-events: none;
}

/* Night sky */
.resort-sky {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(180deg, #010b12 0%, #041424 40%, #071e34 70%, #0a2a42 100%);
}

/* Moon */
.resort-moon {
  position: absolute;
  top: 8%;
  right: 28%;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f5f0e0 0%, #d8c888 60%, rgba(216,200,136,0) 100%);
  box-shadow: 0 0 30px 8px rgba(245,240,224,.15), 0 0 80px 20px rgba(245,240,224,.06);
  animation: moonPulse 6s ease-in-out infinite;
}
@keyframes moonPulse {
  0%,100% { box-shadow: 0 0 30px 8px rgba(245,240,224,.15), 0 0 80px 20px rgba(245,240,224,.06); }
  50%     { box-shadow: 0 0 40px 12px rgba(245,240,224,.22), 0 0 100px 28px rgba(245,240,224,.09); }
}

/* Stars */
.resort-star {
  position: absolute;
  border-radius: 50%;
  background: #ffffff;
  animation: starTwinkle ease-in-out infinite;
}
.resort-star:nth-child(1)  { width:2px;height:2px; top:6%;  left:15%; animation-duration:3s;  animation-delay:0s; }
.resort-star:nth-child(2)  { width:1px;height:1px; top:12%; left:40%; animation-duration:4s;  animation-delay:1s; }
.resort-star:nth-child(3)  { width:2px;height:2px; top:8%;  left:62%; animation-duration:3.5s;animation-delay:.5s; }
.resort-star:nth-child(4)  { width:1px;height:1px; top:18%; left:22%; animation-duration:5s;  animation-delay:2s; }
.resort-star:nth-child(5)  { width:2px;height:2px; top:15%; left:55%; animation-duration:4s;  animation-delay:1.5s; }
.resort-star:nth-child(6)  { width:1px;height:1px; top:22%; left:75%; animation-duration:3s;  animation-delay:2.5s; }
.resort-star:nth-child(7)  { width:2px;height:2px; top:5%;  left:85%; animation-duration:4.5s;animation-delay:.8s; }
@keyframes starTwinkle { 0%,100%{opacity:.3} 50%{opacity:1} }

/* Ocean water */
.resort-water {
  position: absolute;
  bottom: 32%;
  left: 0; right: 0;
  height: 22%;
  background: linear-gradient(180deg,
    rgba(0,80,100,.6) 0%,
    rgba(0,60,80,.9) 40%,
    rgba(0,40,60,1) 100%
  );
  overflow: hidden;
}
.resort-water-glow {
  position: absolute;
  top: 0; left: -20%; right: -20%;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0,201,204,.4) 30%,
    rgba(77,232,235,.7) 50%,
    rgba(0,201,204,.4) 70%,
    transparent 100%
  );
  animation: waterGlow 5s ease-in-out infinite alternate;
}
@keyframes waterGlow {
  from { transform: translateX(-10%); opacity: .6; }
  to   { transform: translateX(10%);  opacity: 1; }
}
.resort-wave {
  position: absolute;
  left: 0; right: 0;
  height: 8px;
  background: rgba(0,201,204,.15);
  border-radius: 50%;
  animation: wavePulse 3s ease-in-out infinite;
}
.resort-wave:nth-child(2) { top: 30%; animation-delay: 1s; opacity: .7; }
.resort-wave:nth-child(3) { top: 55%; animation-delay: 2s; opacity: .5; }
@keyframes wavePulse {
  0%,100% { transform: scaleX(1); opacity: .15; }
  50%     { transform: scaleX(1.05); opacity: .3; }
}

/* Ground / beach */
.resort-ground {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 32%;
  background: linear-gradient(180deg, #1a1208 0%, #100c06 100%);
}

/* Moon reflection on water */
.resort-moon-reflection {
  position: absolute;
  bottom: 32%;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 22%;
  background: linear-gradient(to bottom, rgba(245,240,224,.4) 0%, transparent 100%);
  filter: blur(3px);
  animation: reflectionShimmer 4s ease-in-out infinite;
}
@keyframes reflectionShimmer {
  0%,100% { opacity: .5; width: 6px; }
  50%     { opacity: .9; width: 10px; }
}

/* Resort building */
.resort-building {
  position: absolute;
  bottom: 32%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resort-roof-main {
  width: 0;
  height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-bottom: 36px solid rgba(0,40,55,.95);
  position: relative;
  z-index: 3;
}
.resort-tower {
  width: 120px;
  background: rgba(5,25,35,.95);
  border: 1px solid rgba(0,201,204,.15);
  z-index: 2;
  position: relative;
}
.resort-tower-windows {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  padding: 8px;
}
.resort-win {
  height: 14px;
  background: rgba(0,201,204,.25);
  border-radius: 1px;
  animation: winGlow 4s ease-in-out infinite;
}
.resort-win.warm { background: rgba(245,200,100,.3); }
.resort-win:nth-child(2n) { animation-delay: .7s; }
.resort-win:nth-child(3n) { animation-delay: 1.4s; }
@keyframes winGlow {
  0%,100% { opacity: .6; }
  50%     { opacity: 1; box-shadow: 0 0 6px currentColor; }
}

/* Lower building body */
.resort-body {
  width: 200px;
  background: rgba(7,28,40,.95);
  border: 1px solid rgba(0,201,204,.12);
  z-index: 2;
}
.resort-body-windows {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  padding: 10px;
}
.resort-body-win {
  height: 20px;
  background: rgba(0,201,204,.18);
  border-radius: 2px 2px 6px 6px;
  animation: winGlow 3s ease-in-out infinite;
}
.resort-body-win.warm { background: rgba(255,180,80,.25); }
.resort-body-win:nth-child(2n) { animation-delay: .5s; }
.resort-body-win:nth-child(3n) { animation-delay: 1s; }
.resort-body-win:nth-child(5n) { animation-delay: 1.8s; }

/* Resort veranda row */
.resort-veranda {
  width: 200px;
  height: 12px;
  background: rgba(7,28,40,.9);
  border-left: 1px solid rgba(0,201,204,.12);
  border-right: 1px solid rgba(0,201,204,.12);
  border-bottom: 2px solid rgba(0,201,204,.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}
.resort-veranda-pillar {
  width: 2px;
  height: 12px;
  background: rgba(0,201,204,.3);
}

/* Wings */
.resort-wing {
  position: absolute;
  bottom: 0;
  width: 80px;
  background: rgba(5,20,30,.95);
  border: 1px solid rgba(0,201,204,.1);
}
.resort-wing.l { right: 100%; margin-right: -1px; }
.resort-wing.r { left: 100%;  margin-left: -1px; }
.resort-wing-windows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 6px;
}
.resort-wing-win {
  height: 14px;
  background: rgba(0,201,204,.15);
  border-radius: 1px 1px 5px 5px;
  animation: winGlow 3.5s ease-in-out infinite;
}
.resort-wing-win:nth-child(2n) { animation-delay: 1.2s; background: rgba(255,180,80,.2); }

/* Pool */
.resort-pool {
  position: absolute;
  bottom: 32%;
  left: 50%;
  transform: translateX(-30%);
  width: 160px; height: 24px;
  background: linear-gradient(180deg, rgba(0,180,200,.5) 0%, rgba(0,120,150,.8) 100%);
  border-radius: 12px;
  border: 1px solid rgba(0,201,204,.4);
  overflow: hidden;
}
.resort-pool-shimmer {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 18px,
    rgba(77,232,235,.2) 18px,
    rgba(77,232,235,.2) 20px
  );
  animation: shimmerMove 2s linear infinite;
}
@keyframes shimmerMove { from{transform:translateX(0)} to{transform:translateX(20px)} }
.resort-pool-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 30%, rgba(77,232,235,.3) 0%, transparent 70%);
  animation: poolGlow 3s ease-in-out infinite alternate;
}
@keyframes poolGlow {
  from { opacity: .5; }
  to   { opacity: 1; }
}

/* Floating data overlays */
.resort-data-overlay {
  position: absolute;
  top: 24px; left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}
.resort-data-card {
  background: rgba(5,15,20,.8);
  border: 1px solid rgba(0,201,204,.25);
  border-radius: 3px;
  padding: 7px 12px;
  backdrop-filter: blur(8px);
  min-width: 150px;
  animation: dataFlicker 4s ease-in-out infinite;
}
.resort-data-card:nth-child(2) { animation-delay: 1.3s; }
.resort-data-card:nth-child(3) { animation-delay: 2.6s; }
@keyframes dataFlicker { 0%,100%{opacity:.85} 50%{opacity:1} }
.rdc-label {
  font-family: var(--font-mono);
  font-size: .55rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--silver);
}
.rdc-value {
  font-family: var(--font-mono);
  font-size: .8rem;
  font-weight: 500;
  color: var(--aqua);
  margin-top: 2px;
}
.rdc-value.coral { color: var(--coral); }
.rdc-value.sand  { color: var(--sand); }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 8px var(--aqua);
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
  0%,100% { box-shadow: 0 0 4px var(--aqua); }
  50%     { box-shadow: 0 0 12px var(--aqua), 0 0 20px rgba(0,201,204,.3); }
}
.hero-eyebrow-txt {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--silver);
}

.hero-domain {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 4px;
}
.hero-domain .oc { color: var(--aqua); }
.hero-domain .tld {
  font-family: var(--font-mono);
  font-size: .3em;
  font-weight: 300;
  color: var(--silver);
  letter-spacing: .1em;
  vertical-align: super;
  margin-left: 4px;
}

.hero-wave-line {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--aqua), var(--coral));
  border-radius: 2px;
  margin: 20px 0;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: rgba(232,213,176,.75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: var(--border);
  flex-wrap: wrap;
}
.h-stat-val {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--aqua);
  line-height: 1;
}
.h-stat-lbl {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 4px;
}

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

/* ── SECTIONS ─────────────────────────────────────────────── */
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section-alt { background: var(--deep-2); }
.section-mid { background: var(--deep-3); }

.section-header { margin-bottom: clamp(40px, 6vw, 68px); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--aqua); }
.section-title .coral-em { color: var(--coral); font-style: italic; }
.section-body {
  font-size: .95rem;
  color: rgba(232,213,176,.7);
  line-height: 1.8;
  max-width: 600px;
  margin-top: 16px;
  font-weight: 300;
}

/* ── FEATURE CARDS ────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(0,201,204,.08);
  border: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.card {
  background: var(--deep-2);
  padding: 32px 26px;
  transition: background .2s;
  position: relative;
}
.card:hover { background: var(--deep-3); }
.card-glow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--aqua), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.card:hover .card-glow { opacity: 1; }
.card-num {
  position: absolute;
  top: 18px; right: 20px;
  font-family: var(--font-mono);
  font-size: .6rem;
  color: var(--aqua-dim);
  letter-spacing: .1em;
}
.card-icon { font-size: 1.7rem; margin-bottom: 16px; line-height: 1; }
.card-title {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: .02em;
}
.card-body {
  font-size: .85rem;
  color: rgba(232,213,176,.65);
  line-height: 1.75;
  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(--deep-3);
  border: var(--border);
  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-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 6px var(--aqua);
  flex-shrink: 0;
  margin-top: 8px;
}
.split-dot.coral { background: var(--coral); box-shadow: 0 0 6px var(--coral); }
.split-text { font-size: .9rem; color: rgba(232,213,176,.7); line-height: 1.7; font-weight: 300; }
.split-text strong { color: var(--white); font-weight: 600; }

/* ── CSS DIAGRAMS ─────────────────────────────────────────── */
/* Token fractionalisation wheel */
.diagram-token-wheel {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tw-center {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--deep);
  border: 2px solid var(--aqua);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(0,201,204,.3);
}
.tw-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,201,204,.2);
  animation: orbitSpin linear infinite;
}
.tw-orbit-1 { width: 140px; height: 140px; animation-duration: 8s; }
.tw-orbit-2 { width: 210px; height: 210px; animation-duration: 14s; animation-direction: reverse; }
.tw-orbit-3 { width: 280px; height: 280px; animation-duration: 20s; }
@keyframes orbitSpin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.tw-satellite {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--deep-3);
  border: 1px solid var(--aqua);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  animation: orbitSpin linear infinite;
  box-shadow: 0 0 8px rgba(0,201,204,.2);
}
.tw-orbit-1 .tw-satellite {
  top: -18px; left: calc(50% - 18px);
  animation-duration: 8s;
  animation-direction: reverse;
}
.tw-orbit-2 .tw-satellite {
  top: -18px; left: calc(50% - 18px);
  animation-duration: 14s;
}
.tw-orbit-3 .tw-satellite {
  top: -18px; left: calc(50% - 18px);
  animation-duration: 20s;
  animation-direction: reverse;
}

/* AI agent grid */
.diagram-ai-grid {
  width: 100%; height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 0;
  padding: 16px;
}
.ai-cell {
  border: 1px solid rgba(0,201,204,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  transition: background .3s;
  animation: aiCellPulse 4s ease-in-out infinite;
}
.ai-cell:nth-child(1)  { animation-delay: 0s; }
.ai-cell:nth-child(2)  { animation-delay: .4s; }
.ai-cell:nth-child(3)  { animation-delay: .8s; }
.ai-cell:nth-child(4)  { animation-delay: 1.2s; }
.ai-cell:nth-child(5)  { animation-delay: 1.6s; grid-column: 2; grid-row: 2; background: rgba(0,201,204,.06); border-color: rgba(0,201,204,.3); }
.ai-cell:nth-child(6)  { animation-delay: 2s; }
.ai-cell:nth-child(7)  { animation-delay: 2.4s; }
.ai-cell:nth-child(8)  { animation-delay: 2.8s; }
.ai-cell:nth-child(9)  { animation-delay: 3.2s; }
@keyframes aiCellPulse {
  0%,90%,100% { background: transparent; }
  45% { background: rgba(0,201,204,.04); }
}
.ai-cell-icon { font-size: 1.2rem; }
.ai-cell-label {
  font-family: var(--font-mono);
  font-size: .5rem;
  letter-spacing: .08em;
  color: var(--silver);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3;
}
.ai-cell:nth-child(5) .ai-cell-label { color: var(--aqua); }

/* Stablecoin flow */
.diagram-stable-flow {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 12px;
}
.sf-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
}
.sf-node {
  background: var(--deep);
  border: 1px solid var(--aqua);
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 12px rgba(0,201,204,.15);
}
.sf-node.big {
  width: 64px; height: 64px;
  font-size: 1.4rem;
  box-shadow: 0 0 20px rgba(0,201,204,.25);
}
.sf-arrow {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--aqua-dim), var(--aqua));
  position: relative;
  max-width: 44px;
}
.sf-arrow::after {
  content: '▶';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  color: var(--aqua);
  font-size: .5rem;
}
.sf-label {
  font-family: var(--font-mono);
  font-size: .55rem;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
}
.sf-speed-bar {
  width: 85%;
  padding: 8px 14px;
  background: rgba(0,201,204,.05);
  border: 1px solid rgba(0,201,204,.2);
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}
.sf-speed-label {
  font-family: var(--font-mono);
  font-size: .58rem;
  color: var(--silver);
  letter-spacing: .1em;
}
.sf-speed-val {
  font-family: var(--font-mono);
  font-size: .9rem;
  font-weight: 500;
  color: var(--aqua);
}
.sf-progress {
  width: 85%;
  height: 3px;
  background: rgba(0,201,204,.15);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}
.sf-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--aqua), var(--coral));
  border-radius: 2px;
  animation: progressFill 3s ease-in-out infinite;
}
@keyframes progressFill {
  0%   { width: 5%; }
  50%  { width: 100%; }
  51%  { 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(--deep-2);
  border: var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4), 0 0 30px rgba(0,201,204,.06);
  border-color: rgba(0,201,204,.25);
}
.blog-card-glow {
  height: 3px;
  background: linear-gradient(90deg, var(--aqua-dim), var(--aqua));
}
.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.1rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color .2s;
}
.blog-card:hover .blog-card-title { color: var(--aqua); }
.blog-card-excerpt {
  font-size: .855rem;
  color: rgba(232,213,176,.6);
  line-height: 1.7;
  font-weight: 300;
}
.blog-card-footer {
  padding: 14px 26px;
  border-top: var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.read-more {
  font-family: var(--font-mono);
  font-size: .63rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--aqua);
}
.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: 1px;
  background: rgba(0,201,204,.08);
  border: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.metric-card {
  background: var(--deep-2);
  padding: 28px 22px;
  text-align: center;
}
.metric-val {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--aqua);
  line-height: 1;
}
.metric-lbl {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 7px;
  line-height: 1.4;
}

/* ── TIMELINE ─────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 36px;
  max-width: 640px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, var(--aqua), rgba(0,201,204,.0));
}
.timeline-item {
  position: relative;
  padding-bottom: 38px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -40px; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 10px var(--aqua);
}
.timeline-label {
  font-family: var(--font-mono);
  font-size: .63rem;
  color: var(--aqua);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.timeline-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.timeline-body {
  font-size: .87rem;
  color: rgba(232,213,176,.65);
  line-height: 1.7;
  font-weight: 300;
}

/* ── OFFER PAGE ───────────────────────────────────────────── */
.offer-hero {
  padding: 110px 0 72px;
  position: relative;
  overflow: hidden;
  border-bottom: var(--border);
  background: var(--deep-2);
}
/* Ripple rings behind domain name */
.offer-rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.offer-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,201,204,.1);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 6s ease-out infinite;
}
.offer-ring:nth-child(1) { width: 200px; height: 200px; animation-delay: 0s; }
.offer-ring:nth-child(2) { width: 400px; height: 400px; animation-delay: 2s; }
.offer-ring:nth-child(3) { width: 640px; height: 640px; animation-delay: 4s; }
@keyframes ringPulse {
  0%   { opacity: .5; }
  100% { opacity: 0; }
}
.offer-domain-display {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  margin: 20px 0;
}

/* FORM */
.offer-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--deep-2);
  border: var(--border-bright);
  border-radius: 4px;
  padding: 44px;
}
.offer-form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 6px;
}
.offer-form-subtitle {
  font-size: .85rem;
  color: var(--silver);
  margin-bottom: 28px;
  font-weight: 300;
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 7px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--deep);
  border: 1px solid rgba(0,201,204,.2);
  border-radius: var(--radius);
  color: var(--sand);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 300;
  padding: 11px 14px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(0,201,204,.08);
}
.form-select { cursor: pointer; }
.form-select option { background: var(--deep); }
.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;
  opacity: .8;
}
.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-body);
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  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: 24px;
}
.listing-badge {
  background: rgba(0,201,204,.05);
  border: var(--border);
  border-radius: 3px;
  padding: 9px 18px;
  font-family: var(--font-mono);
  font-size: .63rem;
  letter-spacing: .08em;
  color: var(--silver);
}
.listing-badge span { color: var(--aqua); }

/* ── WHY HERO ─────────────────────────────────────────────── */
.why-hero {
  padding: 110px 0 72px;
  background: var(--deep-2);
  border-bottom: var(--border);
  text-align: center;
}
.why-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  max-width: 760px;
  margin: 16px auto;
}
.why-hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(232,213,176,.65);
  max-width: 520px;
  margin: 16px auto 0;
}

/* ── POST ─────────────────────────────────────────────────── */
.post-hero {
  padding: 110px 0 56px;
  background: var(--deep-2);
  border-bottom: var(--border);
}
.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: 400;
  line-height: 1.15;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 20px;
}
.post-lead {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(232,213,176,.7);
  max-width: 660px;
  line-height: 1.7;
}
.post-content {
  max-width: 740px;
  margin: 56px 0;
}
.post-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin: 40px 0 14px;
}
.post-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--aqua);
  margin: 28px 0 8px;
  letter-spacing: .04em;
}
.post-content p {
  color: rgba(232,213,176,.7);
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: .97rem;
  font-weight: 300;
}
.post-content strong { color: var(--sand); font-weight: 600; }
.post-content ul {
  margin: 14px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.post-content ul li {
  color: rgba(232,213,176,.7);
  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(--aqua);
  font-size: .7rem;
  top: 3px;
}
.post-content blockquote {
  border-left: 2px solid var(--aqua);
  padding: 14px 24px;
  margin: 28px 0;
  background: rgba(0,201,204,.04);
  border-radius: 0 3px 3px 0;
}
.post-content blockquote p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  font-style: italic;
  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(--aqua); }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  border-top: var(--border);
  padding: 48px 0;
  background: var(--deep-2);
}
.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;
  color: var(--white);
}
.footer-logo span { color: var(--aqua); }
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
}
.footer-links a:hover { color: var(--aqua); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: .6rem;
  color: rgba(106,154,170,.4);
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: var(--border);
}

/* ── FADE ─────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  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-resort-scene { display: none; }
  .trust-signals { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@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; gap: 1px; }
}
