/* =========================================================
   ZUNA — Launching Soon · Community Page
   Palette pulled from the Zuna-Website dev branch:
     primary (forest):  #011a17 → #023d37 → #e6eceb
     secondary (butter): #6b654c → #fff1b4 → #fffef8
   ========================================================= */

@font-face {
  font-family: "Awesome Serif";
  src: url("fonts/AwesomeSerif-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* brand — primary (forest teal) */
  --p-900: #011a17;
  --p-800: #01221e;
  --p-700: #012b27; /* base background */
  --p-600: #023832;
  --p-500: #023d37; /* logo / mark color */
  --p-400: #35645f;
  --p-300: #557d79;
  --p-200: #8ba6a3;
  --p-100: #b1c3c1;
  --p-50:  #e6eceb;

  /* brand — secondary (butter cream) */
  --s-900: #6b654c;
  --s-800: #8c8563;
  --s-700: #b5ab80;
  --s-600: #e8dba4;
  --s-500: #fff1b4;  /* signature accent */
  --s-400: #fff4c3;
  --s-300: #fff6cd;
  --s-200: #fff9dd;
  --s-100: #fffbe8;
  --s-50:  #fffef8;

  /* semantic */
  --bg:        var(--p-700);
  --bg-2:      var(--p-800);
  --surface:   rgba(255, 249, 221, 0.05);
  --surface-2: rgba(255, 249, 221, 0.08);
  --border:    rgba(255, 249, 221, 0.14);
  --border-strong: rgba(255, 241, 180, 0.32);

  --text:      var(--s-200);
  --text-warm: var(--s-500);
  --text-dim:  rgba(177, 195, 193, 0.78);  /* p-100 @ 78% */
  --text-faint:rgba(139, 166, 163, 0.62);  /* p-200 @ 62% */

  --accent-grad: linear-gradient(120deg, var(--s-600) 0%, var(--s-500) 45%, var(--s-300) 100%);
  --accent-grad-deep: linear-gradient(135deg, var(--s-500) 0%, var(--s-700) 100%);

  --serif: "Awesome Serif", "Cormorant Garamond", Georgia, serif;
  --sans:  "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --display-sans: "Work Sans", var(--sans);

  --radius: 18px;
  --radius-lg: 28px;
  --max: 1200px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  min-height: 100svh;
  position: relative;
  background:
    radial-gradient(1100px 600px at 82% -10%, rgba(255, 241, 180, 0.14), transparent 60%),
    radial-gradient(820px 520px at -8% 12%, rgba(232, 219, 164, 0.10), transparent 60%),
    radial-gradient(720px 540px at 50% 110%, rgba(53, 100, 95, 0.45), transparent 65%),
    var(--bg);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

::selection { background: var(--s-500); color: var(--p-800); }

/* ---------- ambient orbs + grain ---------- */
.orbs {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  will-change: transform;
}
.orb--a {
  width: 540px; height: 540px;
  top: -140px; left: -120px;
  background: radial-gradient(circle at 30% 30%, var(--s-500), transparent 70%);
  opacity: 0.35;
  animation: float 20s ease-in-out infinite alternate;
}
.orb--b {
  width: 640px; height: 640px;
  top: 8%; right: -200px;
  background: radial-gradient(circle at 60% 40%, var(--p-400), transparent 70%);
  opacity: 0.65;
  animation: float 24s ease-in-out -4s infinite alternate;
}
.orb--c {
  width: 500px; height: 500px;
  bottom: -180px; left: 28%;
  background: radial-gradient(circle at 50% 50%, var(--s-600), transparent 70%);
  opacity: 0.28;
  animation: float 28s ease-in-out -10s infinite alternate;
}
@keyframes float {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(60px, -40px, 0) scale(1.08); }
}

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- layout ---------- */
.nav, main, .footer__inner {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 56px);
}

