/* ============ BASE & TOKENS ============ */
:root {
  --bg-0: #0d1220;
  --bg-1: #121a2e;
  --bg-2: #1a2342;
  --ink: #eaf2ff;
  --ink-2: #b8c3d9;
  --ink-3: #7a849c;
  --teal: #00c9b7;
  --teal-deep: #003d4d;
  --gold: #f4b942;
  --gold-soft: #ffe0a8;
  --rose: #ff4d7e;
  --cyan: #5ed4c5;
  --marble: #f8e8d4;
  --violet: #8b5cf6;
  --glow: rgba(94, 212, 197, 0.45);
  --glow-gold: rgba(244, 185, 66, 0.35);
  --glow-rose: rgba(255, 77, 126, 0.3);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-brd: rgba(255, 255, 255, 0.12);
  --grad-1: linear-gradient(135deg, #00c9b7 0%, #8b5cf6 50%, #ff4d7e 100%);
  --grad-2: linear-gradient(135deg, #f4b942 0%, #ff4d7e 100%);
  --grad-3: linear-gradient(135deg, #003d4d 0%, #00c9b7 100%);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg-0);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(0, 201, 183, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(255, 77, 126, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a { color: var(--cyan); text-decoration: none; transition: all 0.3s var(--ease); }
a:hover { color: var(--gold); }
a:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

img, svg { max-width: 100%; display: block; }

/* ============ NAV ============ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 28px;
  background: rgba(13, 18, 32, 0.6);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--glass-brd);
  transition: padding 0.3s var(--ease), background 0.3s var(--ease);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.brand-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-1);
  box-shadow: 0 0 20px var(--glow), 0 0 40px var(--glow-rose);
  animation: pulseDot 3s infinite var(--ease);
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 20px var(--glow), 0 0 40px var(--glow-rose); }
  50% { transform: scale(1.1); box-shadow: 0 0 30px var(--glow), 0 0 60px var(--glow-rose); }
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 0.92rem;
  color: var(--ink-2);
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  padding: 8px 18px;
  background: var(--grad-1);
  color: var(--bg-0) !important;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 4px 20px var(--glow);
}
.nav-cta:hover { transform: translateY(-1px); color: var(--bg-0) !important; }

@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .site-nav { padding: 12px 18px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1600px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(94, 212, 197, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 212, 197, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  animation: gridMove 30s linear infinite;
}
@keyframes gridMove {
  to { background-position: 60px 60px, 60px 60px; }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-stage {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  will-change: transform;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  opacity: 0.5;
  animation: spin 20s linear infinite;
}
.orbit-1 { width: 520px; height: 520px; border-color: var(--teal); box-shadow: 0 0 40px var(--glow); animation-duration: 22s; }
.orbit-2 { width: 400px; height: 400px; border-color: var(--rose); box-shadow: 0 0 40px var(--glow-rose); animation-duration: 17s; animation-direction: reverse; }
.orbit-3 { width: 280px; height: 280px; border-color: var(--gold); box-shadow: 0 0 40px var(--glow-gold); animation-duration: 12s; }
@keyframes spin { to { transform: rotate(360deg); } }

.orbit::before, .orbit::after {
  content: "";
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  top: -6px; left: 50%;
  margin-left: -6px;
}
.orbit-1::before { background: var(--teal); box-shadow: 0 0 20px var(--teal); }
.orbit-1::after { content: ""; top: auto; bottom: -6px; background: var(--teal); box-shadow: 0 0 20px var(--teal); }
.orbit-2::before { background: var(--rose); box-shadow: 0 0 20px var(--rose); }
.orbit-3::before { background: var(--gold); box-shadow: 0 0 20px var(--gold); }

/* 3D Countertop slab */
.countertop-3d {
  position: relative;
  width: 440px;
  height: 280px;
  transform-style: preserve-3d;
  transform: rotateX(55deg) rotateZ(-15deg);
  transition: transform 0.8s var(--ease);
  will-change: transform;
}

.ct-slab {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.ct-face {
  position: absolute;
  background: linear-gradient(135deg, #e8d4b8 0%, #c9a876 100%);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.15);
}

.ct-top {
  width: 440px; height: 280px;
  transform: translateZ(24px);
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 30%),
    linear-gradient(135deg, #e8d4b8 0%, #c9a876 100%);
}

.ct-front {
  width: 440px; height: 50px;
  transform: rotateX(-90deg) translateZ(-115px) translateY(-25px);
  background: linear-gradient(180deg, #b89565 0%, #8a6839 100%);
}

.ct-side {
  width: 280px; height: 50px;
  transform: rotateY(90deg) translateZ(220px) translateY(-25px);
  background: linear-gradient(180deg, #b89565 0%, #8a6839 100%);
}
.ct-left { transform: rotateY(-90deg) translateZ(220px) translateY(-25px); }

/* Damaged countertop elements */
.ct-crack {
  position: absolute;
  background: rgba(60, 30, 10, 0.7);
  box-shadow: 0 0 4px rgba(60, 30, 10, 0.8);
  animation: healCrack 8s infinite var(--ease);
}
.crack-1 { top: 30%; left: 20%; width: 120px; height: 2px; transform: rotate(20deg); }
.crack-2 { top: 60%; left: 50%; width: 80px; height: 2px; transform: rotate(-15deg); }

.ct-stain {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 40, 10, 0.6) 0%, rgba(80, 40, 10, 0) 70%);
  animation: healStain 8s infinite var(--ease);
}
.stain-1 { top: 20%; left: 55%; width: 70px; height: 70px; }
.stain-2 { top: 65%; left: 25%; width: 50px; height: 50px; }

@keyframes healCrack {
  0%, 20% { opacity: 1; }
  40%, 80% { opacity: 0; }
  100% { opacity: 1; }
}
.crack-2 { animation-delay: 0.3s; }
@keyframes healStain {
  0%, 20% { opacity: 1; transform: scale(1); }
  40%, 80% { opacity: 0; transform: scale(0.1); }
  100% { opacity: 1; transform: scale(1); }
}
.stain-2 { animation-delay: 0.3s; }

/* Coating layers */
.ct-coat {
  position: absolute;
  inset: 0;
  opacity: 0;
  border-radius: 8px;
}
.coat-1 {
  background: linear-gradient(135deg, rgba(244, 185, 66, 0.3) 0%, rgba(255, 77, 126, 0.2) 100%);
  animation: coatUp 8s infinite var(--ease);
}
.coat-2 {
  background: linear-gradient(135deg, rgba(0, 201, 183, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
  animation: coatUp 8s infinite var(--ease) 0.5s;
}
@keyframes coatUp {
  0%, 25% { opacity: 0; transform: scale(1); }
  35%, 80% { opacity: 1; }
  90%, 100% { opacity: 0; }
}

.ct-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.6) 48%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.6) 52%, transparent 70%);
  transform: translateX(-100%);
  animation: shineSwipe 8s infinite var(--ease) 1.2s;
  mix-blend-mode: overlay;
  border-radius: 8px;
}
@keyframes shineSwipe {
  0%, 30% { transform: translateX(-100%); }
  50%, 80% { transform: translateX(100%); }
  100% { transform: translateX(100%); opacity: 0; }
}

/* Spray particles */
.spray {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 200px; height: 200px;
  transform: translateX(-50%);
  pointer-events: none;
}
.spray span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  top: 0; left: 50%;
  animation: sprayFall 3s infinite linear;
  opacity: 0;
}
.spray span:nth-child(1) { animation-delay: 0s; left: 30%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.spray span:nth-child(2) { animation-delay: 0.3s; left: 50%; }
.spray span:nth-child(3) { animation-delay: 0.6s; left: 70%; background: var(--rose); box-shadow: 0 0 10px var(--rose); }
.spray span:nth-child(4) { animation-delay: 0.9s; left: 40%; }
.spray span:nth-child(5) { animation-delay: 1.2s; left: 60%; background: var(--gold); }
.spray span:nth-child(6) { animation-delay: 0.15s; left: 35%; }
.spray span:nth-child(7) { animation-delay: 0.45s; left: 55%; background: var(--rose); }
.spray span:nth-child(8) { animation-delay: 0.75s; left: 45%; }
.spray span:nth-child(9) { animation-delay: 1.05s; left: 65%; background: var(--cyan); }
.spray span:nth-child(10) { animation-delay: 1.35s; left: 25%; background: var(--gold); }

@keyframes sprayFall {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateY(220px) scale(0.2); opacity: 0; }
}

.hero-text {
  position: absolute;
  bottom: 6%;
  text-align: center;
  width: 100%;
  pointer-events: none;
}
.hero-text > * { pointer-events: auto; }

.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(244, 185, 66, 0.08);
  border: 1px solid rgba(244, 185, 66, 0.3);
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-text h1 {
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.04em;
  text-shadow: 0 0 60px rgba(94, 212, 197, 0.3);
}
.hero-text h1 em {
  font-style: normal;
  background: var(--grad-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px var(--glow));
}
.tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--ink-2);
  font-weight: 300;
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-display);
  transition: all 0.35s var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--grad-1);
  color: var(--bg-0);
  box-shadow: 0 8px 30px var(--glow), 0 4px 15px var(--glow-rose);
}
.btn-primary:hover { transform: translateY(-2px); color: var(--bg-0); box-shadow: 0 12px 40px var(--glow), 0 6px 20px var(--glow-rose); }
.btn-ghost {
  background: var(--glass);
  color: var(--ink);
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); color: var(--ink); }

