/*! Cat Topia Availability Popup styles — Generated: 2026-05-07 */
:root {
  --ct-bg: #FBF7EF;
  --ct-card: #FFFDF8;
  --ct-card-2: #F6EFE0;
  --ct-text: #232820;
  --ct-text-soft: #6D7068;
  --ct-text-mute: #8E8E84;
  --ct-border: #E5DDD0;
  --ct-border-strong: #D4C8B1;
  --ct-primary: #4E5634;
  --ct-primary-hover: #3E4528;
  --ct-accent: #C7954A;
  --ct-accent-soft: #F0E2C7;
  --ct-error: #B5413A;
  --ct-error-bg: #F8E8E5;
  --ct-success: #4E7C4D;

  --ct-serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --ct-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --ct-radius-card: 28px;
  --ct-radius-md: 14px;
  --ct-radius-sm: 10px;
  --ct-shadow: 0 30px 80px -20px rgba(35, 28, 18, 0.35), 0 12px 30px -12px rgba(35, 28, 18, 0.18);
}

/* ─── palettes (driven by Tweaks) ─── */
.theme-olive {
  --ct-primary: #4E5634;
  --ct-primary-hover: #3E4528;
  --ct-accent: #C7954A;
  --ct-accent-soft: #F0E2C7;
}
.theme-cedar {
  --ct-primary: #8a4a26;
  --ct-primary-hover: #6e3a1d;
  --ct-accent: #4E5634;
  --ct-accent-soft: #ECE3CE;
}
.theme-charcoal {
  --ct-primary: #2A2E26;
  --ct-primary-hover: #161915;
  --ct-accent: #C7954A;
  --ct-accent-soft: #ECE3CE;
}
.theme-sage {
  --ct-primary: #5C7361;
  --ct-primary-hover: #455746;
  --ct-accent: #C7954A;
  --ct-accent-soft: #E7E9DB;
  --ct-bg: #F4EFE3;
}





/* ─── page backdrop ─── */





/* faux page header behind blur to add realism */









/* ─── modal frame ─── */
.ct-modalRoot {
  position: relative;
  z-index: 5;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 36px 16px 60px;
}
.ct-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 10, 0.42);
  backdrop-filter: blur(2px);
  z-index: -1;
}

.ct-card {
  position: relative;
  width: 100%;
  max-width: 720px;
  background: var(--ct-card);
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius-card);
  box-shadow: var(--ct-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 80px);
  animation: ctRise 480ms cubic-bezier(.22,.9,.27,1) both;
}
@keyframes ctRise {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: none; }
}
.ct-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(255,253,248,0.85);
  border: 1px solid var(--ct-border);
  color: var(--ct-text);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 4;
  transition: all 160ms ease;
}
.ct-close:hover { background: var(--ct-card-2); border-color: var(--ct-border-strong); }

/* ─── progress ─── */
.ct-progress {
  padding: 22px 32px 16px;
  border-bottom: 1px solid color-mix(in oklab, var(--ct-border) 60%, transparent);
  background: linear-gradient(180deg, var(--ct-card) 0%, color-mix(in oklab, var(--ct-card) 92%, var(--ct-card-2)) 100%);
}
.ct-progress__segs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.ct-progress__seg {
  height: 6px;
  background: var(--ct-border);
  border-radius: 999px;
  overflow: hidden;
}
.ct-progress__fill {
  height: 100%;
  background: var(--ct-primary);
  border-radius: 999px;
  transition: width 600ms cubic-bezier(.22,.9,.27,1);
}
.ct-progress__fill.is-pulsing {
  background: linear-gradient(90deg, var(--ct-primary) 0%, color-mix(in oklab, var(--ct-primary) 50%, var(--ct-accent)) 50%, var(--ct-primary) 100%);
  background-size: 200% 100%;
  animation: ctShift 1600ms linear infinite;
}
@keyframes ctShift { from { background-position: 0 0; } to { background-position: -200% 0; } }
.ct-progress__label {
  margin-top: 10px;
  font-size: 12px;
  color: var(--ct-text-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
.ct-progress__label strong { color: var(--ct-text); font-weight: 600; }
.ct-progress__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--ct-accent);
  animation: ctPulse 1.2s ease-in-out infinite;
}
@keyframes ctPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.7); } }

