:root {
  color-scheme: dark;
  --ink: #050706;
  --ink-2: #0b100d;
  --panel: #111712;
  --panel-2: #18211b;
  --cream: #f7edd8;
  --slate: #a9a28e;
  --stone: #746f61;
  --jade: #2fd990;
  --gold: #d8bb73;
  --rose: #ef806e;
  --amber: #eac66b;
  --wire: rgba(238, 222, 178, .13);
  --wire-hi: rgba(238, 222, 178, .25);
  --glass-bg: rgba(247, 237, 216, .045);
  --glass-bg-2: rgba(247, 237, 216, .07);
  --glass-edge: rgba(247, 237, 216, .16);
  --glass-sheen: rgba(255, 255, 255, .10);
  --blur: 22px;
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 30px;
  --r-xl: 42px;
  --r-pill: 999px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .45);
  --t: 260ms cubic-bezier(.22, .61, .36, 1);
  --t-fluid: 520ms cubic-bezier(.22, .61, .36, 1);
  --gb-s: #050706;
  --gb-e: #111712;
  --gm: hard-light;
  --gs: 80%;
  --gv: 1;
  --c1: 47, 217, 144;
  --c2: 216, 187, 115;
  --c3: 247, 237, 216;
  --c4: 17, 23, 18;
  --c5: 5, 7, 6;
  --page-pad: max(clamp(18px, 5vw, 72px), env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: clip;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Jost', 'Aptos', 'Segoe UI', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.bp-gradient-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  background: linear-gradient(var(--gb-s), var(--gb-e));
  transition: opacity .4s ease;
}

