/* ============================================================
   Royalty Service — landing
   Dark mint palette — mirrors tochkamusic.com styling.
   ============================================================ */

:root {
  --bg:            #0A1311;   /* near-black with faint teal tint */
  --bg-deep:       #060D0B;   /* deeper sections / footer */
  --bg-card:       #131D19;   /* card / surface background */
  --bg-raised:     #1A2621;   /* chips, icon tiles, inputs */
  --ink:           #FFFFFF;
  --ink-soft:      #A8B5AF;   /* body paragraphs, captions */
  --muted:         #6A7A74;   /* faint meta text */
  --border:        #1E2A26;

  --primary:       #7FE4CE;   /* mint accent */
  --primary-deep:  #5ECDB5;
  --accent:        #7FE4CE;
  --amber:         #F59E0B;
  --yellow:        #FBBF24;
  --rose:          #FB7185;
  --brand-orange:  #7FE4CE;   /* alias — step-icon previously warm coral */

  --sunset: linear-gradient(120deg, #7FE4CE 0%, #5ECDB5 55%, #3EB69D 100%);
  --warm:   linear-gradient(120deg, #9FE8D4 0%, #7FE4CE 100%);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.40);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.60);

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 700;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #07110E;                            /* dark ink on mint */
  box-shadow: 0 4px 16px rgba(127, 228, 206, 0.22);
}
.btn-primary:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(127, 228, 206, 0.32);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  color: var(--ink);
  border-color: var(--border);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--bg-raised);
  border-color: rgba(127, 228, 206, 0.4);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 28px;
  font-size: 1rem;
}

/* ---------- Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 19, 17, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(10, 19, 17, 0.92);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.brand-mark {
  font-size: 1.4rem;
  display: inline-block;
  animation: bob 3s ease-in-out infinite;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a {
  transition: color 0.15s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 32px 100px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: blob-drift 18s ease-in-out infinite;
}
.blob-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(127, 228, 206, 0.35) 0%, transparent 70%);
  top: -120px; left: -120px;
  animation-delay: 0s;
}
.blob-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(94, 205, 181, 0.30) 0%, transparent 70%);
  top: 40%; right: -140px;
  animation-delay: -6s;
}
.blob-3 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(159, 232, 212, 0.25) 0%, transparent 70%);
  bottom: -100px; left: 30%;
  animation-delay: -12s;
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* Floating shapes */
.shape {
  position: absolute;
  opacity: 0.85;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45));
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}
.shape-note { color: var(--primary); }
.shape-coin { color: var(--amber); }
.shape-doc  { color: var(--accent); }
.shape-star { color: var(--yellow); }

.shape-a { width: 44px; top: 18%; left: 8%;  animation-delay: 0s; }
.shape-b { width: 32px; top: 70%; left: 12%; animation-delay: -2s; }
.shape-c { width: 54px; top: 25%; right: 7%; animation-delay: -1s; }
.shape-d { width: 48px; top: 62%; right: 18%; animation-delay: -3.5s; }
.shape-e { width: 36px; top: 12%; right: 28%; animation-delay: -5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-22px) rotate(4deg); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Hero content */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(127, 228, 206, 0.10);
  border: 1px solid rgba(127, 228, 206, 0.24);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(127, 228, 206, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(127, 228, 206, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(127, 228, 206, 0); }
  100% { box-shadow: 0 0 0 0 rgba(127, 228, 206, 0); }
}

.eyebrow-dark {
  color: var(--primary);
  background: rgba(127, 228, 206, 0.10);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.75rem);
  line-height: 1.02;
  margin-bottom: 24px;
  letter-spacing: -0.035em;
}
.hero-title-emph {
  display: inline-block;
  background: var(--sunset);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  /* Italic dropped — Playfair Display Italic Cyrillic uses very
   * calligraphic glyphs that read as a script font on кириллица.
   * The gradient + underline highlight already carry the accent. */
  position: relative;
}
.hero-title-emph::after {
  content: '';
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 4%;
  height: 14%;
  background: var(--warm);
  opacity: 0.25;
  border-radius: 20px;
  z-index: -1;
  transform: skew(-8deg);
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 36px;
}

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

