/* ══════════════════════════════════════════════════════════════════════════
   NOTHING™ — a product launch page for a product that does not exist.
   Played completely straight until it isn't.
   ══════════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg, canvas { display: block; max-width: 100%; }
button, input { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

:root {
  --void:      #050507;
  --void-2:    #0b0b10;
  --panel:     rgba(255, 255, 255, 0.026);
  --line:      rgba(255, 255, 255, 0.085);
  --line-soft: rgba(255, 255, 255, 0.045);
  --paper:     #f2f2f4;
  --dim:       #a3a3ad;
  --faint:     #6a6a76;
  --accent:    #14ffb0;
  --accent-d:  #0cc481;
  --violet:    #8b7cff;
  --hot:       #ff6b8a;
  --glow:      rgba(20, 255, 176, 0.26);

  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pop: cubic-bezier(0.34, 1.56, 0.64, 1);
  --max: 1180px;
  color-scheme: dark;
}

body {
  background: var(--void);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

/* ── the field ─────────────────────────────────────────────────────────── */
#field {
  position: fixed; inset: 0; z-index: 0; width: 100%; height: 100%;
  pointer-events: none;
}

.aurora {
  position: fixed; inset: -25vh -15vw; z-index: 0; pointer-events: none;
  background:
    radial-gradient(46vw 40vw at 18% 12%, rgba(20,255,176,.13), transparent 62%),
    radial-gradient(42vw 36vw at 84% 68%, rgba(139,124,255,.12), transparent 60%),
    radial-gradient(38vw 32vw at 50% 110%, rgba(20,255,176,.09), transparent 58%);
  filter: blur(30px);
  animation: drift 40s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to   { transform: translate3d(3%, 2%, 0) scale(1.14); }
}

.grain {
  position: fixed; inset: 0; z-index: 80; pointer-events: none;
  opacity: .035; mix-blend-mode: overlay;
  background-image: var(--grain); background-size: 170px 170px;
}

.vignette {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 85% at 50% 45%, transparent 42%, rgba(0,0,0,.72) 100%);
}

/* ── cursor ────────────────────────────────────────────────────────────── */
.cur, .cur-ring { position: fixed; top: 0; left: 0; z-index: 95; pointer-events: none; border-radius: 50%; }
.cur { width: 6px; height: 6px; background: var(--accent); margin: -3px 0 0 -3px; }
.cur-ring {
  width: 30px; height: 30px; margin: -15px 0 0 -15px;
  border: 1px solid rgba(20,255,176,.42);
  transition: width .3s var(--ease), height .3s var(--ease), margin .3s var(--ease),
              border-color .3s, background-color .3s;
}
body.magnet .cur-ring {
  width: 52px; height: 52px; margin: -26px 0 0 -26px;
  background: rgba(20,255,176,.08); border-color: var(--accent);
}
body:not(.fine-pointer) .cur, body:not(.fine-pointer) .cur-ring { display: none; }

/* ── chrome ────────────────────────────────────────────────────────────── */
.rail-top {
  position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 70;
  background: linear-gradient(90deg, var(--accent), var(--violet));
  transform: scaleX(0); transform-origin: 0 50%;
  box-shadow: 0 0 16px var(--glow);
}

.bar {
  position: fixed; inset: 0 0 auto 0; z-index: 69;
  display: flex; align-items: center; gap: 14px;
  padding: 15px clamp(16px, 4vw, 34px);
  font-size: 13px;
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(5,5,7,.82), rgba(5,5,7,0));
}
.bar__logo { display: flex; align-items: center; gap: 9px; font-weight: 650; letter-spacing: -.02em; }
.bar__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 var(--glow); animation: ping 2.6s ease-out infinite;
}
@keyframes ping { 0%{box-shadow:0 0 0 0 rgba(20,255,176,.55)} 70%{box-shadow:0 0 0 10px rgba(20,255,176,0)} 100%{box-shadow:0 0 0 0 rgba(20,255,176,0)} }
.bar__spacer { flex: 1; }
.bar__meta { font-family: var(--mono); font-size: 11px; color: var(--faint); letter-spacing: .06em; }
@media (max-width: 700px) { .bar__meta { display: none; } }