.bp-gradient-filter { position: absolute; width: 0; height: 0; overflow: hidden; }
.bp-gradient-blobs { position: relative; width: 100%; height: 100%; opacity: .55; filter: url(#bp-goo) blur(40px); }
.bp-gradient-blob { position: absolute; border-radius: 50%; mix-blend-mode: var(--gm); }
.bp-gradient-blob:nth-child(1) { width: var(--gs); height: var(--gs); top: calc(50% - var(--gs) / 2); left: calc(50% - var(--gs) / 2); background: radial-gradient(circle, rgba(var(--c1), .8) 0%, rgba(var(--c1), 0) 50%); animation: blobVertical calc(30s / var(--gv)) ease-in-out infinite; }
.bp-gradient-blob:nth-child(2) { width: var(--gs); height: var(--gs); top: calc(50% - var(--gs) / 2); left: calc(50% - var(--gs) / 2); background: radial-gradient(circle, rgba(var(--c2), .8) 0%, rgba(var(--c2), 0) 50%); transform-origin: calc(50% - 400px) center; animation: blobCircle calc(20s / var(--gv)) linear reverse infinite; }
.bp-gradient-blob:nth-child(3) { width: var(--gs); height: var(--gs); top: calc(50% - var(--gs) / 2 + 200px); left: calc(50% - var(--gs) / 2 - 500px); background: radial-gradient(circle, rgba(var(--c3), .8) 0%, rgba(var(--c3), 0) 50%); transform-origin: calc(50% + 400px) center; animation: blobCircle calc(40s / var(--gv)) linear infinite; }
.bp-gradient-blob:nth-child(4) { width: var(--gs); height: var(--gs); top: calc(50% - var(--gs) / 2); left: calc(50% - var(--gs) / 2); background: radial-gradient(circle, rgba(var(--c4), .8) 0%, rgba(var(--c4), 0) 50%); transform-origin: calc(50% - 200px) calc(50% + 100px); animation: blobHorizontal calc(40s / var(--gv)) ease-in-out infinite; }
.bp-gradient-blob:nth-child(5) { width: calc(var(--gs) * 2); height: calc(var(--gs) * 2); top: calc(50% - var(--gs)); left: calc(50% - var(--gs)); background: radial-gradient(circle, rgba(var(--c5), .8) 0%, rgba(var(--c5), 0) 50%); transform-origin: calc(50% - 800px) calc(50% + 200px); animation: blobCircle calc(20s / var(--gv)) ease-in-out infinite; }

@keyframes blobVertical { 0%, 100% { transform: translateY(-50%); } 50% { transform: translateY(50%); } }
@keyframes blobCircle { to { transform: rotate(360deg); } }
@keyframes blobHorizontal { 0%, 100% { transform: translate(-50%, -10%); } 50% { transform: translate(50%, 10%); } }

.waitlist-header,
main,
.waitlist-footer { position: relative; z-index: 1; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { min-width: 0; font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }

h1, h2, h3, legend {
  margin: 0;
  font-family: 'Libre Bodoni', Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.01em;
}

p { margin-top: 0; }

:focus-visible {
  outline: 2px solid var(--jade);
  outline-offset: 4px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: .7rem 1rem;
  border-radius: var(--r-pill);
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  transition: top var(--t);
}

.skip-link:focus { top: 1rem; }

.glass {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-edge);
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  box-shadow: inset 0 1px 0 var(--glass-sheen), inset 0 -1px 0 rgba(0, 0, 0, .25), var(--shadow);
  backdrop-filter: blur(var(--blur)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(150%);
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(150deg, rgba(255, 255, 255, .09), transparent 36%);
}

.glass > * { position: relative; z-index: 1; }

.label {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 1.55rem;
  border: 1px solid var(--glass-edge);
  border-radius: var(--r-pill);
  background: var(--glass-bg-2);
  color: var(--cream);
  box-shadow: inset 0 1px 0 var(--glass-sheen);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform var(--t), border-color var(--t), background var(--t), box-shadow var(--t), opacity var(--t);
  touch-action: manipulation;
}

.btn:hover { transform: translateY(-2px); border-color: var(--wire-hi); box-shadow: inset 0 1px 0 var(--glass-sheen), 0 14px 34px rgba(0, 0, 0, .4); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .52; cursor: wait; transform: none; }

.btn-jade {
  border-color: rgba(47, 217, 144, .5);
  background: linear-gradient(135deg, rgba(47, 217, 144, .97), rgba(47, 217, 144, .78));
  color: #04140c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4), 0 12px 30px rgba(47, 217, 144, .2);
  font-weight: 600;
}

.btn-quiet { color: var(--slate); }

.waitlist-header {
  position: relative;
  z-index: 20;
  width: 100%;
  padding: calc(18px + env(safe-area-inset-top, 0px)) var(--page-pad) 0;
}

.waitlist-header__inner {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: .35rem .65rem .35rem .95rem;
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--ink) 66%, transparent);
  box-shadow: inset 0 1px 0 var(--glass-sheen), 0 16px 48px rgba(0, 0, 0, .26);
}

.brand { display: inline-flex; align-items: center; min-height: 48px; }
.brand img { width: 122px; height: auto; }

.header-context {
  display: none;
  color: var(--slate);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.quiet-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: .5rem .85rem;
  border-radius: var(--r-pill);
  color: var(--slate);
  font-size: .83rem;
  font-weight: 500;
  transition: color var(--t), background var(--t);
}

.quiet-link:hover { background: var(--glass-bg-2); color: var(--cream); }

.waitlist-hero {
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  max-width: 1360px;
  min-height: calc(100svh - 90px);
  margin: 0 auto;
  padding: clamp(42px, 6vh, 78px) var(--page-pad) clamp(76px, 9vw, 124px);
}

.waitlist-hero__content { max-width: 650px; }

.waitlist-hero h1 {
  max-width: 100%;
  font-size: clamp(3rem, 11.7vw, 5.65rem);
  text-wrap: balance;
}

.headline-line { display: block; }
.waitlist-hero h1 em {
  color: var(--gold);
  font-weight: 400;
  background: linear-gradient(105deg, var(--gold), var(--amber) 46%, var(--cream) 54%, var(--gold));
  background-size: 230% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: waitlistShimmer 9s ease-in-out infinite;
}

@keyframes waitlistShimmer { 0%, 62%, 100% { background-position: 115% center; } 82% { background-position: -40% center; } }

.waitlist-hero__lead {
  max-width: 46ch;
  margin: 1.7rem 0 1.8rem;
  color: color-mix(in srgb, var(--cream) 84%, var(--slate));
  font-size: clamp(1.02rem, 2.1vw, 1.2rem);
}

.waitlist-hero__promise {
  max-width: 55ch;
  margin-bottom: 1.8rem;
  padding-left: 1rem;
  border-left: 1px solid var(--gold);
  color: var(--slate);
}

.waitlist-hero__note {
  max-width: 46ch;
  margin: .95rem 0 0;
  color: color-mix(in srgb, var(--slate) 84%, var(--cream));
  font-size: .82rem;
}

.waitlist-hero__media {
  min-width: 0;
  max-width: 620px;
  justify-self: end;
  width: 100%;
}

.hero-photo {
  min-width: 0;
  margin: 0;
}

.hero-photo__frame {
  overflow: hidden;
  border-radius: calc(var(--r-xl) - 8px);
  background: var(--panel);
}

.hero-photo__frame img {
  width: 100%;
  height: clamp(400px, 60vh, 620px);
  object-fit: cover;
  object-position: var(--waitlist-image-x, 50%) var(--waitlist-image-y, 50%);
  transform: scale(var(--waitlist-image-scale, 1));
  transform-origin: var(--waitlist-image-x, 50%) var(--waitlist-image-y, 50%);
}

.hero-photo figcaption {
  display: grid;
  grid-template-columns: minmax(150px, .78fr) minmax(0, 1.22fr);
  gap: 1.25rem;
  align-items: start;
  padding: 1.15rem .85rem .75rem;
  text-align: left;
}

.hero-photo figcaption strong {
  color: var(--cream);
  font-family: 'Libre Bodoni', Georgia, serif;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 400;
  line-height: 1.15;
}

.hero-photo figcaption span {
  color: var(--slate);
  font-size: .82rem;
  line-height: 1.5;
}

.hero-photo--main {
  width: 100%;
  padding: .5rem;
  border-radius: var(--r-xl);
  background: color-mix(in srgb, var(--ink) 54%, transparent);
}

.application-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--page-pad) clamp(90px, 12vw, 160px);
  scroll-margin-top: 24px;
}