.hero-floater {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
  animation: float 12s infinite var(--ease);
}
.f1 { width: 300px; height: 300px; background: var(--teal); top: 15%; left: 10%; }
.f2 { width: 220px; height: 220px; background: var(--rose); top: 25%; right: 12%; animation-delay: 2s; }
.f3 { width: 260px; height: 260px; background: var(--gold); bottom: 10%; left: 35%; animation-delay: 4s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.1); }
}

@media (max-width: 768px) {
  .hero { padding: 100px 16px 60px; min-height: 90vh; }
  .hero-stage { height: 500px; }
  .countertop-3d { width: 320px; height: 210px; transform: rotateX(55deg) rotateZ(-15deg); }
  .ct-top { width: 320px; height: 210px; }
  .ct-front { width: 320px; }
  .ct-side { width: 210px; }
  .orbit-1 { width: 380px; height: 380px; }
  .orbit-2 { width: 280px; height: 280px; }
  .orbit-3 { width: 200px; height: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ============ MAIN WRAP ============ */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  position: relative;
}

/* ============ TOC ============ */
.toc {
  position: sticky;
  top: 90px;
  align-self: start;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  padding: 22px 20px;
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius);
  font-size: 0.88rem;
}
.toc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--glass-brd);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}
.toc-toggle {
  background: none;
  border: none;
  color: var(--ink-2);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  width: 28px; height: 28px;
  display: none;
  align-items: center;
  justify-content: center;
}
.toc-toggle svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.toc-list { list-style: none; counter-reset: toc; }
.toc-list > li { counter-increment: toc; padding: 5px 0; }
.toc-list a {
  color: var(--ink-2);
  display: block;
  padding: 4px 0;
  position: relative;
  transition: color 0.3s var(--ease);
  border-left: 2px solid transparent;
  padding-left: 12px;
}
.toc-list a:hover { color: var(--ink); }
.toc-list a.active {
  color: var(--gold);
  border-left-color: var(--gold);
  font-weight: 500;
}
.toc-list ol {
  list-style: none;
  margin: 4px 0 4px 14px;
  padding: 0;
}
.toc-list ol a { font-size: 0.82rem; padding-left: 10px; color: var(--ink-3); }
.toc-list ol a.active { color: var(--gold-soft); border-left-color: var(--gold-soft); }