/* ─── card body scroll ─── */
.ct-cardBody {
  overflow-y: auto;
  padding: 24px 32px 28px;
  scrollbar-width: thin;
}
.ct-cardBody::-webkit-scrollbar { width: 8px; }
.ct-cardBody::-webkit-scrollbar-thumb { background: var(--ct-border); border-radius: 8px; }

.ct-slide {
  animation: ctSlideIn 480ms cubic-bezier(.22,.9,.27,1) both;
}
@keyframes ctSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* ─── header ─── */
.ct-head {
  text-align: left;
  margin-bottom: 22px;
}
.ct-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ct-accent);
  font-weight: 600;
  margin: 0 0 10px;
  display: inline-flex; align-items: center; gap: 8px;
}
.ct-eyebrow::before {
  content: ""; display: inline-block; width: 18px; height: 1px; background: currentColor;
}
.ct-title {
  font-family: var(--ct-serif);
  font-weight: 500;
  font-size: clamp(28px, 4.2vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--ct-text);
  text-wrap: pretty;
}
.ct-title em { font-style: italic; color: var(--ct-primary); }
.ct-card--minimal .ct-title { font-family: var(--ct-sans); font-weight: 600; letter-spacing: -0.02em; font-size: clamp(24px, 3.6vw, 32px); }
.ct-card--minimal .ct-title em { font-style: normal; }
.ct-card--display .ct-title { font-family: "Playfair Display", var(--ct-serif); font-weight: 600; }
.ct-sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ct-text-soft);
  margin: 0;
  max-width: 56ch;
}

/* ─── fields ─── */
.ct-fields { display: flex; flex-direction: column; gap: 22px; }
.ct-field { display: flex; flex-direction: column; gap: 10px; }
.ct-field__label {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ct-text);
}
.ct-field__num {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--ct-accent-soft);
  color: var(--ct-primary);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ct-serif);
}

.ct-input {
  display: flex; align-items: center; gap: 10px;
  background: var(--ct-card);
  border: 1.5px solid var(--ct-border);
  border-radius: var(--ct-radius-md);
  padding: 0 14px;
  height: 52px;
  transition: all 160ms ease;
}
.ct-input:hover { border-color: var(--ct-border-strong); }
.ct-input:focus-within {
  border-color: var(--ct-primary);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--ct-primary) 14%, transparent);
}
.ct-input.is-error { border-color: var(--ct-error); background: var(--ct-error-bg); }
.ct-input.is-valid { border-color: color-mix(in oklab, var(--ct-success) 50%, var(--ct-border)); }
.ct-input input {
  flex: 1; min-width: 0;
  border: 0; outline: none; background: transparent;
  font: inherit; font-size: 16px;
  color: var(--ct-text);
  letter-spacing: 0.01em;
}
.ct-input input::placeholder { color: var(--ct-text-mute); }
.ct-input__icon { color: var(--ct-text-soft); display: inline-flex; }
.ct-input__check {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--ct-success); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  animation: ctPop 240ms ease-out;
}
@keyframes ctPop { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.ct-error {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--ct-error);
  display: flex; align-items: center; gap: 6px;
}
.ct-error::before {
  content: "!"; width: 16px; height: 16px; border-radius: 999px;
  background: var(--ct-error); color: #fff; font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}

.ct-micro {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 13px;
  color: var(--ct-text-soft);
  line-height: 1.5;
  padding: 2px 2px 0;
}
.ct-micro__icon {
  margin-top: 2px;
  color: var(--ct-text-mute);
  flex-shrink: 0;
}
.ct-micro p { margin: 0; max-width: 60ch; }

/* ─── pills (cat count) ─── */
.ct-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.ct-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  border: 1.5px solid var(--ct-border);
  background: var(--ct-card);
  border-radius: var(--ct-radius-md);
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--ct-text);
  cursor: pointer;
  transition: all 180ms cubic-bezier(.22,.9,.27,1);
  position: relative;
}
.ct-pill:hover { border-color: var(--ct-border-strong); transform: translateY(-1px); }
.ct-pill__paw { color: var(--ct-text-mute); transition: color 180ms; }
.ct-pill.is-selected {
  border-color: var(--ct-primary);
  background: var(--ct-accent-soft);
  color: var(--ct-primary);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--ct-primary) 12%, transparent);
}
.ct-pill.is-selected .ct-pill__paw { color: var(--ct-primary); }

