/* =============================================================
   wellpaged / medusa-whispers
   "Velvet Dark" — luxury sleep aesthetic meets mythological edge
   ============================================================= */

/* ---- Tokens ---- */
:root {
  /* Color */
  --ink: #0a0712;
  --ink-2: #120c1d;
  --velvet: #1a1125;
  --stone: #241832;
  --stone-hi: #2e2040;
  --rose: #ecb6bd;
  --blush: #d99aa5;
  --blush-deep: #b87883;
  --gold: #d4b77a;
  --gold-dim: #8a7a54;
  --cream: #f2e9db;
  --cream-dim: #cbc0ae;
  --mist: #a89db5;
  --mist-dim: #6a627a;

  /* Type */
  --font-display: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --font-accent: "Italiana", "Cormorant Garamond", serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;

  /* Space */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(5rem, 12vh, 9rem);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--cream);
  background: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ---- Atmosphere: grain + radial glows ---- */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.14;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 100;
}

/* 3 drifting orbs — the dimly-lit-room feeling */
.orbs {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  will-change: transform;
}
.orb--rose {
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(236, 182, 189, 0.55), transparent 60%);
  top: -15%; left: -10%;
  animation: drift-a 26s ease-in-out infinite alternate;
}
.orb--gold {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(212, 183, 122, 0.35), transparent 65%);
  top: 40%; right: -12%;
  animation: drift-b 32s ease-in-out infinite alternate;
}
.orb--violet {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(153, 110, 179, 0.4), transparent 60%);
  bottom: -20%; left: 30%;
  animation: drift-c 38s ease-in-out infinite alternate;
}
@keyframes drift-a { to { transform: translate(60px, 40px); } }
@keyframes drift-b { to { transform: translate(-80px, -50px); } }
@keyframes drift-c { to { transform: translate(40px, -30px); } }

/* ---- Layout primitives ---- */
.wrap {
  position: relative;
  z-index: 1;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: var(--section-y) 0;
  position: relative;
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 28px;
}
.section-tag::before {
  content: "";
  width: 32px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section-numeral {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--blush);
  letter-spacing: 0.05em;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
}
h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0 0 1.5rem;
}
h2 em, h2 .ital {
  font-style: italic;
  color: var(--rose);
  font-weight: 400;
}
h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  margin: 0 0 0.6rem;
}
p { margin: 0 0 1.1rem; }

.lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: var(--cream-dim);
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* =============================================================
   Hero
   ============================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0 clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--mist);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  text-transform: none;
  letter-spacing: normal;
  color: var(--cream);
}
.wordmark .heart { color: var(--blush); }

.hero-main {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(4rem, 14vw, 12rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0;
  max-width: 14ch;
}
.hero-title .line { display: block; }
.hero-title .line--accent {
  color: var(--rose);
  margin-left: clamp(1rem, 6vw, 5rem);
}
.hero-title .line--shift {
  margin-left: clamp(0.5rem, 3vw, 2.5rem);
}

.hero-tag {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 36ch;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  color: var(--cream-dim);
  line-height: 1.5;
}
.hero-sub {
  margin-top: 0.75rem;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
}

.hero-cta-row {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.95em 1.8em;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(236, 182, 189, 0.35);
  border-radius: 999px;
  transition: all 0.6s var(--ease-out);
  overflow: hidden;
  isolation: isolate;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(236, 182, 189, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
  z-index: -1;
}
.cta:hover {
  border-color: var(--rose);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 20px 40px -20px rgba(236, 182, 189, 0.35);
}
.cta:hover::before { opacity: 1; }
.cta .arrow {
  display: inline-block;
  transition: transform 0.5s var(--ease-out);
}
.cta:hover .arrow { transform: translateX(4px); }

/* serpent bleed in hero */
.hero-serpent {
  position: absolute;
  right: -8%;
  bottom: 8%;
  width: min(520px, 55vw);
  opacity: 0.35;
  color: var(--blush);
  pointer-events: none;
  transform: rotate(-8deg);
}

/* scroll indicator */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 3vw, 2rem);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mist);
}
.scroll-cue .line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: pulse-line 2.4s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* hero load animation */
.hero-top, .hero-title .line, .hero-tag, .hero-sub, .hero-cta-row, .scroll-cue {
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1.4s var(--ease-out) forwards;
}
.hero-top { animation-delay: 0.1s; }
.hero-title .line--1 { animation-delay: 0.25s; }
.hero-title .line--2 { animation-delay: 0.4s; }
.hero-title .line--3 { animation-delay: 0.55s; }
.hero-tag { animation-delay: 0.85s; }
.hero-sub { animation-delay: 1.0s; }
.hero-cta-row { animation-delay: 1.15s; }
.scroll-cue { animation-delay: 1.4s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* =============================================================
   About
   ============================================================= */
.about {
  padding-top: clamp(3rem, 6vw, 5rem);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-copy p {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--cream-dim);
  max-width: 38ch;
}
.about-copy p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-style: italic;
  float: left;
  font-size: 4.2em;
  line-height: 0.85;
  padding: 0.1em 0.15em 0 0;
  color: var(--rose);
}