@media (max-width: 960px) {
  .wrap { grid-template-columns: 1fr; gap: 30px; padding: 40px 18px 60px; }
  .toc {
    position: relative;
    top: 0;
    max-height: none;
    overflow: hidden;
  }
  .toc.collapsed .toc-list { display: none; }
  .toc-toggle { display: flex; }
  .toc.collapsed .toc-toggle svg { transform: rotate(-90deg); }
}

/* ============ CONTENT ============ */
.content { max-width: 760px; }
.post-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}
.badge {
  padding: 6px 14px;
  background: var(--grad-1);
  color: var(--bg-0);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.date { color: var(--ink-3); font-size: 0.88rem; }

.content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 28px;
  background: var(--grad-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.15;
}
.content h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  margin: 48px 0 18px;
  color: var(--ink);
  position: relative;
  padding-left: 18px;
}
.content h2::before {
  content: "";
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 4px;
  background: var(--grad-1);
  border-radius: 4px;
  box-shadow: 0 0 15px var(--glow);
}
.content h3 {
  font-size: 1.25rem;
  margin: 32px 0 14px;
  color: var(--gold);
}

.content p {
  margin-bottom: 18px;
  color: var(--ink-2);
  font-size: 1.02rem;
}
.lead {
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 300;
  line-height: 1.7;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(0, 201, 183, 0.08) 0%, rgba(255, 77, 126, 0.05) 100%);
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 30px;
}