.application-intro {
  max-width: 760px;
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.application-intro h2, .success-screen h2 {
  font-size: clamp(2.25rem, 7vw, 4.7rem);
  text-wrap: balance;
}

.application-intro > p:last-child { max-width: 58ch; margin: 1.2rem auto 0; color: var(--slate); }

.wizard {
  max-width: 1160px;
  min-height: 600px;
  margin: 0 auto;
  scroll-margin-top: 24px;
  background: linear-gradient(145deg, rgba(247, 237, 216, .06), rgba(5, 7, 6, .34));
}

.wizard-loading {
  display: grid;
  min-height: 600px;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(2rem, 6vw, 5rem);
  color: var(--slate);
}

.wizard-loading__copy { display: grid; gap: .8rem; }
.wizard-loading__copy .label { margin: 0; }
.wizard-loading__copy strong {
  color: var(--cream);
  font-family: 'Libre Bodoni', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.08;
}

.wizard-loading__copy > span:last-child { max-width: 32ch; }

.wizard-loading__skeleton {
  display: grid;
  gap: .9rem;
  align-content: center;
}

.wizard-loading__skeleton span {
  display: block;
  height: 76px;
  border: 1px solid var(--wire);
  border-radius: var(--r-md);
  background: linear-gradient(110deg, rgba(247, 237, 216, .025) 20%, rgba(247, 237, 216, .09) 38%, rgba(247, 237, 216, .025) 56%);
  background-size: 220% 100%;
  animation: loadingSweep 1.9s cubic-bezier(.22, .61, .36, 1) infinite;
}

.wizard-loading__skeleton span:nth-child(3) { width: 82%; }
.wizard-loading__skeleton span:nth-child(4) { width: 62%; }

@keyframes loadingSweep { to { background-position-x: -220%; } }

.wizard-load-error {
  display: grid;
  min-height: 520px;
  place-content: center;
  justify-items: start;
  gap: 1rem;
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem);
}