.hero-proof {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-item {
  position: relative;
  padding-left: 20px;
}
.proof-item::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 3px;
  border-radius: 2px;
  background: var(--warm);
}
.proof-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.proof-lbl {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Hero visual — mocked cards */
.hero-visual {
  position: relative;
  height: 520px;
  perspective: 1200px;
}
.mock-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  transition: transform 0.3s ease;
}
.mock-card-1 {
  top: 10%; left: 0;
  width: 320px;
  transform: rotate(-4deg);
  animation: card-float 7s ease-in-out infinite;
}
.mock-card-2 {
  top: 42%; right: 8%;
  width: 220px;
  transform: rotate(6deg);
  animation: card-float 8s ease-in-out -2s infinite;
}
.mock-card-3 {
  bottom: 8%; left: 18%;
  width: 280px;
  transform: rotate(2deg);
  animation: card-float 6s ease-in-out -4s infinite;
}
@keyframes card-float {
  0%, 100% { transform: translateY(0) rotate(var(--r, -4deg)); }
  50%      { transform: translateY(-14px) rotate(var(--r, -4deg)); }
}
.mock-card-1 { --r: -4deg; }
.mock-card-2 { --r:  6deg; }
.mock-card-3 { --r:  2deg; }

.mock-card:hover {
  transform: translateY(-8px) rotate(0) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  border-color: rgba(127, 228, 206, 0.35);
}

.mock-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.mock-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sunset);
  color: #07110E;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.mock-title { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.mock-sub   { font-size: 0.78rem; color: var(--muted); }

.mock-rows { display: flex; flex-direction: column; gap: 10px; }
.mock-row {
  display: flex; justify-content: space-between;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.mock-row b { color: var(--ink); font-weight: 600; }

.mock-total {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.mock-total span { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.mock-total b {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--primary);
}

.mock-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(127, 228, 206, 0.14);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.mock-pill-green {
  background: rgba(127, 228, 206, 0.22);
  color: #BFF3E4;
}

.mock-doc-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 2px; }
.mock-doc-meta  { font-size: 0.75rem; color: var(--muted); margin-bottom: 12px; }
.mock-bars { display: flex; flex-direction: column; gap: 4px; }
.mock-bars i {
  display: block;
  height: 4px;
  background: linear-gradient(90deg, rgba(127, 228, 206, 0.55), rgba(127, 228, 206, 0.15));
  border-radius: 2px;
}
.mock-bars i:nth-child(1) { width: 90%; }
.mock-bars i:nth-child(2) { width: 70%; }
.mock-bars i:nth-child(3) { width: 85%; }
.mock-bars i:nth-child(4) { width: 55%; }

.mock-mail div { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.mock-mail small { color: var(--muted); font-size: 0.75rem; }

.scroll-hint {
  position: absolute;
  left: 50%; bottom: 24px;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 2px solid var(--muted);
  border-radius: 20px;
  z-index: 2;
}
.scroll-hint span {
  display: block;
  width: 4px; height: 8px;
  background: var(--muted);
  border-radius: 2px;
  margin: 8px auto;
  animation: scroll-dot 1.6s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ============================================================
   SECTION HEADS (shared)
   ============================================================ */
.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 14px;
  line-height: 1.15;
}
.section-head p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-top: 12px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  padding: 120px 32px;
  background: var(--bg-deep);
  position: relative;
}

.steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 960px) {
  .steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
}