.content ul, .content ol { padding-left: 22px; margin-bottom: 20px; }
.content li { margin-bottom: 10px; color: var(--ink-2); }
.content strong { color: var(--ink); font-weight: 600; }

.steps { counter-reset: step; list-style: none; padding-left: 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 52px;
  margin-bottom: 16px;
  min-height: 36px;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 36px; height: 36px;
  background: var(--grad-1);
  color: var(--bg-0);
  font-weight: 700;
  font-family: var(--font-display);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px var(--glow);
}

details {
  margin-bottom: 14px;
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
details[open] {
  border-color: rgba(94, 212, 197, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(94, 212, 197, 0.1);
}
summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--cyan);
  transition: transform 0.3s var(--ease);
}
details[open] summary::after { transform: rotate(45deg); }
details p { padding: 0 20px 18px; margin: 0; }

/* ============ CTA CARD ============ */
.cta-card {
  max-width: 1180px;
  margin: 60px auto;
  padding: 0 24px;
}
.cta-inner {
  position: relative;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(0, 61, 77, 0.6) 0%, rgba(13, 18, 32, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-brd);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.cta-glow {
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, var(--teal), var(--gold), var(--rose), var(--violet), var(--teal));
  animation: spin 20s linear infinite;
  opacity: 0.15;
  filter: blur(60px);
  z-index: 0;
}
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-eyebrow {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(244, 185, 66, 0.12);
  border: 1px solid rgba(244, 185, 66, 0.3);
  color: var(--gold);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cta-inner h2 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  margin-bottom: 10px;
  background: var(--grad-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-sub { color: var(--ink-2); margin-bottom: 30px; }
.cta-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.35s var(--ease);
  justify-content: center;
  word-break: break-word;
}
.cta-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.cta-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cyan);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow);
  color: var(--ink);
}
.cta-phone:hover { color: var(--teal); border-color: var(--teal); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow); }
.cta-web:hover { color: var(--gold); border-color: var(--gold); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow-gold); }
.cta-mail:hover { color: var(--rose); border-color: var(--rose); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow-rose); }
.cta-map:hover { color: var(--violet); border-color: var(--violet); }

/* ============ SOCIALS ============ */
.socials {
  max-width: 1180px;
  margin: 0 auto 40px;
  padding: 0 24px;
  text-align: center;
}
.socials h3 {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.social-list {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.social-list a {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  transition: all 0.35s var(--ease);
}
.social-list svg { width: 20px; height: 20px; }
.social-list a:hover {
  transform: translateY(-3px);
  background: var(--grad-1);
  color: var(--bg-0);
  box-shadow: 0 10px 30px var(--glow), 0 5px 15px var(--glow-rose);
}

/* ============ FOOTER ============ */
.footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--glass-brd);
  color: var(--ink-3);
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.2);
}
.muted { margin-top: 8px; font-size: 0.82rem; color: var(--ink-3); }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Selection */
::selection { background: var(--cyan); color: var(--bg-0); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--teal), var(--violet));
  border-radius: 10px;
}