.pending { visibility: hidden; }
.restoringReturn { scroll-behavior: auto !important; }

.proofItems { justify-content: flex-end; }
.proofItems > span { gap: 10px; }
.proofItems .check {
  display: inline-grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
}

.examMark { font-weight: 850; }
.examMark .markerStroke { bottom: -.18em; height: .38em; }
.examMark .markerStroke path { stroke-width: 9; }

.invitationMoment {
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  padding-block: 110px 130px;
}

.invitationMoment .momentCopy { align-self: center; }
.invitationMoment .momentCopy h2 { font-size: clamp(40px, 3.6vw, 52px); }

.invitationStudio {
  position: relative;
  display: grid;
  width: min(100%, 650px);
  justify-self: end;
}

.channelChooser {
  position: relative;
  z-index: 7;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.channelChooser button {
  position: relative;
  min-height: 90px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-content: center;
  column-gap: 11px;
  padding: 15px 18px;
  border: 1px solid rgba(36, 18, 69, .11);
  border-radius: 24px;
  color: rgba(36, 18, 69, .58);
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 10px 28px rgba(36, 18, 69, .06);
  cursor: pointer;
  text-align: left;
  transition: transform .42s cubic-bezier(.2, .8, .2, 1), color .25s ease, background .25s ease, box-shadow .3s ease;
}

.channelChooser button:first-child { transform: rotate(-2deg) scale(.97); transform-origin: right bottom; }
.channelChooser button:last-child { transform: rotate(2deg) scale(.97); transform-origin: left bottom; }

.channelChooser button > span {
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: rgba(36, 18, 69, .45);
  font: 900 16px/1 "DM Sans", sans-serif;
}

.channelChooser button strong { align-self: end; font-size: 17px; line-height: 1.15; }
.channelChooser button small { align-self: start; font: 750 10px/1.4 "DM Sans", sans-serif; }

.channelChooser button.isActive {
  z-index: 2;
  color: var(--ink);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 20px 46px rgba(36, 18, 69, .14);
}

.channelChooser button:first-child.isActive { transform: rotate(-1.2deg) translateY(-5px) scale(1.025); }
.channelChooser button:last-child.isActive { transform: rotate(1.2deg) translateY(-5px) scale(1.025); }
.channelChooser button.isActive > span { background: linear-gradient(145deg, var(--purple), var(--pink)); }

.channelCardStage {
  position: relative;
  min-height: 350px;
  perspective: 1200px;
}

.channelCard {
  position: absolute;
  inset: 0 18px;
  padding: 28px;
  border: 1px solid rgba(36, 18, 69, .1);
  border-radius: 34px;
  box-shadow: 0 36px 90px rgba(36, 18, 69, .16);
  transition: opacity .38s ease, transform .52s cubic-bezier(.2, .8, .2, 1), filter .38s ease;
}

.emailChannelCard { background: linear-gradient(145deg, #fffefd, #eefaf6); }
.smsChannelCard { background: linear-gradient(150deg, #e9f8f5, #d7ecf5 52%, #efdcf1); }

.invitationStudio[data-channel="email"] .emailChannelCard { z-index: 3; opacity: 1; transform: rotate(-1.4deg) translateX(0) translateY(0); filter: none; }
.invitationStudio[data-channel="email"] .smsChannelCard { z-index: 2; opacity: .32; transform: rotate(4deg) translateX(26px) translateY(15px) scale(.96); filter: saturate(.72); pointer-events: none; }
.invitationStudio[data-channel="sms"] .smsChannelCard { z-index: 3; opacity: 1; transform: rotate(1.4deg) translateX(0) translateY(0); filter: none; }
.invitationStudio[data-channel="sms"] .emailChannelCard { z-index: 2; opacity: .28; transform: rotate(-4deg) translateX(-26px) translateY(15px) scale(.96); filter: saturate(.72); pointer-events: none; }

.emailChrome {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: -4px 0 24px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(36, 18, 69, .08);
}

.emailChrome > span { width: 9px; height: 9px; border-radius: 50%; background: #f3a4ca; }
.emailChrome > span:nth-child(2) { background: #f1cb68; }
.emailChrome > span:nth-child(3) { background: #9bd9db; }
.emailChrome small { margin-left: auto; color: rgba(36, 18, 69, .42); font: 850 9px/1 "DM Sans", sans-serif; text-transform: uppercase; letter-spacing: .11em; }
.channelCard .messageHeader { margin-bottom: 20px; }
.channelCard .messageLogo { --practice-logo-safe-padding: 5px; }
.channelCard .messageSubject { display: block; margin-bottom: 14px; color: var(--practice-primary); font: 900 11px/1.4 "DM Sans", sans-serif; text-transform: uppercase; letter-spacing: .09em; }
.channelMessage { margin: 0; color: rgba(36, 18, 69, .75); font: 15px/1.6 "DM Sans", sans-serif; }
.messageActionPreview { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; padding: 15px 18px; border-radius: 16px; color: white; background: var(--purple); box-shadow: 0 12px 26px rgba(93, 17, 121, .16); font: 900 12px/1.2 "DM Sans", sans-serif; text-decoration: none; transition: transform .24s ease, box-shadow .24s ease, background .24s ease; }
.messageActionPreview:hover { transform: translateY(-2px); background: color-mix(in srgb, var(--purple) 86%, var(--pink)); box-shadow: 0 17px 34px rgba(93, 17, 121, .24); }
.messageActionPreview:focus-visible,
.smsPatientLink:focus-visible,
.patientDoor:focus-visible { outline: 4px solid color-mix(in srgb, var(--practice-accent) 82%, white); outline-offset: 4px; }

.smsPhoneTop { display: flex; justify-content: space-between; align-items: center; color: rgba(36, 18, 69, .5); font: 800 10px/1 "DM Sans", sans-serif; }
.smsPhoneTop strong { color: var(--ink); font-size: 12px; }
.smsRecipient { display: grid; justify-items: center; margin: 20px 0 28px; }
.smsRecipient [data-practice-logo] { width: 58px; height: 58px; margin-bottom: 8px; border-radius: 18px; box-shadow: 0 10px 24px rgba(36, 18, 69, .12); --practice-logo-font-size: 18px; --practice-logo-safe-padding: 5px; }
.smsRecipient strong { font-size: 14px; }
.smsRecipient small { color: rgba(36, 18, 69, .48); font: 750 10px/1.4 "DM Sans", sans-serif; }
.smsBubble { max-width: 88%; margin: 0; padding: 18px 20px; border-radius: 24px 24px 7px 24px; color: white; background: linear-gradient(145deg, var(--purple), color-mix(in srgb, var(--purple) 58%, var(--pink))); box-shadow: 0 14px 32px rgba(93, 17, 121, .2); font: 14px/1.55 "DM Sans", sans-serif; }
.smsPatientLink { color: white; font-weight: 900; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.smsPatientLink:hover { color: color-mix(in srgb, white 76%, var(--practice-accent)); }
.smsDelivered { display: block; margin-top: 8px; color: rgba(36, 18, 69, .4); font: 700 9px/1 "DM Sans", sans-serif; text-align: right; }

.channelBridge {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 13px;
  margin: 28px 0 18px;
  color: rgba(36, 18, 69, .46);
  font: 850 10px/1.3 "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
}

.channelBridge > span { height: 1px; background: linear-gradient(90deg, transparent, rgba(36, 18, 69, .16)); }
.channelBridge > span:last-child { background: linear-gradient(90deg, rgba(36, 18, 69, .16), transparent); }

.patientDoor {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 170px;
  padding: 18px 20px 18px 18px;
  overflow: hidden;
  border: 0;
  border-radius: 30px;
  color: var(--ink);
  background: transparent;
  box-shadow: 0 24px 62px rgba(36, 18, 69, .14);
  text-decoration: none;
  cursor: pointer;
  contain: paint;
  scroll-margin-top: 28px;
  transition: transform .32s cubic-bezier(.2, .8, .2, 1), box-shadow .32s ease;
}

.patientDoor::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 160%;
  aspect-ratio: 1;
  background: conic-gradient(from .1turn, var(--practice-primary), var(--aqua), var(--pink), #ffd36c, var(--practice-accent), var(--practice-primary));
  transform: translate(-50%, -50%) rotate(0turn);
  animation: patientDoorAurora 8s linear infinite paused;
}

.patientDoor::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 3px;
  border-radius: 27px;
  background: linear-gradient(118deg, rgba(255, 255, 255, .97), rgba(216, 245, 236, .94) 58%, rgba(238, 130, 199, .22));
}

.patientDoor > * { position: relative; z-index: 2; }
.patientDoor.isAuroraActive::before { animation-play-state: running; will-change: transform; }
.patientDoor:hover { transform: translateX(7px); box-shadow: 0 30px 76px rgba(36, 18, 69, .2); }
.patientDoor:hover .doorPreview { transform: rotate(0deg) scale(1.025); }
.patientDoor:hover .doorAction { transform: translateX(3px); background: linear-gradient(105deg, color-mix(in srgb, var(--practice-primary) 78%, var(--purple)), var(--pink)); }
.doorPreview { position: relative; height: 132px; overflow: hidden; border: 5px solid var(--ink); border-radius: 20px; background: var(--cream); box-shadow: 0 12px 28px rgba(36, 18, 69, .15); transform: rotate(-2deg); }
.doorPreview { transition: transform .3s cubic-bezier(.2, .8, .2, 1); }
.doorPreview > img { width: 100%; height: auto; transform: translateY(-1%); }
.doorBrowser { position: absolute; z-index: 3; top: 0; right: 0; left: 0; height: 18px; display: flex; align-items: center; gap: 4px; padding-left: 8px; background: var(--ink); }
.doorBrowser i { width: 4px; height: 4px; border-radius: 50%; background: rgba(255, 255, 255, .55); }
.doorCopy { display: grid; gap: 5px; }
.doorCopy small { display: flex; align-items: center; gap: 7px; color: var(--practice-primary); font: 900 9px/1 "DM Sans", sans-serif; text-transform: uppercase; letter-spacing: .1em; }
.doorCopy small i { width: 7px; height: 7px; border-radius: 50%; background: var(--practice-accent); box-shadow: 0 0 0 5px color-mix(in srgb, var(--practice-accent) 16%, transparent); }
.doorCopy strong { font-size: clamp(21px, 2.3vw, 30px); line-height: 1.05; }
.doorCopy > span { color: rgba(36, 18, 69, .56); font: 750 11px/1.45 "DM Sans", sans-serif; }
.doorAction { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 17px; border-radius: 999px; color: white; background: linear-gradient(105deg, var(--purple), color-mix(in srgb, var(--purple) 55%, var(--pink))); box-shadow: 0 12px 28px rgba(93, 17, 121, .2); font: 900 11px/1.1 "DM Sans", sans-serif; white-space: nowrap; transition: transform .24s ease, background .24s ease; }
.doorAction b { font-size: 19px; line-height: 1; }

@keyframes patientDoorAurora {
  to { transform: translate(-50%, -50%) rotate(1turn); }
}

.pageExitLeft main { animation: pageExitLeft .34s cubic-bezier(.55, 0, 1, .45) both; }
.pageEnterLeft main { animation: pageEnterLeft .48s cubic-bezier(.16, 1, .3, 1) both; }

.causalBridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: min(calc(100% - 40px), 860px);
  margin: 0 auto 76px;
  padding: 18px 24px;
  border: 1px solid color-mix(in srgb, var(--practice-primary) 18%, white);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 18px 48px rgba(36, 18, 69, .08);
  text-align: center;
}

.causalBridge > span { display: grid; gap: 3px; min-width: 0; }
.causalBridge small { color: rgba(36, 18, 69, .5); font: 850 9px/1.2 "DM Sans", sans-serif; text-transform: uppercase; letter-spacing: .1em; }
.causalBridge strong { color: var(--ink); font-size: clamp(14px, 1.7vw, 19px); line-height: 1.2; }
.causalBridge > b { flex: 0 0 42px; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: white; background: linear-gradient(135deg, var(--practice-primary), var(--pink)); box-shadow: 0 10px 24px rgba(93, 17, 121, .18); font-size: 22px; }

@keyframes pageExitLeft {
  to { opacity: .18; transform: translateX(-9vw) scale(.985); }
}

@keyframes pageEnterLeft {
  from { opacity: .18; transform: translateX(-8vw) scale(.985); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.decisionActions .airisButton {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-color: rgba(123, 214, 218, .58);
  color: var(--ink);
  background: var(--aqua);
  box-shadow: 0 14px 34px rgba(123, 214, 218, .16);
}

.decisionActions .airisButton:hover {
  border-color: white;
  color: var(--ink);
  background: color-mix(in srgb, var(--aqua) 88%, white);
}

.airisBenefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
}

.airisBenefits span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .07);
  font: 800 11px/1 "DM Sans", sans-serif;
}

.airisHumanHandoff {
  display: grid;
  gap: 12px;
  width: min(100%, 520px);
  padding: 16px;
  border: 1px solid rgba(155, 217, 219, .32);
  border-radius: 20px;
  color: white;
  background: rgba(155, 217, 219, .09);
  font: 13px/1.5 "DM Sans", sans-serif;
}

.airisHumanHandoff > strong { color: white; }
.airisHumanActions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.airisHumanActions a { text-decoration: none; }
.airisHumanPrimary {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--aqua);
  font-weight: 900;
}
.airisHumanIdentity { padding: 8px 4px; color: var(--aqua); font-weight: 800; }
.airisHumanActions a:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }
.airisClosed .airisHumanHandoff { width: 100%; margin-top: 12px; text-align: left; }

.founderDoor {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 42px;
  max-width: 980px;
  margin: 54px auto 0;
  padding: 31px;
  overflow: hidden;
  border-radius: 38px;
  color: var(--ink);
  background: transparent;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .28);
  contain: paint;
  scroll-margin-top: 28px;
}

.founderDoor::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 165%;
  aspect-ratio: 1;
  background: conic-gradient(from .08turn, var(--practice-primary), var(--aqua), var(--pink), #ffd36c, var(--practice-accent), var(--practice-primary));
  transform: translate(-50%, -50%) rotate(0turn);
  animation: patientDoorAurora 10s linear infinite paused;
}

.founderDoor::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 3px;
  border-radius: 35px;
  background:
    radial-gradient(circle at 8% 10%, color-mix(in srgb, var(--practice-accent) 26%, transparent), transparent 18rem),
    linear-gradient(125deg, rgba(255, 255, 255, .98), rgba(255, 248, 232, .97));
}

.founderDoor > * { position: relative; z-index: 2; }
.founderDoor.isAuroraActive::before { animation-play-state: running; will-change: transform; }

.founderPortrait {
  aspect-ratio: 1;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, .9);
  border-radius: 30px;
  background: var(--cream);
  box-shadow: 0 22px 52px rgba(36, 18, 69, .2);
  transform: rotate(-1.5deg);
}

.founderPortrait img { width: 100%; height: 100%; object-fit: cover; }
.founderDoorCopy .chapter { margin-bottom: 12px; color: var(--practice-primary); }
.founderDoorCopy h2 { margin-bottom: 14px; font-size: clamp(36px, 4.4vw, 58px); line-height: 1; }
.founderDoorCopy > p:not(.chapter) { max-width: 620px; color: rgba(36, 18, 69, .67); font: 15px/1.65 "DM Sans", sans-serif; }
.founderDoorCopy > p strong { color: var(--ink); }

.founderDoorActions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.founderContact {
  display: grid;
  gap: 4px;
  min-width: 0;
  min-height: 70px;
  align-content: center;
  padding: 13px 17px;
  border: 1px solid rgba(36, 18, 69, .12);
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 13px 30px rgba(36, 18, 69, .09);
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.founderContact span { font-size: 15px; font-weight: 950; }
.founderContact small { overflow-wrap: anywhere; color: rgba(36, 18, 69, .55); font: 10px/1.35 "DM Sans", sans-serif; }
.founderWhatsApp { color: white; border-color: transparent; background: linear-gradient(120deg, var(--purple), color-mix(in srgb, var(--purple) 58%, var(--pink))); }
.founderWhatsApp small { color: rgba(255, 255, 255, .7); }
.founderContact:hover { transform: translateY(-3px); box-shadow: 0 19px 40px rgba(36, 18, 69, .16); }
.founderEmail:hover { background: white; }
.founderContact:focus-visible,
.founderLinkedIn:focus-visible { outline: 4px solid color-mix(in srgb, var(--practice-accent) 72%, white); outline-offset: 3px; }

.founderLinkedIn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  color: var(--practice-primary);
  font: 850 12px/1.4 "DM Sans", sans-serif;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.founderLinkedIn span { font-size: 15px; }

.v2Capture,
.identityCapture {
  position: relative;
  display: grid;
  justify-items: center;
}

.captureLabel {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: -10px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 30px rgba(36, 18, 69, .14);
  font: 850 10px/1 "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: .09em;
  backdrop-filter: blur(14px);
}

.captureLabel::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ca474;
  box-shadow: 0 0 0 5px rgba(44, 164, 116, .13);
}

.v2Device,
.statePhone {
  position: relative;
  overflow: hidden;
  border: 6px solid #15101c;
  border-radius: 44px;
  background: #15101c;
  box-shadow: 0 42px 92px rgba(36, 18, 69, .24);
}

.v2Device img,
.stateFrame {
  display: block;
  width: 100%;
  height: auto;
}

.v2HeroDevice {
  width: min(100%, 370px);
  aspect-ratio: 1179 / 2210;
}

.heroCapture { transform: rotate(1.2deg); }
.heroCapture .v2Device { box-shadow: 0 48px 110px rgba(36, 18, 69, .28); }

.identityCapture {
  width: min(100%, 350px);
  justify-self: center;
}

.identityCapture .captureLabel {
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
}

.settingsDevice {
  width: 100%;
  aspect-ratio: 1179 / 1940;
}

.identityCapture > p {
  max-width: 330px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .7);
  font: 15px/1.6 "DM Sans", sans-serif;
  text-align: center;
}

