/* Tembra — Night Temple design system for the web.
   The site is a continuation of the app: glow instead of shadow,
   serif headlines, one violet focus per screen, everything breathes slowly. */

:root {
  color-scheme: dark;
  --bg: #0B0B14;
  --surface: #14141F;
  --surface-2: #191927;
  --violet: #8B7CF6;
  --violet-soft: rgba(139, 124, 246, 0.14);
  --gold: #D9A85C;
  --text: #F2F0EA;
  --text-2: #C9C6D4;
  --text-3: #9A97A8;
  --hairline: rgba(255, 255, 255, 0.08);
  --serif: "Literata", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 17px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(139, 124, 246, 0.35); }

/* Explicit focus ring: the UA default is unreliable against this background,
   and every interactive element here sits on near-black. */
:where(a, button, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
}

a { color: var(--violet); text-decoration: none; }
a:hover { text-decoration: underline; }

/* height:auto is load-bearing: the <img> width/height attributes are presentational
   hints, so without it every screenshot renders at its intrinsic 1796px height. */
img { max-width: 100%; height: auto; display: block; }

/* ---------- Type ---------- */

h1, h2, h3 { font-family: var(--serif); font-weight: 400; margin: 0; }

h1 {
  font-size: clamp(40px, 7.5vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  font-weight: 500;
  /* Warm white falling into lavender — reads as light hitting stone. */
  background: linear-gradient(180deg, #FBFAF6 30%, #CFC8E8 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
h1 em, h2 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, #EEDDBC, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  font-weight: 500;
  background: linear-gradient(180deg, #F7F5EF 40%, #BBB4CF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 { font-size: 21px; line-height: 1.3; }

.kicker {
  font: 600 12px/1 var(--sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}

.lede { font-size: clamp(18px, 2.4vw, 21px); color: var(--text-2); }
.muted { color: var(--text-3); font-size: 14px; }

/* ---------- Layout ---------- */

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(80px, 12vw, 140px) 0; position: relative; }
.section + .section { border-top: 1px solid transparent; }

.center { text-align: center; }
.measure { max-width: 640px; }
.measure.center, .center .measure { margin-left: auto; margin-right: auto; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (min-width: 880px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

/* ---------- Nav ---------- */

.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11, 11, 20, 0.72);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.brand {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text);
  letter-spacing: 0.01em;
}
.brand:hover { text-decoration: none; }
.nav-links { display: none; gap: 26px; align-items: center; }
.nav-links a {
  color: var(--text-3);
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
}
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-links a { white-space: nowrap; }
/* Six uppercase links plus brand and CTA need ~960px. Below that they collided
   with the brand and wrapped "For practitioners" into the button. */
@media (min-width: 960px) { .nav-links { display: flex; } }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: 600 16px/1 var(--sans);
  padding: 16px 30px;
  border-radius: 999px;
  border: 0; cursor: pointer;
  text-decoration: none !important;
  transition: filter 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.btn-primary {
  background: linear-gradient(180deg, #A296F8, var(--violet) 55%, #7A6AE8);
  color: #0B0B14;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 0 34px rgba(139, 124, 246, 0.38);
}
.btn-primary:hover {
  filter: brightness(1.08); transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 0 50px rgba(139, 124, 246, 0.55);
}
.btn-ghost {
  background: transparent; color: var(--text-2);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.32); }
.btn-sm { padding: 11px 20px; font-size: 14px; }

/* ---------- Cards ---------- */

.card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 28px;
}

/* ---------- Phone frame (pure CSS, no mockup images) ----------
   Screenshots are pre-cropped below the iOS status bar, so the frame
   supplies the hardware: titanium rim, side buttons, screen inset. */

.phone-wrap { display: flex; justify-content: center; }

.phone {
  position: relative;
  width: min(320px, 80vw);
  border-radius: 54px;
  padding: 12px;
  background:
    linear-gradient(150deg, #3a3a46 0%, #17171f 30%, #101017 70%, #2c2c36 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 0 0 3px rgba(0, 0, 0, 0.85),
    0 40px 90px rgba(0, 0, 0, 0.65),
    0 0 110px var(--phone-glow, rgba(139, 124, 246, 0.12));
  margin: 0 auto;
  animation: phone-float 7s ease-in-out infinite;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.phone:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 0 0 3px rgba(0, 0, 0, 0.85),
    0 50px 110px rgba(0, 0, 0, 0.7),
    0 0 140px var(--phone-glow, rgba(139, 124, 246, 0.2));
}
@keyframes phone-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}
.phone::before { /* screen glass highlight */
  content: "";
  position: absolute; inset: 12px;
  border-radius: 42px;
  background: linear-gradient(155deg, rgba(255,255,255,0.07), transparent 32%);
  pointer-events: none;
  z-index: 2;
}
.phone::after { /* side buttons */
  content: "";
  position: absolute; top: 130px; right: -2.5px;
  width: 2.5px; height: 74px; border-radius: 2px;
  background: linear-gradient(90deg, #3a3a46, #17171f);
  box-shadow: 0 -34px 0 0 #26262f, 0 108px 0 0 #26262f;
}
.phone img {
  border-radius: 42px;
  width: 100%;
  height: auto;
  aspect-ratio: 880 / 1796;
  object-fit: cover;
  display: block;
  background: #060609;
}
.phone.glow-gold { --phone-glow: rgba(217, 168, 92, 0.15); }

@media (prefers-reduced-motion: reduce) {
  .phone { animation: none; }
  .phone:hover { transform: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 110px 24px 70px;
  overflow: hidden;
}
/* Film grain over the hero — kills the "flat digital black" feel. */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
}
/* The hero phone: rises out of the fold, screen lit. */
.hero-phone {
  position: relative; z-index: 1;
  margin-top: clamp(48px, 7vw, 84px);
  perspective: 1200px;
}
.hero-phone .phone {
  width: min(340px, 82vw);
  animation: none;
}
@media (min-width: 880px) {
  .hero { min-height: auto; padding-bottom: 0; }
  .hero-phone { margin-bottom: -180px; }
  .hero-phone + .scroll-hint { display: none; }
  .listen { padding-top: 260px; }
}
#aura {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 960px; }
/* The hard break is a desktop nicety; on a phone it strands "become" on its own line. */
@media (max-width: 560px) { .hero h1 br { display: none; } }
.hero .lede { margin: 26px auto 38px; max-width: 560px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-size: 13px; color: var(--text-3); letter-spacing: 0.04em; }
.hero-vignette {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 90% 70% at 50% 42%, transparent 55%, var(--bg) 100%);
}

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: var(--text-3); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  animation: hint-float 3.2s ease-in-out infinite;
  z-index: 1;
}
@keyframes hint-float {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.55; }
  50% { transform: translate(-50%, 7px); opacity: 1; }
}

/* ---------- Listen demo ---------- */

.listen {
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(139, 124, 246, 0.07), transparent 70%);
}
.demo-pads { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 44px; }
@media (min-width: 680px) { .demo-pads { grid-template-columns: 1fr 1fr; } }
.demo-pad {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  padding: 38px 28px 34px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
  overflow: hidden;
  font-family: var(--sans);
}
.demo-pad:active { transform: scale(0.985); }
.demo-pad .pad-title { display: block; font-family: var(--serif); font-size: 23px; color: var(--text); }
.demo-pad .pad-sub { display: block; margin-top: 8px; font-size: 14px; color: var(--text-3); }
.demo-pad .pad-icon { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; display: block; }
.demo-pad.dry .pad-icon { color: var(--text-3); }
.demo-pad.wet .pad-icon { color: var(--gold); }
.demo-pad.wet { border-color: rgba(139, 124, 246, 0.35); }
.demo-pad.wet:hover { box-shadow: 0 0 60px rgba(139, 124, 246, 0.18); }
.demo-pad.dry:hover { border-color: rgba(255, 255, 255, 0.2); }
.demo-pad .ripple {
  position: absolute; left: 50%; top: 50%;
  width: 12px; height: 12px; border-radius: 50%;
  border: 1px solid var(--violet);
  transform: translate(-50%, -50%);
  opacity: 0; pointer-events: none;
}
.demo-pad.playing .ripple { animation: pad-ripple 2.6s ease-out forwards; }
.demo-pad.dry.playing .ripple { animation-duration: 0.45s; border-color: var(--text-3); }
@keyframes pad-ripple {
  0% { width: 12px; height: 12px; opacity: 0.9; }
  100% { width: 560px; height: 560px; opacity: 0; }
}
.listen-note { margin-top: 20px; }