/* ─── radios (budget) ─── */
.ct-radios { display: flex; flex-direction: column; gap: 10px; }
.ct-radio {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 14px;
  align-items: center;
  text-align: left;
  padding: 16px 18px;
  border: 1.5px solid var(--ct-border);
  border-radius: var(--ct-radius-md);
  background: var(--ct-card);
  cursor: pointer;
  font: inherit;
  transition: all 180ms cubic-bezier(.22,.9,.27,1);
  position: relative;
}
.ct-radio:hover { border-color: var(--ct-border-strong); transform: translateY(-1px); }
.ct-radio__bullet {
  width: 22px; height: 22px;
  border: 2px solid var(--ct-border-strong);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ct-card);
  transition: all 200ms ease;
}
.ct-radio__dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--ct-primary);
  transform: scale(0);
  transition: transform 200ms cubic-bezier(.22,1.6,.36,1);
}
.ct-radio__body { display: flex; flex-direction: column; gap: 2px; }
.ct-radio__label { font-size: 16px; font-weight: 600; color: var(--ct-text); }
.ct-radio__sub { font-size: 13px; color: var(--ct-text-soft); }
.ct-radio__tag { color: var(--ct-text-mute); transition: color 200ms; }
.ct-radio.is-selected {
  border-color: var(--ct-primary);
  background: var(--ct-accent-soft);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--ct-primary) 12%, transparent);
}
.ct-radio.is-selected .ct-radio__bullet { border-color: var(--ct-primary); }
.ct-radio.is-selected .ct-radio__dot { transform: scale(1); }
.ct-radio.is-selected .ct-radio__tag { color: var(--ct-primary); }

/* ─── CTA ─── */
.ct-cta-wrap { margin-top: 26px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.ct-cta {
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: var(--ct-radius-md);
  background: var(--ct-primary);
  color: #FFFDF8;
  font: inherit;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 220ms cubic-bezier(.22,.9,.27,1);
  box-shadow: 0 12px 28px -10px color-mix(in oklab, var(--ct-primary) 60%, transparent);
}
.ct-cta:not(:disabled):hover {
  background: var(--ct-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 18px 36px -10px color-mix(in oklab, var(--ct-primary) 70%, transparent);
}
.ct-cta:not(:disabled):hover svg { transform: translateX(3px); }
.ct-cta svg { transition: transform 220ms; }
.ct-cta:disabled {
  background: color-mix(in oklab, var(--ct-primary) 30%, var(--ct-border));
  color: rgba(255,253,248,0.85);
  cursor: not-allowed;
  box-shadow: none;
}
.ct-cta--ghost {
  background: transparent;
  color: var(--ct-primary);
  border: 1.5px solid var(--ct-primary);
  box-shadow: none;
}
.ct-secure {
  font-size: 13px;
  color: var(--ct-text-soft);
  margin: 0;
  display: inline-flex; align-items: center; gap: 6px;
}
.ct-secure svg { color: var(--ct-text-mute); }
.ct-secondary {
  font-size: 12px; color: var(--ct-text-mute); margin: 0; text-align: center; max-width: 44ch; line-height: 1.45;
}
.ct-back {
  margin-top: 4px;
  background: none; border: 0;
  font: inherit; font-size: 13px;
  color: var(--ct-text-soft);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--ct-border-strong);
}
.ct-back:hover { color: var(--ct-text); }

/* ─── loading ─── */
.ct-loading { padding-top: 8px; padding-bottom: 8px; min-height: 460px; display: flex; flex-direction: column; }
.ct-loading__top { margin-bottom: 18px; }
.ct-loading__chip {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ct-text-soft);
  background: var(--ct-card-2);
  border: 1px solid var(--ct-border);
  border-radius: 999px;
  padding: 7px 12px 7px 10px;
  font-weight: 600;
}
.ct-spinner {
  width: 14px; height: 14px;
  border-radius: 999px;
  border: 2px solid var(--ct-border-strong);
  border-top-color: var(--ct-primary);
  animation: ctSpin 0.9s linear infinite;
}
@keyframes ctSpin { to { transform: rotate(360deg); } }
.ct-loading__h {
  font-family: var(--ct-serif);
  font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 14px 0 0;
  color: var(--ct-text);
  line-height: 1.15;
}
.ct-loading__h em { font-style: italic; color: var(--ct-primary); }