/* ---------- nav ---------- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; padding-bottom: 8px;
}
.nav__mark {
  display: inline-flex; align-items: center; gap: 12px;
}
.nav__mark img {
  height: 26px; width: auto;
  display: block;
}
.nav__mark small {
  font-family: var(--display-sans);
  font-size: 10px; font-weight: 500; letter-spacing: 0.34em;
  color: var(--text-faint);
}
.nav__cta {
  font-size: 13px; letter-spacing: 0.02em;
  color: var(--text-dim);
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}
.nav__cta:hover {
  color: var(--s-500);
  border-color: var(--border-strong);
  background: var(--surface);
}

/* ---------- hero ---------- */
.hero {
  padding-top: clamp(56px, 12vw, 120px);
  padding-bottom: clamp(56px, 10vw, 100px);
  text-align: center;
}

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  font-family: var(--display-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--text-warm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.badge__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--s-500);
  box-shadow: 0 0 0 0 rgba(255, 241, 180, 0.6);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 241, 180, 0.6); }
  50%      { box-shadow: 0 0 0 14px rgba(255, 241, 180, 0); }
}

.wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(110px, 24vw, 320px);
  line-height: 0.88;
  margin: 32px 0 28px;
  letter-spacing: -0.03em;
}
.wordmark__line {
  background: var(--accent-grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  display: inline-block;
  animation: shift 9s ease-in-out infinite alternate;
  filter: drop-shadow(0 12px 50px rgba(255, 241, 180, 0.18));
}
@keyframes shift {
  0%   { background-position:   0% 50%; }
  100% { background-position: 100% 50%; }
}

.tagline {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.4;
  margin: 0 auto 28px;
  max-width: 720px;
  color: var(--s-200);
}
.tagline em {
  font-style: italic;
  color: var(--text-dim);
}

.lede {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dim);
  font-weight: 300;
}
.lede strong {
  color: var(--s-500);
  font-weight: 600;
}

.scroll-cue {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--text-warm);
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  transition: all 220ms ease;
}
.scroll-cue:hover {
  color: var(--p-800);
  background: var(--s-500);
  border-color: var(--s-500);
  transform: translateY(-2px);
}
.scroll-cue svg {
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(3px); }
}

/* ---------- marquee ---------- */
.marquee {
  position: relative; z-index: 2;
  border-block: 1px solid var(--border);
  background: rgba(1, 26, 23, 0.55);
  overflow: hidden;
  padding-block: 22px;
  margin-block: 12px;
}
.marquee__track {
  display: flex; gap: 56px;
  width: max-content;
  animation: scroll 36s linear infinite;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  white-space: nowrap;
}
.marquee__track span {
  background: var(--accent-grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  opacity: 0.9;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ---------- join section ---------- */
.join {
  padding-block: clamp(72px, 10vw, 120px);
}
.join__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}
.eyetext {
  font-family: var(--display-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--text-warm);
  margin: 0 0 16px;
}
.join__header h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.015em;
  color: var(--s-200);
}
.join__sub {
  color: var(--text-dim);
  font-size: 15px; line-height: 1.75;
  font-weight: 300;
  margin: 0 auto;
  max-width: 520px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) {
  .cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

.card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 30px;
  min-height: 360px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255, 249, 221, 0.05), rgba(255, 249, 221, 0.015)),
    rgba(1, 26, 23, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1),
              border-color 320ms ease,
              background 320ms ease;
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 241, 180, 0.22), transparent 60%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.card:hover::before { opacity: 1; }

.card__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 38px;
  position: relative; z-index: 1;
}
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--s-500);
}
.card__icon svg { width: 20px; height: 20px; }
.card__step {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--text-faint);
}

.card__body { flex: 1; position: relative; z-index: 1; }
.card__body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  color: var(--s-200);
}
.card__body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dim);
  font-weight: 300;
  margin: 0;
}

.card__cta {
  margin-top: 26px;
  display: inline-flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--display-sans);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--s-200);
  background: var(--surface);
  transition: all 240ms ease;
  position: relative; z-index: 1;
}
.card:hover .card__cta {
  background: var(--s-500);
  border-color: var(--s-500);
  color: var(--p-800);
}
.card__arrow {
  transition: transform 240ms ease;
  display: inline-block;
}
.card:hover .card__arrow { transform: translate(2px, -2px); }