.identityCapture > p strong { color: white; }

.stateDemo {
  display: grid;
  justify-items: center;
  width: min(100%, 520px);
  justify-self: end;
}

.statePhone {
  width: min(100%, 430px);
  aspect-ratio: 1179 / 2210;
  padding: 0;
  color: inherit;
  cursor: pointer;
  appearance: none;
  transform: rotate(.6deg);
}

.statePhone:focus-visible {
  outline: 5px solid color-mix(in srgb, var(--practice-primary) 55%, white);
  outline-offset: 6px;
}

.stateFrame {
  position: absolute;
  inset: 0;
  transition: opacity .48s ease, transform .62s cubic-bezier(.2, .75, .2, 1);
}

.stateFrameOut { opacity: 1; transform: scale(1); }
.stateFrameIn { opacity: 0; transform: scale(1.012); }

.stateDemo[data-state="in"] .stateFrameOut { opacity: 0; transform: scale(.992); }
.stateDemo[data-state="in"] .stateFrameIn { opacity: 1; transform: scale(1); }

.stateTapCue {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 3px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 34px rgba(36, 18, 69, .18);
  text-align: left;
  backdrop-filter: blur(16px);
}

.stateTapCue strong { font: 900 14px/1.2 "DM Sans", sans-serif; }
.stateTapCue small { color: rgba(36, 18, 69, .56); font: 700 10px/1.3 "DM Sans", sans-serif; }