.wizard-load-error h3 { font-size: clamp(2rem, 5vw, 3.5rem); }
.wizard-load-error p { max-width: 48ch; color: var(--slate); }

.wizard-layout { display: grid; min-height: inherit; }

.wizard-progress {
  padding: 1.5rem;
  border-bottom: 1px solid var(--wire);
  background: rgba(5, 7, 6, .28);
}

.progress-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .85rem; }
.progress-meta strong { font-size: .83rem; font-weight: 500; }
.progress-meta span { color: var(--slate); font-size: .78rem; }

.progress-track { height: 3px; overflow: hidden; border-radius: var(--r-pill); background: var(--wire); }

.progress-track__bar {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--jade), var(--gold));
  box-shadow: 0 0 18px rgba(47, 217, 144, .35);
  transition: width var(--t-fluid);
}

.progress-list { display: none; margin: 2rem 0 0; padding: 0; list-style: none; }

.progress-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: .8rem;
  align-items: center;
  width: 100%;
  min-height: 52px;
  padding: .45rem .55rem;
  border: 0;
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--stone);
  text-align: left;
}

.progress-step__number {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--wire);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 500;
}

.progress-step__text b { display: block; color: inherit; font-size: .82rem; font-weight: 500; }
.progress-step__text small { display: block; margin-top: .05rem; color: inherit; font-size: .68rem; }
.progress-step.is-current { background: var(--glass-bg-2); color: var(--cream); }
.progress-step.is-current .progress-step__number { border-color: var(--jade); color: var(--jade); box-shadow: 0 0 0 4px rgba(47, 217, 144, .08); }
.progress-step.is-complete { color: var(--slate); cursor: pointer; }
.progress-step.is-complete .progress-step__number { border-color: rgba(47, 217, 144, .5); background: rgba(47, 217, 144, .1); color: var(--jade); }

.wizard-main { min-width: 0; padding: clamp(1.35rem, 5vw, 3.6rem); }

.error-summary {
  margin-bottom: 1.6rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(239, 128, 110, .5);
  border-radius: var(--r-sm);
  background: rgba(239, 128, 110, .08);
}

.error-summary h3 { font-family: 'Jost', sans-serif; font-size: .92rem; font-weight: 600; }
.error-summary ul { margin: .55rem 0 0; padding-left: 1.2rem; color: color-mix(in srgb, var(--rose) 82%, var(--cream)); font-size: .86rem; }
.error-summary a { text-decoration: underline; text-underline-offset: 3px; }

.step-panel { animation: stepIn .48s cubic-bezier(.22, .61, .36, 1) both; }

@keyframes stepIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.step-kicker { margin-bottom: .55rem; color: var(--gold); font-size: .72rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; }
.step-panel > h2 { max-width: 18ch; font-size: clamp(2rem, 7vw, 3.45rem); }
.step-lead { max-width: 62ch; margin: 1rem 0 2rem; color: var(--slate); }

.form-section { margin: 0 0 2.4rem; padding: 0; border: 0; }
.form-section > legend { width: 100%; margin-bottom: 1rem; font-size: clamp(1.35rem, 4.6vw, 1.85rem); }
.form-section__hint { margin: -.45rem 0 1rem; color: var(--slate); font-size: .88rem; }
.required-mark { color: var(--gold); }

.choice-grid { display: grid; gap: .75rem; }
.choice-grid--breeds { gap: 1rem; }

.choice-card { position: relative; display: block; min-width: 0; }
.choice-card > input { position: absolute; width: 1px; height: 1px; opacity: 0; }