/* gallery — STACK layout */
.ct-gallery--stack {
  position: relative;
  height: 280px;
  margin: 18px auto 0;
  max-width: 460px;
  width: 100%;
}
.ct-gallery--stack .ct-gallery__card {
  position: absolute;
  left: 50%; top: 0;
  width: 86%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px -14px rgba(35,28,18,0.35);
  background: var(--ct-card);
  border: 1px solid var(--ct-border);
  transform-origin: bottom center;
  animation: ctStackIn 700ms cubic-bezier(.22,.9,.27,1) both;
  --rot: 0deg; --tx: -50%; --ty: 0px; --scale: 1;
}
.ct-gallery--stack .ct-gallery__card:nth-child(1) { --rot: -7deg; --tx: -64%; --ty: 18px; --scale: 0.92; z-index: 1; animation-delay: 0ms; }
.ct-gallery--stack .ct-gallery__card:nth-child(2) { --rot: 2deg; --tx: -50%; --ty: 0px; --scale: 1; z-index: 3; animation-delay: 120ms; }
.ct-gallery--stack .ct-gallery__card:nth-child(3) { --rot: 8deg; --tx: -36%; --ty: 14px; --scale: 0.92; z-index: 2; animation-delay: 240ms; }
@keyframes ctStackIn {
  from { opacity: 0; transform: translate(-50%, 40px) rotate(0) scale(.85); }
  to   { opacity: 1; transform: translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(var(--scale)); }
}
.ct-gallery__card img {
  display: block; width: 100%; height: 220px; object-fit: cover;
}
.ct-gallery__meta {
  padding: 10px 14px; font-size: 12px; color: var(--ct-text-soft);
  display: flex; align-items: center; gap: 8px;
  letter-spacing: 0.04em;
}
.ct-gallery__dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--ct-success);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--ct-success) 25%, transparent);
}

/* gallery — CAROUSEL */
.ct-carousel { margin-top: 18px; }
.ct-carousel__frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--ct-card-2);
  border: 1px solid var(--ct-border);
  box-shadow: 0 18px 36px -14px rgba(35,28,18,0.35);
}
.ct-carousel__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0; transform: scale(1.04);
  transition: opacity 700ms ease, transform 1500ms ease;
}
.ct-carousel__img.is-active { opacity: 1; transform: scale(1); }
.ct-carousel__dots {
  display: flex; justify-content: center; gap: 6px; margin-top: 12px;
}
.ct-carousel__dot { width: 22px; height: 4px; border-radius: 999px; background: var(--ct-border); transition: all 300ms; }
.ct-carousel__dot.is-active { background: var(--ct-primary); width: 36px; }