.stateControls,
.themeControls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.stateControls button,
.themeControls button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(36, 18, 69, .13);
  border-radius: 999px;
  color: rgba(36, 18, 69, .62);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 8px 20px rgba(36, 18, 69, .06);
  cursor: pointer;
  font: 850 12px/1 "DM Sans", sans-serif;
}

.stateControls button:hover,
.themeControls button:hover { border-color: var(--practice-primary); color: var(--practice-primary); }

.stateControls button.isActive,
.themeControls button.isActive {
  border-color: var(--ink);
  color: white;
  background: var(--ink);
}

.stateReadout {
  margin-top: 14px;
  color: rgba(36, 18, 69, .63);
  font: 750 13px/1.4 "DM Sans", sans-serif;
  text-align: center;
}

.stateReadout strong { margin-right: 6px; color: var(--practice-primary); }

.themeLab {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
  margin-top: 104px;
  padding-top: 96px;
  border-top: 1px solid rgba(36, 18, 69, .11);
}

.themeCopy h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 4.6vw, 62px);
}

.themeStage {
  display: grid;
  justify-items: center;
}

.themeDevice {
  width: min(100%, 380px);
  aspect-ratio: 1179 / 2210;
  transform: rotate(-.7deg);
}

.themeDevice img { transition: opacity .42s ease-in-out; }
.themeDevice img.isSwitching { opacity: .08; }