/* ── layout ────────────────────────────────────────────────────────────── */
.wrap { position: relative; z-index: 3; width: min(100% - 2.6rem, var(--max)); margin-inline: auto; }
section { position: relative; z-index: 3; }
.act { padding: clamp(90px, 15vh, 170px) 0; }
.act--tall { min-height: 100svh; display: flex; align-items: center; }

.tag {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 13px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--panel);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .17em;
  text-transform: uppercase; color: var(--dim);
}
.tag i { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); font-style: normal; }

h1, h2, h3 { font-weight: 800; letter-spacing: -.045em; line-height: .95; text-wrap: balance; }
h1 { font-size: clamp(3.4rem, 15vw, 12rem); }
h2 { font-size: clamp(2.2rem, 6.4vw, 5.2rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); letter-spacing: -.03em; line-height: 1.1; }

em.s {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  letter-spacing: -.01em; color: var(--accent);
}
.lede { font-size: clamp(16.5px, 1.55vw, 21px); line-height: 1.6; color: var(--dim); max-width: 60ch; text-wrap: pretty; }
.lede strong { color: var(--paper); font-weight: 600; }
.mono { font-family: var(--mono); }
.small { font-size: 12.5px; color: var(--faint); line-height: 1.55; }

/* ── word-by-word reveal ───────────────────────────────────────────────── */
.rv { display: inline-block; overflow: hidden; vertical-align: bottom; }
.rv > span {
  display: inline-block; transform: translateY(110%);
  transition: transform .95s var(--ease); transition-delay: var(--d, 0ms);
}
.is-in .rv > span, .rv.is-in > span { transform: none; }

.fade { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0ms); }
.js .is-in .fade, .js .fade.is-in { opacity: 1; transform: none; }

/* ── hero ──────────────────────────────────────────────────────────────── */
.hero { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: 110px 0 60px; }
.hero h1 { margin: 26px 0 0; }
.hero h1 .dot { color: var(--accent); }
.hero .lede { margin: 26px auto 0; text-align: center; }
.hero__row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }

.ticker {
  margin-top: 54px; display: flex; gap: 0; flex-wrap: wrap; justify-content: center;
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
.ticker div { padding: 16px clamp(14px, 3vw, 34px); border-right: 1px solid var(--line-soft); }
.ticker div:last-child { border-right: 0; }
.ticker b { display: block; font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.ticker span { display: block; margin-top: 7px; font-family: var(--mono); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--faint); }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--faint);
}
.scroll-cue i { width: 1px; height: 34px; background: linear-gradient(var(--accent), transparent); animation: drop 2s var(--ease) infinite; }
@keyframes drop { 0%{transform:scaleY(0);transform-origin:top} 45%{transform:scaleY(1);transform-origin:top} 55%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ── buttons ───────────────────────────────────────────────────────────── */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px; text-decoration: none;
  font-size: 15px; font-weight: 650; letter-spacing: -.01em;
  transition: transform .25s var(--ease), box-shadow .25s, background-color .25s, border-color .25s;
}
.btn--go { background: var(--accent); color: #04120c; box-shadow: 0 16px 46px -16px var(--glow); }
.btn--go:hover { transform: translateY(-2px); box-shadow: 0 22px 60px -16px var(--glow); }
.btn--go::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.5) 50%, transparent 62%);
  transform: translateX(-130%); animation: sweep 4.4s var(--ease) infinite;
}
@keyframes sweep { 0%,60%{transform:translateX(-130%)} 100%{transform:translateX(130%)} }
.btn--ghost { border: 1px solid var(--line); color: var(--paper); }
.btn--ghost:hover { border-color: var(--accent); transform: translateY(-2px); }
.btn--big { padding: 18px 36px; font-size: 16.5px; }