/* gallery — GRID */
.ct-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ct-grid__card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--ct-border);
  background: var(--ct-card);
  aspect-ratio: 4/5;
  animation: ctGridIn 600ms cubic-bezier(.22,.9,.27,1) both;
  animation-delay: calc(var(--i, 0) * 120ms);
  box-shadow: 0 8px 18px -10px rgba(35,28,18,0.25);
}
.ct-grid__card img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes ctGridIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.ct-shimmer {
  margin-top: 14px;
  padding-top: 4px;
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--ct-text-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ct-shimmer__bar {
  flex: 1; height: 3px; border-radius: 999px;
  background: linear-gradient(90deg, transparent 0, var(--ct-accent) 50%, transparent 100%);
  background-size: 50% 100%; background-repeat: no-repeat;
  animation: ctSweep 1.6s linear infinite;
  background-color: var(--ct-border);
}
@keyframes ctSweep { from { background-position: -50% 0; } to { background-position: 150% 0; } }

/* state info card */
.ct-stateCard {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  align-items: center;
  background: linear-gradient(180deg, var(--ct-card) 0%, var(--ct-card-2) 100%);
  border: 1px solid var(--ct-border);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 10px 22px -14px rgba(35,28,18,0.25);
  animation: ctSlideIn 500ms cubic-bezier(.22,.9,.27,1) 200ms both;
}
.ct-stateCard__map {
  position: relative;
  width: 84px; height: 84px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, color-mix(in oklab, var(--ct-primary) 18%, var(--ct-card-2)) 0%, var(--ct-card-2) 100%);
  border: 1px solid var(--ct-border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ct-stateCard__map::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--ct-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--ct-border) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.5;
}
.ct-stateCard__radar { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.ct-stateCard__ring {
  position: absolute;
  width: 24px; height: 24px;
  border-radius: 999px;
  border: 2px solid var(--ct-accent);
  opacity: 0.5;
  animation: ctRadar 1.8s ease-out infinite;
}
.ct-stateCard__ring--2 { animation-delay: 0.9s; }
@keyframes ctRadar {
  0%   { transform: scale(0.4); opacity: 0.7; }
  100% { transform: scale(2.4); opacity: 0; }
}
.ct-stateCard__pin {
  position: relative;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--ct-primary);
  color: #FFFDF8;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px -2px color-mix(in oklab, var(--ct-primary) 50%, transparent);
}
.ct-stateCard__body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.ct-stateCard__row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 4px 0;
  border-bottom: 1px dashed var(--ct-border);
}
.ct-stateCard__row--last { border-bottom: 0; }
.ct-stateCard__label {
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 600;
  color: var(--ct-text-mute);
}
.ct-stateCard__value {
  font-size: 13px; font-weight: 600; color: var(--ct-text);
  display: inline-flex; align-items: center; gap: 6px;
}
.ct-stateCard__value strong { font-family: var(--ct-serif); font-size: 16px; font-weight: 600; color: var(--ct-primary); }
.ct-stateCard__zip { color: var(--ct-text-mute); font-weight: 500; font-family: var(--ct-sans); font-size: 12px; }
.ct-stateCard__queue { color: var(--ct-success); }
.ct-stateCard__live {
  width: 7px; height: 7px; border-radius: 999px; background: var(--ct-success);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--ct-success) 25%, transparent);
  animation: ctPulse 1.2s ease-in-out infinite;
}
.ct-stateCard__check { color: var(--ct-success); }

.ct-stateCard--lean { align-items: center; }
.ct-stateCard--lean .ct-stateCard__body { gap: 4px; }
.ct-stateCard__lead {
  margin: 0;
  font-family: var(--ct-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ct-text);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.ct-stateCard__lead strong { color: var(--ct-primary); font-weight: 600; }
.ct-stateCard__benefit {
  margin: 0;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ct-success);
  letter-spacing: 0.01em;
}

@media (max-width: 540px) {
  .ct-stateCard { grid-template-columns: 64px 1fr; gap: 12px; padding: 12px; }
  .ct-stateCard__map { width: 64px; height: 64px; }
  .ct-stateCard__value strong { font-size: 14px; }
}