.choice-card__surface {
  display: flex;
  min-height: 58px;
  align-items: flex-start;
  gap: .75rem;
  padding: .95rem 1rem;
  border: 1px solid var(--wire);
  border-radius: var(--r-sm);
  background: rgba(5, 7, 6, .34);
  color: var(--slate);
  cursor: pointer;
  transition: border-color var(--t), background var(--t), color var(--t), transform var(--t), box-shadow var(--t);
}

.choice-card__surface::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: .15rem;
  border: 1px solid var(--wire-hi);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--ink-2);
  transition: background var(--t), border-color var(--t);
}

.choice-card--check .choice-card__surface::before { border-radius: 5px; }
.choice-card__copy { min-width: 0; }
.choice-card__copy b { display: block; color: var(--cream); font-size: .92rem; font-weight: 500; }
.choice-card__copy small { display: block; margin-top: .15rem; color: inherit; font-size: .78rem; line-height: 1.4; }
.choice-card > input:checked + .choice-card__surface { border-color: rgba(47, 217, 144, .55); background: rgba(47, 217, 144, .075); color: color-mix(in srgb, var(--slate) 75%, var(--cream)); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 12px 30px rgba(0, 0, 0, .18); }
.choice-card > input:checked + .choice-card__surface::before { border-color: var(--jade); background: var(--jade); }
.choice-card > input:focus-visible + .choice-card__surface { outline: 2px solid var(--jade); outline-offset: 3px; }
.choice-card:hover .choice-card__surface { transform: translateY(-1px); border-color: var(--wire-hi); }

.breed-choice__surface { display: grid; min-height: 100%; padding: 0; overflow: hidden; }
.breed-choice__surface::before { position: absolute; top: 1rem; left: 1rem; z-index: 2; margin: 0; background-color: rgba(5, 7, 6, .8); }
.breed-choice__media { position: relative; height: 175px; overflow: hidden; }
.breed-choice__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(5, 7, 6, .85)); }
.breed-choice__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--waitlist-image-x, 50%) var(--waitlist-image-y, 50%);
  transform: scale(var(--waitlist-image-scale, 1));
  transform-origin: var(--waitlist-image-x, 50%) var(--waitlist-image-y, 50%);
  transition: transform var(--t-fluid);
}
.choice-card:hover .breed-choice__media img { transform: scale(calc(var(--waitlist-image-scale, 1) * 1.025)); }
.breed-choice__body { padding: 1rem; }
.breed-choice__head { display: flex; align-items: flex-start; justify-content: space-between; gap: .8rem; }
.breed-choice__head b { font-family: 'Libre Bodoni', serif; font-size: 1.35rem; font-weight: 400; }
.price-display { display: inline-flex; flex-direction: column; gap: .12rem; min-width: 0; line-height: 1.35; }
.price-display [data-price-base] { color: var(--stone); font-size: .66rem; font-weight: 400; }
.breed-choice__price { align-items: flex-end; max-width: 58%; color: var(--gold); font-size: .72rem; font-weight: 500; text-align: right; }
.breed-choice__features { display: flex; flex-wrap: wrap; gap: .35rem; margin: .7rem 0 0; padding: 0; list-style: none; }
.breed-choice__features li { padding: .25rem .55rem; border: 1px solid var(--wire); border-radius: var(--r-pill); color: var(--slate); font-size: .68rem; }
.breed-choice--both .breed-choice__surface { min-height: 92px; align-content: center; padding: 1rem 1rem 1rem 3.3rem; }
.breed-choice--both .breed-choice__surface::before { top: 50%; transform: translateY(-50%); }
.breed-choice--both b { font-size: 1rem; }