/* email card form */
.form { margin-top: 26px; position: relative; z-index: 1; }
.form__row {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  transition: border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}
.form__row:focus-within {
  border-color: var(--s-500);
  background: rgba(255, 241, 180, 0.06);
  box-shadow: 0 0 0 4px rgba(255, 241, 180, 0.10);
}
.form__row input {
  flex: 1;
  border: 0; outline: 0;
  background: transparent;
  color: var(--s-100);
  font-size: 14px;
  padding: 10px 14px;
  font-family: inherit;
  min-width: 0;
}
.form__row input::placeholder { color: var(--text-faint); }

.form__row button {
  display: inline-flex; align-items: center; gap: 8px;
  border: 0;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--s-500);
  color: var(--p-800);
  font-family: var(--display-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 280ms ease, transform 200ms ease, opacity 200ms ease, box-shadow 280ms ease;
}
.form__row button:hover {
  background: var(--s-400);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(255, 241, 180, 0.55);
}
.form__row button:disabled { opacity: 0.6; cursor: progress; transform: none; }
.btn__arrow { transition: transform 200ms ease; }
.form__row button:hover .btn__arrow { transform: translateX(3px); }

.form__msg {
  margin: 12px 4px 0;
  font-size: 12.5px;
  color: var(--text-faint);
  min-height: 1.2em;
  letter-spacing: 0.01em;
}
.form__msg.is-success { color: var(--s-400); }
.form__msg.is-error   { color: #ffbcbc; }

/* ---------- closing ---------- */
.closing {
  text-align: center;
  padding-block: clamp(80px, 14vw, 160px);
}
.closing h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  padding-block: 0.08em 0.14em;
  background: var(--accent-grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.closing p {
  color: var(--text-dim);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  margin: 0;
}

/* ---------- footer ---------- */
.footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-block: 32px 40px;
}
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__brand {
  display: inline-flex; align-items: center; gap: 14px;
}
.footer__brand img { height: 22px; width: auto; display: block; }
.footer__loc {
  font-family: var(--display-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.30em; text-transform: uppercase;
  color: var(--text-faint);
}
.footer__links {
  display: inline-flex; gap: 24px;
  font-family: var(--display-sans);
  font-size: 13px; font-weight: 400;
  color: var(--text-dim);
}
.footer__links a { transition: color 200ms ease; }
.footer__links a:hover { color: var(--s-500); }
.footer__legal {
  width: 100%;
  text-align: center;
  margin: 16px 0 0;
  font-family: var(--display-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* logo color helpers — invert the dark-green logo for the dark bg */
.nav__mark img,
.footer__brand img {
  filter: brightness(0) saturate(100%) invert(94%) sepia(28%) saturate(388%) hue-rotate(8deg) brightness(105%) contrast(101%);
  /* approximates --s-200 cream */
}

/* ---------- success modal ---------- */
.modal {
  position: fixed; inset: 0;
  z-index: 50;
  display: flex;
  align-items: flex-start;     /* prevents clipping when card > viewport */
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding:
    max(24px, env(safe-area-inset-top))
    max(24px, env(safe-area-inset-right))
    max(24px, env(safe-area-inset-bottom))
    max(24px, env(safe-area-inset-left));
}
.modal[hidden] { display: none; }

.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(1, 13, 11, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: backdropIn 280ms ease both;
}
@keyframes backdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal__card {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  margin: auto;                /* vertically centers when room, sticks top when overflowing */
  padding: 56px 36px 40px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 241, 180, 0.22), transparent 65%),
    linear-gradient(160deg, rgba(255, 249, 221, 0.06), rgba(255, 249, 221, 0.02)),
    var(--p-800);
  box-shadow:
    0 30px 80px -30px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 241, 180, 0.06) inset,
    0 60px 120px -40px rgba(255, 241, 180, 0.18);
  overflow: hidden;
  animation: cardIn 480ms cubic-bezier(.2, .9, .25, 1.1) both;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(14px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dim);
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease, transform 200ms ease;
}
.modal__close:hover {
  color: var(--s-500);
  border-color: var(--border-strong);
  background: var(--surface-2);
  transform: rotate(90deg);
}

.modal__hearts {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.modal__hearts .heart {
  position: absolute;
  bottom: -10%;
  width: 18px; height: 18px;
  fill: var(--s-500);
  opacity: 0;
  animation: rise 4.2s ease-out infinite;
  filter: drop-shadow(0 4px 16px rgba(255, 241, 180, 0.55));
}
.heart--f1 { left:  8%; animation-delay: 0.0s;  width: 14px; height: 14px; }
.heart--f2 { left: 22%; animation-delay: 0.9s;  width: 22px; height: 22px; }
.heart--f3 { left: 40%; animation-delay: 0.4s;  width: 16px; height: 16px; }
.heart--f4 { left: 58%; animation-delay: 1.6s;  width: 20px; height: 20px; }
.heart--f5 { left: 76%; animation-delay: 0.7s;  width: 14px; height: 14px; }
.heart--f6 { left: 90%; animation-delay: 2.1s;  width: 18px; height: 18px; }

@keyframes rise {
  0%   { transform: translateY(0) scale(0.5) rotate(-12deg); opacity: 0; }
  15%  { opacity: 0.9; }
  60%  { opacity: 0.7; }
  100% { transform: translateY(-360px) scale(1.05) rotate(14deg); opacity: 0; }
}

.modal__icon {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; justify-content: center;
  width: 96px; height: 96px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 241, 180, 0.18), transparent 65%);
}
.modal__icon svg {
  animation: beat 1.6s ease-in-out infinite;
  filter: drop-shadow(0 12px 30px rgba(255, 241, 180, 0.45));
}
@keyframes beat {
  0%, 100% { transform: scale(1); }
  20%      { transform: scale(1.12); }
  40%      { transform: scale(1); }
  60%      { transform: scale(1.06); }
  80%      { transform: scale(1); }
}