/* Illuminated quote card */
.quote-frame {
  position: relative;
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1.8rem, 3vw, 2.5rem);
  background: linear-gradient(160deg, var(--velvet), var(--ink-2));
  border: 1px solid rgba(212, 183, 122, 0.25);
  border-radius: 3px;
  box-shadow:
    0 40px 80px -40px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(236, 182, 189, 0.1);
}
.quote-frame::before, .quote-frame::after {
  content: "";
  position: absolute;
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
}
.quote-frame::before {
  top: 10px; left: 10px;
  border-right: 0; border-bottom: 0;
}
.quote-frame::after {
  bottom: 10px; right: 10px;
  border-left: 0; border-top: 0;
}
.quote-mark {
  font-family: var(--font-accent);
  font-size: 80px;
  line-height: 0.6;
  color: var(--blush);
  opacity: 0.5;
  margin-bottom: 0.3em;
}
.quote-frame blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  line-height: 1.45;
  color: var(--cream);
}
.quote-frame cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================================
   Platforms
   ============================================================= */
.platforms-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.platforms-intro .lede { max-width: 40ch; }

.platforms-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.platform-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  background: linear-gradient(160deg, var(--velvet), var(--stone));
  border: 1px solid rgba(236, 182, 189, 0.08);
  border-radius: 6px;
  transition: all 0.6s var(--ease-out);
  overflow: hidden;
  isolation: isolate;
}
.platform-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(236, 182, 189, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
  z-index: -1;
}
.platform-card:hover {
  border-color: rgba(212, 183, 122, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}
.platform-card:hover::before { opacity: 1; }

.platform-card--feature {
  padding: clamp(2rem, 3.5vw, 3rem);
  min-height: 240px;
  justify-content: space-between;
}
.platform-card--feature .platform-icon {
  width: 44px; height: 44px;
}
.platform-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: var(--cream);
  margin: 0.4em 0 0.1em;
}
.platform-card--feature .platform-name {
  font-size: clamp(2rem, 3vw, 2.6rem);
}
.platform-meta {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mist);
}
.platform-count {
  display: block;
  margin-top: 0.8em;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  color: var(--gold);
  letter-spacing: -0.01em;
}
.platform-count em {
  font-size: 0.55em;
  font-style: normal;
  color: var(--mist);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-left: 0.6em;
}
.platform-arrow {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-top: auto;
  padding-top: 1.5em;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blush);
  transition: gap 0.4s var(--ease-out);
}
.platform-card:hover .platform-arrow { gap: 0.9em; }

.platform-icon {
  width: 28px; height: 28px;
  color: var(--blush);
}

/* =============================================================
   Content Showcase
   ============================================================= */
.content-showcase {
  background:
    linear-gradient(180deg, transparent, rgba(26, 17, 37, 0.6), transparent);
}
.content-intro {
  max-width: 50ch;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.tile {
  position: relative;
  padding: clamp(2rem, 3.5vw, 3rem);
  background:
    linear-gradient(160deg, var(--stone) 0%, var(--velvet) 100%);
  border: 1px solid rgba(212, 183, 122, 0.1);
  border-radius: 8px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
  transition: all 0.7s var(--ease-out);
}
.tile::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(236, 182, 189, 0.12), transparent 65%);
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
  z-index: -1;
}
.tile:hover {
  border-color: rgba(236, 182, 189, 0.35);
  transform: translateY(-4px);
}
.tile:hover::after { opacity: 1; }

.tile-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.tile-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  color: var(--cream);
  margin: 0.4em 0 0.5em;
  line-height: 1.1;
}
.tile-desc {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--cream-dim);
  line-height: 1.55;
  margin: 0;
  max-width: 36ch;
}
.tile-mood {
  margin-top: 2em;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blush-deep);
}