/* ---------- Steps ---------- */

.steps { display: grid; gap: 18px; grid-template-columns: 1fr; margin-top: 54px; counter-reset: step; }
/* Three across only while .grid-2 is still one column and the full width is ours.
   Past 880px this sits in a ~480px column, where three cards would shred the text. */
@media (min-width: 680px) and (max-width: 879.98px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step { padding: 30px 26px; }
.step .n {
  font-family: var(--serif); font-size: 15px; color: var(--gold);
  display: block; margin-bottom: 16px; letter-spacing: 0.1em;
}
.step h3 { margin-bottom: 10px; }
.step p { margin: 0; font-size: 15px; color: var(--text-3); }

/* ---------- Spaces ---------- */

.spaces-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 54px;
}
@media (min-width: 680px) { .spaces-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .spaces-grid { grid-template-columns: repeat(5, 1fr); } }
.space {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 22px 18px 20px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.space:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.16); }
.space::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% 0%, var(--space-glow, rgba(139,124,246,.16)), transparent 70%);
  opacity: 0.8;
}
.space > * { position: relative; }
.space h3 { font-size: 17px; }
.space p { margin: 7px 0 0; font-size: 13px; color: var(--text-3); line-height: 1.5; }
.space .lock {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; letter-spacing: 0.1em; color: var(--gold);
  border: 1px solid rgba(217, 168, 92, 0.35);
  border-radius: 999px; padding: 3px 8px;
}