/* ── panels ────────────────────────────────────────────────────────────── */
.panel {
  border: 1px solid var(--line); border-radius: 18px; padding: clamp(20px, 3vw, 34px);
  background: linear-gradient(165deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.grid { display: grid; gap: 14px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.split { display: grid; gap: clamp(28px, 5vw, 70px); grid-template-columns: 1fr 1fr; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ── spec sheet ────────────────────────────────────────────────────────── */
.spec div {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 15px 0; border-bottom: 1px solid var(--line-soft);
}
.spec div:last-child { border-bottom: 0; }
.spec dt { color: var(--faint); font-size: 13.5px; }
.spec dd { margin: 0; font-family: var(--mono); font-size: 14px; color: var(--accent); text-align: right; }

/* ── steps ─────────────────────────────────────────────────────────────── */
.step { position: relative; padding: 26px 22px; }
.step__n {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em; color: var(--accent);
}
.step h3 { margin: 14px 0 10px; }
.step p { font-size: 14.5px; color: var(--dim); line-height: 1.6; }

/* ── testimonials ──────────────────────────────────────────────────────── */
.quote { padding: 24px 22px; }
.quote p { font-family: var(--serif); font-size: clamp(1.15rem, 1.9vw, 1.5rem); line-height: 1.32; letter-spacing: -.01em; }
.quote footer { margin-top: 16px; font-size: 12.5px; color: var(--faint); }
.quote .stars { color: var(--accent); font-size: 12px; letter-spacing: .18em; margin-bottom: 13px; }

/* ── comparison ────────────────────────────────────────────────────────── */
.vs { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.vs th, .vs td { padding: 15px 16px; text-align: left; border-bottom: 1px solid var(--line-soft); }
.vs th { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); font-weight: 500; }
.vs th:nth-child(2) { color: var(--accent); }
.vs td:first-child { color: var(--dim); }
.vs td:nth-child(2) { color: var(--accent); font-weight: 600; }
.vs td:nth-child(3) { color: var(--faint); }
.vs tr:last-child td { border-bottom: 0; }
.vs-wrap { overflow-x: auto; }

/* ── quiz ──────────────────────────────────────────────────────────────── */
.quiz { max-width: 720px; }
.quiz__bar { height: 3px; border-radius: 2px; background: rgba(255,255,255,.08); overflow: hidden; margin-bottom: 24px; }
.quiz__bar i { display: block; height: 100%; width: 0; background: var(--accent); transition: width .5s var(--ease); }
.quiz__step { font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); }
.quiz__q { font-size: clamp(1.45rem, 3.2vw, 2.3rem); font-weight: 800; letter-spacing: -.035em; line-height: 1.08; margin: 14px 0 24px; }
.quiz__opts { display: grid; gap: 10px; }
.quiz__opt {
  display: flex; align-items: center; gap: 14px; width: 100%; text-align: left;
  padding: 16px 18px; border-radius: 13px; border: 1px solid var(--line);
  background: rgba(255,255,255,.02); font-size: 15px;
  transition: transform .22s var(--ease), border-color .22s, background-color .22s;
}
.quiz__opt:hover { border-color: var(--accent); background: rgba(20,255,176,.05); transform: translateX(5px); }
.quiz__opt i {
  flex: 0 0 auto; width: 25px; height: 25px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line); font-style: normal; font-family: var(--mono); font-size: 11px; color: var(--faint);
}
.quiz__opt:hover i { border-color: var(--accent); color: var(--accent); }
.quiz__out { display: none; }
.quiz.done .quiz__out { display: block; animation: pop .7s var(--pop) both; }
.quiz.done .quiz__live { display: none; }
@keyframes pop { from { opacity: 0; transform: scale(.94) translateY(14px); } }
.quiz__score { font-size: clamp(3rem, 9vw, 6rem); font-weight: 800; letter-spacing: -.05em; line-height: 1; color: var(--accent); }

/* ── popup ─────────────────────────────────────────────────────────────── */
.pop {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 22px;
  background: rgba(3,3,5,.76); -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px);
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.pop.on { opacity: 1; visibility: visible; }
/* .pop sets display:grid, which would otherwise beat the UA's [hidden] rule */
.pop[hidden] { display: none; }
.pop__card {
  position: relative; width: min(100%, 470px); text-align: center;
  padding: clamp(28px, 5vw, 42px); border-radius: 22px;
  border: 1px solid var(--line); background: linear-gradient(165deg, #14141c, #0a0a0e);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,.9);
  transform: scale(.9) translateY(18px); transition: transform .5s var(--pop);
}
.pop.on .pop__card { transform: none; }
.pop__x { position: absolute; top: 14px; right: 16px; color: var(--faint); font-size: 20px; line-height: 1; padding: 6px; }
.pop__x:hover { color: var(--paper); }
.pop h3 { font-size: clamp(1.5rem, 4vw, 2.1rem); margin-bottom: 12px; }
.pop p { color: var(--dim); font-size: 14.5px; line-height: 1.55; }
.pop__form { display: flex; gap: 8px; margin: 22px 0 14px; }
.pop__form input {
  flex: 1; padding: 13px 16px; border-radius: 999px; min-width: 0;
  border: 1px solid var(--line); background: rgba(255,255,255,.04); color: var(--paper);
}
.pop__form input::placeholder { color: var(--faint); }
.pop__form input:focus { outline: 0; border-color: var(--accent); }
.pop__no { display: block; margin-top: 4px; font-size: 12.5px; color: var(--faint); text-decoration: underline; text-underline-offset: 3px; width: 100%; }
.pop__no:hover { color: var(--dim); }

/* ── live introspection panel ──────────────────────────────────────────── */
.code {
  font-family: var(--mono); font-size: 11.5px; line-height: 1.85; color: var(--dim);
  background: rgba(0,0,0,.42); border: 1px solid var(--line-soft); border-radius: 12px;
  padding: 16px; overflow-x: auto; max-height: 340px; overflow-y: auto;
}
.code b { color: var(--accent); font-weight: 500; }
.code u { text-decoration: none; color: var(--violet); }
.tree { font-family: var(--mono); font-size: 12px; line-height: 2; }
.tree div { color: var(--dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tree b { color: var(--accent); font-weight: 500; }

/* ── marquee ───────────────────────────────────────────────────────────── */
.marq { overflow: hidden; padding: 12px 0; border-block: 1px solid var(--line-soft);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marq__t { display: flex; gap: 42px; width: max-content; animation: slide 38s linear infinite; }
.marq--rev .marq__t { animation-direction: reverse; }
.marq:hover .marq__t { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marq__i { display: flex; align-items: center; gap: 11px; white-space: nowrap;
  font-family: var(--mono); font-size: 12px; letter-spacing: .07em; color: var(--faint); }
.marq__i::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); opacity: .7; }

/* ── scarcity ──────────────────────────────────────────────────────────── */
.clock { display: flex; gap: 10px; justify-content: center; margin-top: 22px; }
.clock div { min-width: 78px; padding: 14px 10px; border-radius: 13px; border: 1px solid var(--line); background: var(--panel); }
.clock b { display: block; font-family: var(--mono); font-size: clamp(1.5rem, 3.6vw, 2.2rem); font-weight: 500; letter-spacing: -.02em; color: var(--accent); }
.clock span { display: block; margin-top: 5px; font-family: var(--mono); font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }

/* ── the reveal ────────────────────────────────────────────────────────── */
.reveal { background: linear-gradient(180deg, transparent, rgba(20,255,176,.05) 40%, transparent); }
.receipt { max-width: 660px; margin-inline: auto; }
.receipt__row {
  display: flex; align-items: baseline; gap: 14px; padding: 13px 0;
  border-bottom: 1px dashed var(--line); font-family: var(--mono); font-size: 13.5px;
}
.receipt__row span:first-child { color: var(--dim); }
.receipt__row i { flex: 1; border-bottom: 1px dotted var(--line); font-style: normal; }
.receipt__row b { color: var(--accent); font-weight: 500; font-variant-numeric: tabular-nums; }
.receipt__total { border-bottom: 0; padding-top: 20px; font-size: 15px; }
.receipt__total b { color: var(--paper); }

/* ── pricing ───────────────────────────────────────────────────────────── */
.price { display: grid; gap: 16px; grid-template-columns: 1.15fr 1fr 1fr; align-items: stretch; }
@media (max-width: 960px) { .price { grid-template-columns: 1fr; } }
.plan { display: flex; flex-direction: column; }
.plan--hero { border-color: rgba(20,255,176,.36); box-shadow: 0 0 0 1px rgba(20,255,176,.1), 0 30px 80px -40px var(--glow); }
.plan__k { font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); }
.plan__p { margin: 16px 0 4px; font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -.045em; line-height: 1; }
.plan__p sup { font-size: .42em; font-weight: 600; vertical-align: super; letter-spacing: 0; opacity: .75; }
.plan__per { font-size: 13px; color: var(--faint); }
.plan__list { list-style: none; padding: 22px 0 0; margin: 22px 0 0; border-top: 1px solid var(--line-soft); display: grid; gap: 11px; flex: 1; }
.plan__list li { display: flex; gap: 11px; font-size: 14px; color: var(--dim); line-height: 1.5; }
.plan__list li::before { content: "→"; color: var(--accent); flex: 0 0 auto; }
.plan .btn { margin-top: 24px; justify-content: center; }
.plan--hero .plan__p { color: var(--accent); }
.badge {
  display: inline-block; padding: 4px 10px; border-radius: 999px; margin-bottom: 4px;
  background: rgba(20,255,176,.13); border: 1px solid rgba(20,255,176,.4);
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
}

/* ── faq ───────────────────────────────────────────────────────────────── */
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 0; font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 600; letter-spacing: -.015em; display: flex; gap: 16px; align-items: baseline;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; margin-left: auto; color: var(--accent); font-weight: 400; font-size: 20px; transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 0 22px; color: var(--dim); font-size: 14.5px; line-height: 1.65; max-width: 68ch; }

/* ── the escape hatch ──────────────────────────────────────────────────────
   Appears once the reader is committed enough to deserve a shortcut, and
   retires itself when the calendar is on screen.                            */
.skip {
  position: fixed; right: clamp(14px, 2.5vw, 26px); bottom: clamp(14px, 2.5vw, 26px);
  z-index: 75; display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 999px; text-decoration: none;
  font-size: 13.5px; font-weight: 600; letter-spacing: -.01em;
  color: var(--paper); border: 1px solid var(--line);
  background: rgba(12, 12, 18, .82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px -18px rgba(0,0,0,.9);
  opacity: 0; transform: translateY(16px) scale(.96); pointer-events: none;
  transition: opacity .5s var(--ease), transform .5s var(--pop), border-color .3s;
}
.skip.on { opacity: 1; transform: none; pointer-events: auto; }
.skip:hover { border-color: var(--accent); }
.skip__d {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 var(--glow); animation: ping 2.6s ease-out infinite;
}
@media (max-width: 560px) { .skip { padding: 11px 16px; font-size: 12.5px; } }

/* ── cal.com embed ─────────────────────────────────────────────────────────
   The widget renders in its own iframe; this just keeps it from fighting the
   panel's rounded corners on small screens.                                 */
#cal-inline { border-radius: 12px; }
#cal-inline iframe { border-radius: 12px; }

/* ── footer ────────────────────────────────────────────────────────────── */
.foot { padding: 60px 0 50px; border-top: 1px solid var(--line-soft); text-align: center; }
.foot p { font-size: 12.5px; color: var(--faint); line-height: 1.8; }
.foot a { color: var(--dim); }

/* ── reduced motion ────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .rv > span { transform: none; }
  .fade { opacity: 1; transform: none; }
  .aurora { animation: none; }
}