/* =============================================================
   Request / Support
   ============================================================= */
.request-header {
  text-align: center;
  max-width: 48ch;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
}
.request-header .section-tag { justify-content: center; }
.request-header .section-tag::before { display: none; }
.request-header .section-tag::after {
  content: "";
  width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
  max-width: 900px;
  margin: 0 auto clamp(3rem, 5vw, 4rem);
}
.tier {
  padding: clamp(2.25rem, 3.5vw, 3rem);
  background: linear-gradient(170deg, var(--velvet), var(--ink-2));
  border: 1px solid rgba(212, 183, 122, 0.2);
  border-radius: 6px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tier::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}
.tier-price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--rose);
  line-height: 1;
  letter-spacing: -0.02em;
}
.tier-price sup {
  font-size: 0.35em;
  vertical-align: 0.7em;
  color: var(--gold);
  margin-left: 0.1em;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.1em;
}
.tier-price em {
  font-style: italic;
  font-size: 0.45em;
  color: var(--mist);
  margin-left: 0.15em;
}
.tier-label {
  margin-top: 0.8em;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  color: var(--cream);
}
.tier-desc {
  margin-top: 0.75em;
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.55;
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================================
   Brand Collaborations
   ============================================================= */
.brand {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  background:
    linear-gradient(135deg, rgba(26, 17, 37, 0.9), rgba(18, 12, 29, 0.9));
  border-top: 1px solid rgba(212, 183, 122, 0.3);
  border-bottom: 1px solid rgba(212, 183, 122, 0.3);
  position: relative;
  overflow: hidden;
}
.brand-grid::before {
  content: "";
  position: absolute;
  top: 50%; right: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212, 183, 122, 0.12), transparent 60%);
  transform: translateY(-50%);
  pointer-events: none;
}
.brand-side h2 { margin-bottom: 0.6em; }
.brand-side p {
  color: var(--cream-dim);
  max-width: 38ch;
}
.brand-rep {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 183, 122, 0.2);
}
.brand-rep-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5em;
}
.brand-rep-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--cream);
}
.brand-rep-email {
  display: block;
  margin-top: 0.25em;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--blush);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
.brand-rep-email:hover { color: var(--rose); }