.noGrid article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
}

.noGrid article > span {
  width: fit-content;
  margin-bottom: 20px;
  white-space: nowrap;
}

.noGrid strong {
  display: block;
  min-height: 2.5em;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.noGrid strong::after { content: none; }

.guaranteeSeal {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.guaranteeSeal::after { content: none; }
.guaranteeSeal strong { font-size: 60px; line-height: .76; }
.guaranteeSeal span {
  font: 900 11px/1 "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
}

@media (max-width: 980px) {
  .invitationMoment { grid-template-columns: 1fr; }
  .invitationStudio { width: min(100%, 680px); justify-self: center; }
  .themeLab { grid-template-columns: 1fr; }
  .stateDemo { justify-self: center; }
  .proofInner { align-items: center; text-align: center; }
  .proofItems { justify-content: center; }
}

@media (max-width: 640px) {
  .invitationMoment { gap: 42px; padding-block: 86px; }
  .invitationMoment .momentCopy { text-align: center; }
  .invitationMoment .momentCopy h2 { margin-inline: auto; font-size: 40px; }
  .channelChooser { gap: 8px; }
  .channelChooser button { min-height: 82px; grid-template-columns: 34px 1fr; padding: 13px 11px; border-radius: 20px; }
  .channelChooser button > span { width: 34px; height: 34px; border-radius: 11px; }
  .channelChooser button strong { font-size: 14px; }
  .channelChooser button small { font-size: 9px; }
  .channelCardStage { min-height: 360px; }
  .channelCard { inset-inline: 7px; padding: 22px 18px; border-radius: 28px; }
  .channelBridge { grid-template-columns: 1fr; }
  .channelBridge > span { display: none; }
  .patientDoor { grid-template-columns: 94px 1fr; gap: 13px; min-height: 188px; padding: 14px 12px; border-radius: 24px; }
  .patientDoor::after { border-radius: 21px; }
  .doorPreview { height: 108px; border-width: 4px; border-radius: 16px; }
  .doorCopy strong { font-size: 19px; }
  .doorCopy > span { font-size: 10px; }
  .doorAction { grid-column: 1 / -1; width: 100%; min-height: 48px; }
  .batmanVisual { min-height: 650px; }
  .v2HeroDevice { width: min(100%, 306px); }
  .identityCapture { width: min(100%, 310px); }
  .routineProofGrid { gap: 52px; }
  .causalBridge { width: 100%; gap: 12px; margin-bottom: 54px; padding: 16px 14px; border-radius: 26px; }
  .causalBridge > b { flex-basis: 34px; width: 34px; height: 34px; font-size: 18px; }
  .causalBridge strong { font-size: 13px; }
  .statePhone { width: min(100%, 340px); border-width: 5px; border-radius: 36px; }
  .themeLab { gap: 46px; margin-top: 76px; padding-top: 72px; }
  .themeDevice { width: min(100%, 320px); border-width: 5px; border-radius: 36px; }
  .stateTapCue { right: 12px; bottom: 12px; left: 12px; }
  .founderDoor { grid-template-columns: 1fr; gap: 24px; margin-top: 42px; padding: 25px 20px 28px; border-radius: 30px; text-align: center; }
  .founderDoor::after { border-radius: 27px; }
  .founderPortrait { width: 150px; justify-self: center; border-radius: 24px; }
  .founderDoorCopy h2 { font-size: 38px; }
  .founderDoorCopy > p:not(.chapter) { font-size: 14px; }
  .founderDoorActions { grid-template-columns: 1fr; }
  .founderContact { text-align: left; }
  .founderLinkedIn { justify-content: center; }
  .airisHumanActions { align-items: stretch; flex-direction: column; }
  .airisHumanActions a { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .channelChooser button,
  .channelCard,
  .patientDoor,
  .messageActionPreview,
  .smsPatientLink,
  .doorPreview,
  .doorAction,
  .founderContact { transition: none; animation: none; }
  .patientDoor::before,
  .founderDoor::before { animation: none; transform: translate(-50%, -50%) rotate(.125turn); }
  .stateFrame,
  .themeDevice img { transition: none; }
}

@media (forced-colors: active) {
  .patientDoor,
  .founderDoor { border: 3px solid LinkText; background: Canvas; }
  .patientDoor::before,
  .patientDoor::after,
  .founderDoor::before,
  .founderDoor::after { display: none; }
}