/* ---------- Voice ---------- */

.voice-lines { width: 100%; max-width: 560px; margin: 40px auto 0; display: block; }
.voice-label {
  font: 600 11px/1 var(--sans);
  letter-spacing: 0.22em; text-transform: uppercase;
  fill: var(--text-3);
}
.voice-label.unison { fill: var(--gold); }

/* ---------- Share ---------- */

.share { background: radial-gradient(ellipse 55% 70% at 50% 100%, rgba(139,124,246,.06), transparent 70%); }

/* ---------- Pulse ---------- */

.pulse-section {
  background:
    radial-gradient(ellipse 70% 60% at 50% 20%, rgba(139, 124, 246, 0.10), transparent 65%),
    #08080F;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  position: relative;
}
.beat-flash {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 55% at 50% 45%, rgba(139, 124, 246, 0.16), transparent 70%);
  opacity: 0;
}
.beat-flash.gold { background: radial-gradient(ellipse 60% 55% at 50% 45%, rgba(217, 168, 92, 0.12), transparent 70%); }
.pulse-section .kicker { color: var(--violet); }
.pulse-bpm {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 13px/1 var(--sans); letter-spacing: 0.18em;
  color: var(--gold); text-transform: uppercase;
  margin: 20px 0 26px;
}
.pulse-bpm .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.pulse-rooms { display: grid; gap: 12px; grid-template-columns: 1fr; margin-top: 36px; }
/* Same constraint as .steps — three across only while we own the full width. */
@media (min-width: 680px) and (max-width: 879.98px) {
  .pulse-rooms { grid-template-columns: repeat(3, 1fr); }
}
.pulse-room { padding: 20px 22px; }
.pulse-room h3 { font-size: 16px; font-family: var(--sans); font-weight: 600; letter-spacing: 0.02em; }
.pulse-room p { margin: 6px 0 0; font-size: 14px; color: var(--text-3); }

/* ---------- Pricing ---------- */