.step {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(127, 228, 206, 0.10), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}
.step:hover {
  border-color: rgba(127, 228, 206, 0.35);
}
.step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.step:hover::before { opacity: 1; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon {
  font-size: 2.4rem;
  margin-bottom: 22px;
  display: inline-block;
  transition: transform 0.3s ease;
}
/* Modern line-icon badge: rounded tile with mint glow on dark bg. */
.step-icon-svg {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    rgba(127, 228, 206, 0.14) 0%,
    rgba(94, 205, 181, 0.10) 50%,
    rgba(62, 182, 157, 0.14) 100%);
  color: var(--primary);
  box-shadow:
    0 10px 24px -12px rgba(127, 228, 206, 0.35),
    inset 0 0 0 1px rgba(127, 228, 206, 0.12);
  position: relative;
  isolation: isolate;
}
.step-icon-svg::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(127, 228, 206, 0.7) 0%, rgba(94, 205, 181, 0.25) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.step-icon-svg svg {
  width: 36px;
  height: 36px;
  transition: transform 0.35s cubic-bezier(.2, .7, .2, 1.4);
}
.step:hover .step-icon-svg {
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px -12px rgba(127, 228, 206, 0.55),
    inset 0 0 0 1px rgba(127, 228, 206, 0.2);
}
.step:hover .step-icon-svg svg {
  transform: scale(1.08) rotate(-6deg);
}
.step:hover .step-icon:not(.step-icon-svg) {
  transform: scale(1.12) rotate(-6deg);
}
.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
}
.step p {
  color: var(--ink-soft);
  margin: 0;
}

.step-arrow {
  align-self: center;
  color: var(--primary);
  opacity: 0.6;
}
.step-arrow svg {
  width: 60px;
  height: 20px;
  animation: arrow-pull 1.6s ease-in-out infinite;
}
@keyframes arrow-pull {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(6px); }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 120px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(127, 228, 206, 0.35);
}
.feature-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--bg-raised);
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition: transform 0.3s;
  border: 1px solid rgba(127, 228, 206, 0.14);
}
.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-5deg);
}
.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.feature-card p { margin: 0; color: var(--ink-soft); }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 120px 32px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  position: relative;
  overflow: hidden;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 960px) {
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
}

.about-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-top: 14px;
}
.about-copy .lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
}
.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 36px;
}
.about-stats > div {
  position: relative;
}
.about-stats b {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--primary);
  display: block;
  line-height: 1.1;
}
.about-stats span {
  font-size: 0.85rem;
  color: var(--muted);
}

.about-visual {
  position: relative;
  height: 480px;
}

.bubble {
  position: absolute;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  animation: bubble-float 6s ease-in-out infinite;
  z-index: 2;
}
.bubble-1 { top: 10%; left: 10%; animation-delay: 0s; }
.bubble-2 { top: 8%; right: 12%; animation-delay: -1.5s; }
.bubble-3 { bottom: 12%; left: 8%;  animation-delay: -3s; }
.bubble-4 { bottom: 14%; right: 10%; animation-delay: -4.5s; }
@keyframes bubble-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.bubble-big {
  position: absolute;
  inset: 15% 20%;
  background: var(--sunset);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 40px 100px rgba(127, 228, 206, 0.25);
  animation: pulse-big 4s ease-in-out infinite;
}
@keyframes pulse-big {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
.bb-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.25) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  border-radius: 50%;
  opacity: 0.6;
}
.bb-center {
  position: relative;
  z-index: 1;
}
.bb-circle {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.bb-inner {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta {
  padding: 120px 32px;
  text-align: center;
  background: var(--bg-deep);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 40%, rgba(127, 228, 206, 0.28), transparent 55%),
              radial-gradient(circle at 70% 60%, rgba(94, 205, 181, 0.22), transparent 55%);
  filter: blur(40px);
  animation: bg-roll 14s ease-in-out infinite;
}
@keyframes bg-roll {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -20px) scale(1.06); }
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  margin-bottom: 20px;
}
.cta p {
  color: var(--ink-soft);
  font-size: 1.15rem;
  margin-bottom: 36px;
}
.cta .btn-primary {
  box-shadow: 0 0 0 4px rgba(127, 228, 206, 0.20), 0 14px 30px rgba(127, 228, 206, 0.35);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 40px 32px;
  background: #040908;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-inner .brand { color: var(--ink); }
.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ============================================================
   SCROLL REVEALS
   ============================================================ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  html { scroll-behavior: auto; }
}