.modal__eyetext {
  position: relative; z-index: 1;
  font-family: var(--display-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--text-warm);
  margin: 0 0 10px;
}
.modal__title {
  position: relative; z-index: 1;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4.5vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  padding-block: 0.06em 0.12em;
  background: var(--accent-grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.modal__copy {
  position: relative; z-index: 1;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-dim);
  font-weight: 300;
  margin: 0 auto 26px;
  max-width: 340px;
}

.modal__cta {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.modal__btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--display-sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 240ms ease;
  cursor: pointer;
}
.modal__btn--primary {
  background: var(--s-500);
  color: var(--p-800);
  border: 1px solid var(--s-500);
}
.modal__btn--primary:hover {
  background: var(--s-400);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px -10px rgba(255, 241, 180, 0.55);
}
.modal__btn--ghost {
  background: transparent;
  color: var(--s-200);
  border: 1px solid var(--border);
}
.modal__btn--ghost:hover {
  border-color: var(--border-strong);
  background: var(--surface);
  color: var(--s-500);
}

.modal__signoff {
  position: relative; z-index: 1;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--text-faint);
  margin: 0;
}

/* lock background scroll when modal open */
body.is-modal-open { overflow: hidden; }

@media (max-width: 480px) {
  .modal {
    padding:
      max(16px, env(safe-area-inset-top))
      max(16px, env(safe-area-inset-right))
      max(16px, env(safe-area-inset-bottom))
      max(16px, env(safe-area-inset-left));
  }
  .modal__card { padding: 48px 22px 32px; }
  .modal__close { width: 40px; height: 40px; }   /* >= 40px touch target */
  .modal__title { font-size: 28px; }
}

/* ---------- responsive niceties ---------- */
@media (max-width: 640px) {
  .nav__cta { display: none; }
  .form__row { flex-direction: column; padding: 8px; border-radius: 22px; }
  .form__row input { width: 100%; }
  .form__row button { width: 100%; justify-content: center; padding: 14px 18px; }
  .footer__inner { flex-direction: column; text-align: center; }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .orb, .badge__dot, .marquee__track, .wordmark__line, .scroll-cue svg,
  .modal__hearts .heart, .modal__icon svg, .modal__card, .modal__backdrop {
    animation: none !important;
  }
}