/* coordinator reveal */
.ct-reveal {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 0 4px;
  animation: ctRevealIn 600ms cubic-bezier(.22,.9,.27,1) both;
}
@keyframes ctRevealIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.ct-reveal__card {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, var(--ct-card) 0%, var(--ct-card-2) 100%);
  border: 1px solid var(--ct-border);
  border-radius: 22px;
  padding: 28px 24px 24px;
  text-align: center;
  box-shadow: 0 22px 40px -18px rgba(35,28,18,0.3);
  overflow: hidden;
}
.ct-reveal__halo {
  position: absolute; inset: -40% -10% auto -10%; height: 220px;
  background: radial-gradient(60% 70% at 50% 30%, color-mix(in oklab, var(--ct-accent) 35%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.ct-reveal__avatarwrap { position: relative; width: 124px; height: 124px; margin: 4px auto 14px; }
.ct-reveal__avatar {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 999px;
  border: 4px solid var(--ct-card);
  box-shadow: 0 14px 28px -10px rgba(35,28,18,0.35);
  animation: ctAvatarIn 700ms cubic-bezier(.22,1.6,.36,1) both;
}
@keyframes ctAvatarIn { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.ct-reveal__check {
  position: absolute; right: -2px; bottom: 6px;
  width: 32px; height: 32px;
  background: var(--ct-success); color: #fff;
  border-radius: 999px;
  border: 3px solid var(--ct-card);
  display: inline-flex; align-items: center; justify-content: center;
  animation: ctPop 360ms cubic-bezier(.22,1.6,.36,1) 200ms both;
}
.ct-reveal__badge {
  display: inline-block;
  margin: 0 0 8px;
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 700;
  color: var(--ct-primary);
  background: var(--ct-accent-soft);
  padding: 5px 10px;
  border-radius: 999px;
}
.ct-reveal__name {
  font-family: var(--ct-serif);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ct-text);
}
.ct-reveal__name span { color: var(--ct-text-soft); font-weight: 400; font-style: italic; }
.ct-reveal__sub {
  font-size: 14px; color: var(--ct-text-soft);
  line-height: 1.5; margin: 8px auto 18px;
  max-width: 42ch;
}
.ct-reveal__stats {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--ct-border-strong);
}
.ct-reveal__stats > div {
  display: flex; flex-direction: column; align-items: center;
}
.ct-reveal__stats strong {
  font-family: var(--ct-serif);
  font-size: 22px; font-weight: 600;
  color: var(--ct-primary);
  line-height: 1;
}
.ct-reveal__stats span {
  font-size: 11px;
  color: var(--ct-text-mute);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.ct-reveal__sep { width: 1px; height: 28px; background: var(--ct-border); }
.ct-reveal__continuing {
  margin-top: 16px;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ct-text-mute);
  display: inline-flex; align-items: center; gap: 10px;
  align-self: center;
  font-weight: 600;
}
.ct-mini-bar {
  width: 60px; height: 3px;
  background: var(--ct-border); border-radius: 999px; overflow: hidden;
}
.ct-mini-bar > span {
  display: block; height: 100%;
  background: var(--ct-primary);
  width: 0%;
  animation: ctMiniFill 4s linear forwards;
}
@keyframes ctMiniFill { to { width: 100%; } }

/* ─── Slide 2 ─── */
.ct-slide2 .ct-fields { margin-top: 18px; }
.ct-photoTop {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 220px;
  margin-bottom: 8px;
  border: 1px solid var(--ct-border);
  flex-shrink: 0;
}
.ct-photoTop img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
  background: var(--ct-card-2);
}
.ct-photoTop--s1 { height: 180px; margin-bottom: 18px; flex-shrink: 0; }
@media (min-height: 900px) { .ct-photoTop--s1 { height: 220px; } }
.ct-photoTop__pill {
  position: absolute; left: 14px; bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,253,248,0.94);
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ct-text);
  box-shadow: 0 8px 22px -10px rgba(0,0,0,0.4);
}
.ct-photoTop__pilldot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--ct-success);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--ct-success) 25%, transparent);
}
.ct-photoTop__chip {
  position: absolute; left: 14px; bottom: 14px;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,253,248,0.94);
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  box-shadow: 0 8px 22px -10px rgba(0,0,0,0.4);
}
.ct-photoTop__chip img {
  width: 36px; height: 36px; border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--ct-card);
}
.ct-photoTop__chiptop { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ct-text-soft); margin: 0; font-weight: 600; }
.ct-photoTop__chipname { font-family: var(--ct-serif); font-size: 16px; font-weight: 600; color: var(--ct-text); margin: 0; line-height: 1.1; }

.ct-slide2__intro {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: var(--ct-accent-soft);
  border-radius: var(--ct-radius-md);
  margin: 14px 0 6px;
  font-size: 14px;
  color: var(--ct-text);
  border: 1px solid color-mix(in oklab, var(--ct-accent) 25%, transparent);
}
.ct-slide2__intro svg { color: var(--ct-accent); flex-shrink: 0; }
.ct-slide2__intro strong { font-weight: 700; }