.litter-panels { display: grid; gap: 1rem; margin: 1.2rem 0 2.2rem; }
.litter-card { display: grid; overflow: hidden; border: 1px solid var(--wire); border-radius: var(--r-md); background: rgba(5, 7, 6, .4); }
.litter-card__image { min-height: 190px; background: var(--ink-2); }
.litter-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--waitlist-image-x, 50%) var(--waitlist-image-y, 50%);
  transform: scale(var(--waitlist-image-scale, 1));
  transform-origin: var(--waitlist-image-x, 50%) var(--waitlist-image-y, 50%);
}
.litter-card__body { padding: 1.15rem; }
.litter-card__status { display: inline-flex; align-items: center; gap: .4rem; color: var(--jade); font-size: .68rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.litter-card__status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; }
.litter-card h3 { margin: .55rem 0 .65rem; font-size: 1.6rem; }
.litter-card__meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; margin: 1rem 0 0; }
.litter-card__meta div { padding-top: .65rem; border-top: 1px solid var(--wire); }
.litter-card__meta dt { color: var(--stone); font-size: .65rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.litter-card__meta dd { margin: .2rem 0 0; color: var(--cream); font-size: .86rem; }
.litter-card__meta .price-display { align-items: flex-start; }

.notice {
  margin: 1.2rem 0 2rem;
  padding: 1rem 1.1rem;
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  background: rgba(216, 187, 115, .055);
  color: var(--slate);
  font-size: .86rem;
}

.included-box { margin-bottom: 2.3rem; padding: 1.15rem; border: 1px solid var(--wire); border-radius: var(--r-md); background: rgba(5, 7, 6, .3); }
.included-box h3 { font-size: 1.35rem; }
.included-box p { margin: .7rem 0 0; color: var(--slate); font-size: .86rem; }
.included-list { display: grid; gap: .55rem; margin: .85rem 0 0; padding: 0; list-style: none; }
.included-list li { position: relative; padding-left: 1.35rem; color: var(--slate); font-size: .85rem; }
.included-list li::before { content: "✓"; position: absolute; left: 0; color: var(--jade); }

.field-grid { display: grid; gap: 1rem; }
.field { min-width: 0; }
.mt-field { margin-top: 1rem; }
.field label, .field-label { display: block; margin-bottom: .45rem; color: color-mix(in srgb, var(--cream) 84%, var(--slate)); font-size: .84rem; font-weight: 500; }
.field-hint { margin: .4rem 0 0; color: var(--stone); font-size: .73rem; }

.input, .select, .textarea {
  width: 100%;
  min-height: 52px;
  padding: .8rem .9rem;
  border: 1px solid var(--wire);
  border-radius: var(--r-sm);
  outline: 0;
  background: rgba(5, 7, 6, .55);
  color: var(--cream);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}

.textarea { min-height: 136px; resize: vertical; }
.input::placeholder, .textarea::placeholder { color: color-mix(in srgb, var(--stone) 84%, transparent); }
.input:hover, .select:hover, .textarea:hover { border-color: var(--wire-hi); }
.input:focus, .select:focus, .textarea:focus { border-color: var(--jade); box-shadow: 0 0 0 3px rgba(47, 217, 144, .1); background: rgba(5, 7, 6, .72); }
.input[aria-invalid="true"], .select[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(239, 128, 110, .08); }

.phone-grid { display: grid; gap: .65rem; }
.field-error { min-height: 1.2em; margin: .4rem 0 0; color: color-mix(in srgb, var(--rose) 86%, var(--cream)); font-size: .76rem; }
.field-error:empty { min-height: 0; margin: 0; }

.conditional-panel { margin-top: 1rem; padding: 1rem; border: 1px solid var(--wire); border-radius: var(--r-sm); background: rgba(5, 7, 6, .28); }

.selection-counter { margin: -.45rem 0 .85rem; color: var(--stone); font-size: .76rem; }

.community-card {
  margin-bottom: 2.4rem;
  padding: clamp(1.2rem, 4vw, 1.8rem);
  border: 1px solid rgba(47, 217, 144, .28);
  border-radius: var(--r-md);
  background: linear-gradient(145deg, rgba(47, 217, 144, .07), rgba(216, 187, 115, .045));
}

.community-card__eyebrow { color: var(--jade); font-size: .7rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
.community-card h3 { max-width: 22ch; margin: .5rem 0 .8rem; font-size: clamp(1.55rem, 5vw, 2.15rem); }
.community-card > p { color: var(--slate); }

.review-card { margin: 0 0 2.2rem; border: 1px solid var(--wire); border-radius: var(--r-md); background: rgba(5, 7, 6, .32); }
.review-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1rem; align-items: center; padding: .9rem 1rem; border-bottom: 1px solid var(--wire); }
.review-row:last-child { border-bottom: 0; }
.review-row > div { min-width: 0; }
.review-row dt { color: var(--stone); font-size: .68rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.review-row dd { margin: .18rem 0 0; overflow-wrap: anywhere; color: var(--cream); font-size: .88rem; }
.edit-link { min-width: 44px; min-height: 44px; border: 0; border-radius: var(--r-pill); background: transparent; color: var(--gold); font-size: .78rem; cursor: pointer; }
.edit-link:hover { background: var(--glass-bg-2); }

.consent-list { display: grid; gap: .8rem; margin-bottom: 2.3rem; }
.consent-item { position: relative; }
.consent-item input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.consent-item label { display: grid; grid-template-columns: 22px 1fr; gap: .75rem; align-items: start; padding: .95rem; border: 1px solid var(--wire); border-radius: var(--r-sm); color: var(--slate); cursor: pointer; }
.consent-item label::before { content: ""; width: 22px; height: 22px; border: 1px solid var(--wire-hi); border-radius: 6px; background: var(--ink-2); box-shadow: inset 0 0 0 5px var(--ink-2); }
.consent-item input:checked + label { border-color: rgba(47, 217, 144, .4); color: color-mix(in srgb, var(--slate) 75%, var(--cream)); }
.consent-item input:checked + label::before { border-color: var(--jade); background: var(--jade); }
.consent-item input:focus-visible + label { outline: 2px solid var(--jade); outline-offset: 3px; }

.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.form-status { margin-bottom: 1rem; padding: .9rem 1rem; border: 1px solid rgba(239, 128, 110, .5); border-radius: var(--r-sm); background: rgba(239, 128, 110, .08); color: color-mix(in srgb, var(--rose) 85%, var(--cream)); font-size: .84rem; }

.wizard-actions { display: flex; flex-direction: column-reverse; gap: .75rem; align-items: stretch; padding-top: 1.3rem; border-top: 1px solid var(--wire); }
.wizard-actions .btn { width: 100%; }

.success-screen {
  max-width: 920px;
  margin: 0 auto clamp(90px, 12vw, 160px);
  padding: clamp(2rem, 7vw, 5rem) var(--page-pad);
  text-align: center;
}

.success-mark { display: grid; width: 72px; height: 72px; place-items: center; margin: 0 auto 1.5rem; border: 1px solid rgba(47, 217, 144, .42); border-radius: 50%; background: rgba(47, 217, 144, .08); color: var(--jade); font-family: 'Libre Bodoni', serif; font-size: 1.25rem; box-shadow: 0 0 36px rgba(47, 217, 144, .14); }
.success-screen > p { max-width: 62ch; margin: 1rem auto 0; color: var(--slate); }
.success-reference { color: var(--gold) !important; font-size: .82rem; }
.success-actions { display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem; }
.success-disclaimer { padding-top: 1.3rem; border-top: 1px solid var(--wire); color: var(--stone) !important; font-size: .78rem; }

.waitlist-footer {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--page-pad) max(2.5rem, calc(1rem + env(safe-area-inset-bottom, 0px)));
  border-top: 1px solid var(--wire);
  color: var(--stone);
  font-size: .78rem;
  text-align: center;
}

.waitlist-footer p { margin: 0; }
.waitlist-footer nav { display: flex; gap: 1rem; }
.waitlist-footer a:hover { color: var(--cream); }
.noscript { max-width: 780px; margin: 1rem auto; padding: 1.2rem; color: var(--slate); }

@media (min-width: 560px) {
  .header-context { display: inline; }
  .choice-grid--two, .field-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .phone-grid { grid-template-columns: minmax(160px, .7fr) minmax(0, 1.3fr); }
  .wizard-actions { flex-direction: row; justify-content: space-between; align-items: center; }
  .wizard-actions .btn { width: auto; min-width: 160px; }
  .success-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .waitlist-footer { flex-direction: row; text-align: left; }
}

@media (min-width: 760px) {
  .choice-grid--breeds { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .breed-choice--both { grid-column: 1 / -1; }
  .litter-card { grid-template-columns: minmax(190px, .72fr) minmax(0, 1.28fr); }
  .choice-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 960px) {
  .waitlist-hero { grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); padding-top: clamp(36px, 5vh, 68px); padding-bottom: clamp(48px, 7vh, 80px); }
  .waitlist-hero h1 { font-size: clamp(3.25rem, 4.05vw, 4.4rem); }
  .headline-line { white-space: nowrap; }
  .wizard-layout { grid-template-columns: 250px minmax(0, 1fr); }
  .wizard-progress { padding: 2rem 1.4rem; border-right: 1px solid var(--wire); border-bottom: 0; }
  .progress-meta, .progress-track { display: none; }
  .progress-list { display: grid; gap: .3rem; }
  .wizard-main { min-height: 720px; }
}

@media (min-width: 1180px) {
  .wizard-layout { grid-template-columns: 280px minmax(0, 1fr); }
  .wizard-progress { padding: 2.5rem 1.7rem; }
  .wizard-main { padding: 4rem 5rem; }
}

@media (max-width: 420px) {
  .waitlist-header { padding-inline: 12px; }
  .waitlist-header__inner { padding-left: .7rem; }
  .brand img { width: 102px; }
  .quiet-link { padding-inline: .65rem; font-size: .76rem; }
  .waitlist-hero h1 { font-size: clamp(2.75rem, 13.5vw, 3.5rem); }
  .hero-photo figcaption { grid-template-columns: 1fr; gap: .45rem; }
  .wizard-main { padding-inline: 1rem; }
  .choice-card__surface { padding: .85rem; }
  .breed-choice__head { flex-direction: column; gap: .35rem; }
  .breed-choice__price { align-items: flex-start; max-width: none; text-align: left; }
  .litter-card__meta { grid-template-columns: 1fr; }
  .input, .select, .textarea { font-size: 1rem; }
  .waitlist-footer nav { flex-wrap: wrap; justify-content: center; }
}

@media (min-width: 700px) and (max-width: 959px) and (max-height: 600px) and (orientation: landscape) {
  .waitlist-hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
    gap: 2rem;
    min-height: auto;
    padding-block: 3rem 5rem;
  }
  .waitlist-hero h1 { font-size: clamp(3rem, 6.8vw, 4.25rem); }
  .hero-photo__frame img { height: 390px; }
  .hero-photo figcaption { display: none; }
}

@media (max-width: 720px) {
  .waitlist-hero { min-height: auto; padding-top: 3.25rem; }
  .waitlist-hero__media { max-width: none; justify-self: stretch; }
  .hero-photo__frame img { height: clamp(420px, 112vw, 580px); }
  .wizard-loading { min-height: 520px; grid-template-columns: 1fr; align-content: center; }
  .wizard-loading__skeleton span { height: 58px; }
}

@media (max-width: 680px) {
  .bp-gradient-blobs { opacity: .38; filter: blur(48px); }
  .bp-gradient-blob:nth-child(4), .bp-gradient-blob:nth-child(5) { display: none; }
}

@media (hover: none) {
  .btn:hover,
  .choice-card:hover .choice-card__surface { transform: none; }
  .choice-card:hover .breed-choice__media img { transform: scale(var(--waitlist-image-scale, 1)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .waitlist-hero h1 em { background: none; -webkit-text-fill-color: var(--gold); }
}

@media (prefers-reduced-transparency: reduce) {
  .glass { background: var(--panel); backdrop-filter: none; -webkit-backdrop-filter: none; }
}