/* Rate card — editorial press-kit feel within velvet-dark */
.rate-card {
  margin-top: clamp(1.25rem, 2.5vw, 2rem);
  padding: clamp(2rem, 3.5vw, 2.75rem) clamp(1.75rem, 3vw, 2.75rem);
  background: linear-gradient(160deg, var(--velvet), var(--ink-2));
  border: 1px solid rgba(212, 183, 122, 0.22);
  border-radius: 4px;
  box-shadow: 0 40px 80px -50px rgba(0, 0, 0, 0.8);
}
.rate-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 1.25rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 183, 122, 0.22);
}
.rate-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--gold);
}
.rate-note {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mist);
}
.rate-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rate-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(168, 157, 181, 0.1);
  transition: background 0.4s var(--ease-out);
}
.rate-row:last-child { border-bottom: 0; }
.rate-row:hover { background: rgba(236, 182, 189, 0.02); }
.rate-platform {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 1.7vw, 1.4rem);
  color: var(--cream);
}
.rate-detail {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mist);
}
.rate-price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  color: var(--rose);
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.rate-price sup {
  font-size: 0.4em;
  vertical-align: 0.75em;
  color: var(--gold);
  margin-right: 0.08em;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.rate-row--addon {
  margin-top: 0.25rem;
  opacity: 0.88;
}
.rate-row--addon .rate-platform {
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  color: var(--cream-dim);
}
.rate-row--addon .rate-price {
  font-size: clamp(1.4rem, 2.1vw, 1.8rem);
  color: var(--blush-deep);
}
.rate-plus {
  color: var(--gold);
  margin-right: 0.1em;
  font-weight: 400;
}

/* =============================================================
   Footer
   ============================================================= */
.footer {
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(2rem, 3vw, 2.5rem);
  position: relative;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(168, 157, 181, 0.15);
}
.footer-wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
  color: var(--cream);
  margin: 0;
}
.footer-wordmark .heart { color: var(--blush); font-size: 0.6em; vertical-align: 0.2em; }
.footer-sendoff {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--mist);
  max-width: 24ch;
  text-align: right;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: 2.5rem 0;
}
.footer-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.footer-link::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width 0.5s var(--ease-out);
}
.footer-link:hover { color: var(--rose); }
.footer-link:hover::after { width: 100%; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(168, 157, 181, 0.1);
}
.disclaimer {
  font-size: 11px;
  color: var(--mist-dim);
  line-height: 1.6;
  max-width: 60ch;
  font-style: italic;
}
.disclaimer strong {
  font-weight: 500;
  color: var(--mist);
  font-style: normal;
}
.footer-copy {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mist-dim);
}

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .platforms-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .platforms-feature { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: 1fr; padding: 2.5rem 2rem; }
  .rate-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "platform price"
      "detail   detail";
    gap: 0.4rem 1rem;
  }
  .rate-platform { grid-area: platform; }
  .rate-price    { grid-area: price; }
  .rate-detail   { grid-area: detail; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-sendoff { text-align: left; }
  .hero-serpent { opacity: 0.2; width: 80vw; right: -20%; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero-top { font-size: 10px; }
  .hero-top .hero-top-right { display: none; }
}

/* =============================================================
   Custom cursor — rose orb + trailing ring
   Desktop only. Disabled on touch devices + reduced-motion.
   ============================================================= */
@media (hover: hover) and (pointer: fine) {
  html, body {
    cursor: none;
  }
  a, button, .cta, .platform-card, .tile, .pay, .footer-link {
    cursor: none;
  }
  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate3d(-50%, -50%, 0);
    mix-blend-mode: screen;
    will-change: transform;
  }
  .cursor-dot {
    width: 6px; height: 6px;
    background: var(--rose);
    border-radius: 50%;
    box-shadow:
      0 0 10px rgba(236, 182, 189, 0.9),
      0 0 24px rgba(236, 182, 189, 0.5);
    transition: width 0.25s var(--ease-out),
                height 0.25s var(--ease-out),
                background 0.25s var(--ease-out);
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid rgba(236, 182, 189, 0.5);
    border-radius: 50%;
    transition: width 0.35s var(--ease-out),
                height 0.35s var(--ease-out),
                border-color 0.35s var(--ease-out),
                background 0.35s var(--ease-out);
  }
  /* Hover state over interactive elements: ring expands, softens */
  .cursor-ring.is-hover {
    width: 56px; height: 56px;
    border-color: var(--gold);
    background: rgba(212, 183, 122, 0.06);
  }
  .cursor-dot.is-hover {
    width: 4px; height: 4px;
    background: var(--gold);
  }
  /* Hide default cursor artifacts cleanly */
  * { cursor: inherit !important; }
}

/* =============================================================
   Marquee strip
   Seamless infinite scroll, atmospheric display type
   ============================================================= */
.marquee {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid rgba(212, 183, 122, 0.15);
  border-bottom: 1px solid rgba(212, 183, 122, 0.15);
  background: linear-gradient(180deg, transparent, rgba(18, 12, 29, 0.4), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
  will-change: transform;
}
.marquee-item {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  color: var(--cream-dim);
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0.55;
  transition: opacity 0.6s var(--ease-out), color 0.6s var(--ease-out);
}
.marquee:hover .marquee-item { opacity: 0.85; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-sep {
  color: var(--blush);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  opacity: 0.6;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   Hero breathing — "whispers" pulses like a breath
   ============================================================= */
.line--breathe {
  animation: breathe 7s ease-in-out infinite;
  /* overrides the one-shot rise animation by running after it completes */
  animation-delay: 2.5s;
  will-change: opacity, filter;
}
@keyframes breathe {
  0%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 0 rgba(236, 182, 189, 0));
  }
  50% {
    opacity: 0.82;
    filter: drop-shadow(0 0 18px rgba(236, 182, 189, 0.25));
  }
}

/* =============================================================
   Glow trail on tile hover
   Uses --mx/--my set by JS from mousemove
   ============================================================= */
.tile {
  --mx: 50%;
  --my: 50%;
}
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    260px circle at var(--mx) var(--my),
    rgba(236, 182, 189, 0.14),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  z-index: -1;
  pointer-events: none;
}
.tile:hover::before { opacity: 1; }
/* The existing .tile::after (ambient bottom glow) still fires; together
   they layer — base ambient + cursor-following accent */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .orb { animation: none; }
  .marquee-track { animation: none; }
  .line--breathe { animation: none; }
  .cursor-dot, .cursor-ring { display: none; }
  html, body, a, button, .cta, .platform-card, .tile, .pay, .footer-link {
    cursor: auto;
  }
}