.billing-toggle {
  display: inline-flex; gap: 4px;
  margin-top: 34px; padding: 4px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 999px;
}
.bt-option {
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 14px/1 var(--sans);
  color: var(--text-3);
  background: transparent; border: 0; cursor: pointer;
  padding: 10px 20px; border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.bt-option:hover { color: var(--text); }
.bt-option.active {
  background: var(--violet); color: #0B0B14;
  box-shadow: 0 0 24px rgba(139, 124, 246, 0.35);
}
.bt-save {
  font: 700 10px/1 var(--sans);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(217, 168, 92, 0.45);
  border-radius: 999px; padding: 3px 7px;
}
.bt-option.active .bt-save { color: #5C4415; border-color: rgba(11, 11, 20, 0.35); }
.plan .price-note { margin: 6px 0 0; font-size: 13px; color: var(--text-3); }

.plans { display: grid; gap: 18px; grid-template-columns: 1fr; margin-top: 54px; }
@media (min-width: 880px) { .plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.plan { display: flex; flex-direction: column; padding: 32px 28px; }
.plan.featured {
  position: relative;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--surface-2), var(--surface-2)) padding-box,
    linear-gradient(165deg, rgba(139,124,246,.7), rgba(139,124,246,.12) 40%, rgba(217,168,92,.55)) border-box;
  box-shadow: 0 0 80px rgba(139, 124, 246, 0.14);
}
@media (min-width: 880px) {
  .plan.featured { transform: scale(1.04); }
}
.plan .badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font: 600 11px/1 var(--sans); letter-spacing: 0.12em; text-transform: uppercase;
  color: #0B0B14; background: var(--gold);
  border-radius: 999px; padding: 6px 14px; white-space: nowrap;
}
.plan h3 { font-family: var(--sans); font-weight: 600; font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
.plan .price { font-family: var(--serif); font-size: 42px; margin-top: 14px; }
.plan .price small { font-size: 16px; color: var(--text-3); font-family: var(--sans); }
.plan ul { list-style: none; margin: 22px 0 28px; padding: 0; flex: 1; }
.plan li { padding: 7px 0; font-size: 15px; color: var(--text-2); border-bottom: 1px solid rgba(255,255,255,0.05); }
.plan li:last-child { border-bottom: 0; }
.plan .alt { margin-top: 14px; text-align: center; font-size: 13px; color: var(--text-3); }

/* ---------- Privacy strip ---------- */

.privacy-strip { border-top: 1px solid var(--hairline); }

/* ---------- Final CTA ---------- */

.final-cta {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 60% 90% at 50% 100%, rgba(139, 124, 246, 0.10), transparent 65%);
}
.final-ring {
  position: absolute; left: 50%; bottom: -32vw;
  width: 64vw; height: 64vw; max-width: 900px; max-height: 900px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(139, 124, 246, 0.25);
  box-shadow:
    0 0 120px rgba(139, 124, 246, 0.18),
    inset 0 0 120px rgba(139, 124, 246, 0.10);
  pointer-events: none;
}
.final-ring::before, .final-ring::after {
  content: "";
  position: absolute; inset: -11%;
  border-radius: 50%;
  border: 1px solid rgba(139, 124, 246, 0.13);
}
.final-ring::after { inset: -24%; border-color: rgba(217, 168, 92, 0.10); }

/* ---------- Footer ---------- */

.footer { border-top: 1px solid var(--hairline); padding: 54px 0 64px; }
.footer .brand { display: inline-block; margin-bottom: 22px; font-size: 26px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; margin-bottom: 18px; }
.footer-links a { color: var(--text-3); font-size: 14px; }
.footer-links a:hover { color: var(--text); }
.footer .muted { line-height: 1.8; }

/* ---------- Reveal on scroll ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-hint, .demo-pad.playing .ripple { animation: none; }
}

/* ---------- Inner pages (practitioners / legal) ---------- */

.page main.wrap { padding-top: 56px; padding-bottom: 110px; max-width: 760px; }
.page h1 { font-size: clamp(34px, 6vw, 52px); margin: 20px 0 14px; }
.page h2 { font-size: clamp(24px, 3.5vw, 30px); margin: 56px 0 16px; }
.page p, .page li { color: var(--text-2); }
.page .tag {
  display: inline-block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(217, 168, 92, 0.35);
  border-radius: 999px; padding: 4px 12px;
}
.use-case { border-left: 1px solid rgba(217, 168, 92, 0.3); padding: 4px 0 4px 22px; margin: 30px 0; }
.use-case h3 { font-size: 20px; margin-bottom: 6px; }
.use-case p { margin: 0; font-size: 16px; }
.page details { border-bottom: 1px solid var(--hairline); padding: 16px 0; }
.page summary { cursor: pointer; color: var(--text); font-size: 16px; }
.page summary::marker { color: var(--violet); }
.page details p { margin: 12px 0 0; font-size: 15px; }
.page .plans { margin-top: 30px; grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .page .plans { grid-template-columns: 1fr 1fr; }
  .page .plans .wide { grid-column: 1 / -1; }
}
.page .plan .cta { margin-top: 8px; }
/* Licence qualifiers here are long ("/ year · up to 5 practitioners, one venue"):
   inline they wrap into an orphan line and knock the two cards out of alignment. */
.page .plan .price small { display: block; margin-top: 8px; line-height: 1.4; }
.cta {
  display: block; text-align: center;
  background: var(--violet); color: #0B0B14 !important;
  font-weight: 600; padding: 14px 20px; border-radius: 999px;
  text-decoration: none !important;
}
.cta:hover { filter: brightness(1.08); }
.cta.ghost { background: transparent; color: var(--gold) !important; border: 1px solid rgba(217, 168, 92, 0.4); }