/* HOA */
.ct-hoa {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.ct-hoa__opt {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  height: 84px;
  border: 1.5px solid var(--ct-border);
  background: var(--ct-card);
  border-radius: var(--ct-radius-md);
  font: inherit;
  cursor: pointer;
  transition: all 180ms cubic-bezier(.22,.9,.27,1);
}
.ct-hoa__opt:hover { border-color: var(--ct-border-strong); transform: translateY(-1px); }
.ct-hoa__icon { color: var(--ct-text-mute); transition: color 200ms; }
.ct-hoa__label { font-weight: 600; color: var(--ct-text); }
.ct-hoa__opt.is-selected {
  border-color: var(--ct-primary);
  background: var(--ct-accent-soft);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--ct-primary) 12%, transparent);
}
.ct-hoa__opt.is-selected .ct-hoa__icon { color: var(--ct-primary); }

/* Confirm */
.ct-confirm { text-align: center; padding: 20px 8px 12px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.ct-confirm__check {
  width: 72px; height: 72px;
  border-radius: 999px;
  background: var(--ct-success);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  animation: ctPop 420ms cubic-bezier(.22,1.6,.36,1);
}
.ct-confirm .ct-cta { width: auto; padding: 0 28px; max-width: 280px; margin-top: 10px; }
.ct-confirm__divider {
  display: flex; align-items: center; gap: 12px;
  width: 100%; max-width: 380px;
  margin: 8px auto 0;
  color: var(--ct-text-mute);
  font-family: var(--ct-sans);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
}
.ct-confirm__divider::before,
.ct-confirm__divider::after {
  content: ''; flex: 1; height: 1px;
  background: color-mix(in oklab, var(--ct-text) 14%, transparent);
}
.ct-confirm__h2 {
  margin: 4px 0 0;
  font-family: var(--ct-serif);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.2;
  color: var(--ct-text);
  letter-spacing: -0.005em;
}
.ct-confirm__h2 em { font-style: italic; color: var(--ct-primary); }
.ct-card--display .ct-confirm__h2 { font-family: "Playfair Display", var(--ct-serif); font-weight: 600; }
.ct-card--minimal .ct-confirm__h2 { font-family: var(--ct-sans); font-weight: 600; letter-spacing: -0.015em; }
.ct-card--minimal .ct-confirm__h2 em { font-style: normal; }
.ct-confirm__altsub {
  max-width: 440px;
  margin: 2px 0 4px;
  font-family: var(--ct-sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ct-text-soft);
}
.ct-confirm__meetings {
  width: 100%;
  min-height: 660px;
  margin: 4px 0 6px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ct-card);
  box-shadow: 0 6px 24px -12px rgba(35,28,18,0.22);
  border: 1px solid color-mix(in oklab, var(--ct-text) 8%, transparent);
}
.ct-confirm__meetings iframe { display: block; width: 100% !important; border: 0 !important; }
@media (max-width: 560px) {
  .ct-confirm__meetings { min-height: 720px; border-radius: 10px; }
}

/* Reopen */



/* ─── responsive ─── */
@media (max-width: 760px) {
  
  
  
  
  .ct-modalRoot { padding: 14px 10px 28px; align-items: flex-start; }
  .ct-card { max-height: calc(100vh - 28px); border-radius: 22px; }
  .ct-progress { padding: 18px 20px 12px; }
  .ct-cardBody { padding: 18px 20px 22px; }
  .ct-title { font-size: 26px; }
  .ct-pills { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .ct-pill { height: 52px; font-size: 15px; }
  .ct-radio { padding: 14px 14px; gap: 10px; }
  .ct-radio__label { font-size: 15px; }
  .ct-photoTop { height: 160px; }
  .ct-photoTop--s1 { height: 140px; margin-bottom: 14px; }
  .ct-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .ct-gallery--stack { height: 250px; }
  .ct-gallery__card img { height: 190px; }
  .ct-reveal__avatarwrap { width: 104px; height: 104px; }
  .ct-reveal__stats { gap: 8px; }
  .ct-reveal__stats strong { font-size: 18px; }
  .ct-hoa { grid-template-columns: repeat(3, 1fr); }
  .ct-hoa__opt { height: 72px; }
  .ct-cta { height: 54px; }
}

@media (max-width: 380px) {
  .ct-pills { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
