* {
  box-sizing: border-box;
}

:root {
  --anchor-offset: 72px;
  /* Allow height/block-size to transition to and from `auto` (used by the
     FAQ open/close animation). Ignored by browsers that don't support it. */
  interpolate-size: allow-keywords;
}

html {
  color-scheme: light;
  background:
    radial-gradient(circle at 12% 8%, rgba(90, 230, 240, 0.16), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(220, 240, 90, 0.12), transparent 24%),
    linear-gradient(180deg, #e8f7fc 0%, #eefafd 42%, var(--page-background) 100%);
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset, 88px);
}

body {
  background: transparent;
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  position: relative;
}

body::before {
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

body.nav-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  /* JS pins the body at its current scroll offset (top: -scrollY) so the page
     behind the menu can't drift, and reserves the now-fixed header's height
     (padding-top) so nothing shifts. Both are cleared on close. */
  padding-top: var(--nav-lock-pad, 0px);
}

/* While the full-screen menu overlay is open, pin the header (the scroll
   lock above otherwise drops its sticky positioning) and drop its glass so
   the logo and close button sit cleanly on the solid overlay. The glass is
   untouched on desktop/tablet, where the menu never opens. */
body.nav-open .site-header {
  position: fixed;
  top: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

.site-header,
main,
.footer,
.mobile-nav {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

button,
label,
.faq-question,
.nav-links,
.header-cta,
.primary-button,
.footer {
  font-family: var(--ui-font);
}

.skip-link {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  color: var(--navy);
  font-family: var(--ui-font);
  font-weight: 700;
  left: 16px;
  padding: 10px 16px;
  position: absolute;
  top: -100px;
  transition: top 160ms ease;
  z-index: 50;
}

.skip-link:focus {
  top: 14px;
}

/* Header ------------------------------------------------------------------ */

.site-header {
  align-items: center;
  background: rgba(227, 244, 251, 0.32);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  transition:
    padding 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
  z-index: 40;
}

.site-header.is-scrolled {
  border-bottom-color: transparent;
  box-shadow: none;
  padding-bottom: 11px;
  padding-top: 11px;
}

.brand {
  align-items: center;
  display: inline-flex;
  line-height: 0;
  min-width: max-content;
}

.brand-lockup {
  display: block;
  height: 32px;
  width: auto;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2.6vw, 32px);
  justify-content: center;
}

/* Centre the nav in the header regardless of the brand on the left, so it stays
   visually centred now that there is no right-hand header button. */
@media (min-width: 901px) {
  .nav-links {
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
  }
}

.nav-links a {
  color: var(--navy);
  font-weight: 640;
  padding: 8px 0;
  position: relative;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.nav-links a::after {
  background: var(--navy);
  border-radius: 999px;
  bottom: 2px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0.38);
  transform-origin: left center;
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 100%;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Buttons ----------------------------------------------------------------- */

.header-cta,
.primary-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 0;
  border-radius: var(--radius-pill);
  box-shadow: none;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  transition:
    box-shadow 200ms ease,
    transform 200ms ease;
}

.header-cta:hover,
.primary-button:hover {
  background: var(--navy);
  box-shadow: 0 10px 20px rgba(20, 50, 70, 0.12);
  color: var(--white);
  transform: translateY(-2px);
}

.header-cta {
  border: 1.5px solid var(--navy);
  min-height: 44px;
}

.primary-button {
  min-height: 56px;
  padding: 0 30px;
}

.header-cta:focus-visible,
.primary-button:focus-visible,
.nav-links a:focus-visible,
.social-link:focus-visible,
.skip-link:focus-visible,
.nav-toggle:focus-visible,
.faq-question:focus-visible {
  box-shadow: 0 0 0 4px rgba(11, 142, 160, 0.2);
  outline: 2px solid rgba(11, 142, 160, 0.6);
  outline-offset: 3px;
}

/* Hamburger + mobile nav -------------------------------------------------- */

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 42px;
  justify-content: center;
  transition:
    background-color 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 42px;
}

.nav-toggle:hover {
  background: transparent;
  transform: translateY(-1px);
}

.nav-toggle-bar {
  background: var(--navy);
  border-radius: 999px;
  height: 2.5px;
  transition:
    opacity 280ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 22px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav {
  background:
    linear-gradient(180deg, #e8f7fc 0%, #eefafd 55%, var(--page-background) 100%);
  bottom: 0;
  left: 0;
  overflow-y: auto;
  padding: calc(env(safe-area-inset-top, 0px) + 82px) clamp(22px, 6vw, 44px) 40px;
  position: fixed;
  right: 0;
  top: 0;
  transition: visibility 0s linear 300ms;
  visibility: hidden;
  z-index: 30;
}

.mobile-nav.is-open {
  transition-delay: 0s;
  visibility: visible;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav nav {
  display: grid;
  gap: 6px;
  opacity: 0;
  transform: translateY(-18px);
  transition:
    opacity 180ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-nav.is-open nav {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav a {
  border-radius: 12px;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 750;
  padding: 18px 4px;
}

.mobile-nav nav > a:not(.mobile-nav-cta) {
  border-bottom: 1px solid rgba(20, 50, 70, 0.08);
  border-radius: 0;
}

.mobile-nav a:hover {
  background: transparent;
  text-decoration: underline;
  text-decoration-color: var(--navy);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.mobile-nav-cta {
  background: rgba(255, 255, 255, 0.82);
  border: 1.5px solid var(--navy);
  border-radius: var(--radius-pill) !important;
  color: var(--navy) !important;
  font-size: 1.15rem;
  justify-self: start;
  margin-top: 22px;
  padding-bottom: 14px !important;
  padding-left: 26px !important;
  padding-right: 26px !important;
  padding-top: 14px !important;
  text-align: center;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.mobile-nav-cta:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
  text-decoration: none !important;
  transform: translateY(-1px);
}

/* Shared layout ----------------------------------------------------------- */

.hero,
.section,
.footer,
.cta-band {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: clamp(18px, 4vw, 56px);
  padding-right: clamp(18px, 4vw, 56px);
}

.section {
  padding-bottom: clamp(56px, 8vw, 104px);
  padding-top: clamp(8px, 1.6vw, 18px);
}

.product-steps {
  padding-bottom: clamp(72px, 9vw, 116px);
  padding-top: clamp(30px, 4vw, 56px);
  position: relative;
}

.product-steps .section-heading {
  margin-bottom: clamp(38px, 5vw, 58px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.eyebrow {
  color: var(--aqua);
  font-family: var(--ui-font);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.pill-eyebrow {
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: saturate(1.25) blur(10px);
  -webkit-backdrop-filter: saturate(1.25) blur(10px);
  border: 0;
  border-radius: var(--radius-pill);
  box-shadow: none;
  color: var(--navy);
  display: inline-block;
  font-family: var(--ui-font);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 22px;
  padding: 9px 16px;
  text-transform: uppercase;
}

h1 {
  color: var(--navy);
  font-family: var(--display-font);
  font-size: var(--type-display);
  font-weight: var(--type-display-weight);
  letter-spacing: 0;
  line-height: var(--type-display-line-height);
  margin-bottom: 22px;
  text-wrap: balance;
}

#hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.62rem);
  max-width: 650px;
}

.rotating-slogan {
  display: grid;
  grid-template-rows: repeat(3, 1em);
  min-height: 3em;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.slogan-line {
  display: block;
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
}

.rotating-slogan.is-changing {
  opacity: 0;
  transform: translateY(6px);
}

h2 {
  color: var(--navy);
  font-family: var(--display-font);
  font-size: var(--type-heading-2);
  font-weight: var(--type-display-weight);
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 14px;
  text-wrap: balance;
}

h3 {
  color: var(--navy);
  font-family: var(--display-font);
  font-size: var(--type-heading-3);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 8px;
}

/* Hero -------------------------------------------------------------------- */

.hero {
  align-items: start;
  display: grid;
  column-gap: clamp(72px, 9vw, 168px);
  row-gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.92fr);
  isolation: isolate;
  padding-bottom: clamp(48px, 7vw, 92px);
  padding-top: clamp(96px, 12vh, 140px);
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-text {
  color: var(--muted);
  font-family: var(--body-font);
  font-size: var(--type-body-large);
  margin-bottom: 0;
  max-width: 540px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 0;
}

.coming-soon-badge {
  align-items: center;
  background: var(--navy);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 20px rgba(20, 50, 70, 0.12);
  color: var(--white);
  display: inline-flex;
  font-family: var(--ui-font);
  font-size: clamp(1.12rem, 1.8vw, 1.32rem);
  font-weight: 860;
  justify-content: center;
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 0;
  min-height: 64px;
  padding: 0 38px;
}

/* Hero chat --------------------------------------------------------------- */

.hero-stage {
  align-self: start;
  display: flex;
  justify-content: center;
  min-width: 0;
  position: relative;
  padding-top: clamp(18px, 3vh, 44px);
  z-index: 1;
}

.hero-wash {
  background: radial-gradient(58% 50% at 50% 48%, rgba(90, 230, 240, 0.16), transparent 72%);
  inset: -8% -10%;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.chat-thread {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: min(420px, 100%);
  z-index: 1;
}

.msg {
  animation: chatBubbleIn 560ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  display: flex;
  position: relative;
}

.msg:nth-child(2) {
  animation-delay: 90ms;
}

.msg:nth-child(3) {
  animation-delay: 180ms;
}

.msg:nth-child(4) {
  animation-delay: 270ms;
}

.msg:nth-child(5) {
  animation-delay: 360ms;
}

.msg-out {
  justify-content: flex-end;
}

.message-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  max-width: 88%;
}

.msg-out .message-content {
  align-items: flex-end;
}

.sender-name {
  color: var(--muted);
  font-family: var(--ui-font);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  margin: 0 12px 4px;
}

.bubble {
  border-radius: 22px;
  box-shadow: 0 4px 10px rgba(20, 50, 70, 0.05);
  color: var(--navy);
  font-family: var(--ui-font);
  font-size: 1.02rem;
  font-weight: 720;
  line-height: 1.42;
  max-width: 100%;
  padding: 13px 17px;
  position: relative;
  transform: translate3d(0, 0, 0);
  transition:
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes chatBubbleIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.msg-in .bubble {
  border-bottom-left-radius: 7px;
}

.msg-out .bubble {
  border-bottom-right-radius: 7px;
}

.bubble-cyan {
  background: rgba(255, 255, 255, 0.86);
}

.bubble-mint {
  background: rgba(226, 249, 237, 0.9);
}

.bubble-lime {
  background: rgba(232, 250, 190, 0.92);
}

/* Section heading --------------------------------------------------------- */

.section-heading {
  margin: 0 auto clamp(30px, 4vw, 46px);
  max-width: 720px;
  text-align: center;
}


.section-heading h2 {
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  margin-bottom: 12px;
}

.balanced-heading span {
  display: inline-block;
}

.section-heading > p {
  color: var(--muted);
  font-family: var(--body-font);
  font-size: var(--type-body-large);
  margin: 0 auto;
  max-width: 620px;
}

/* How it works ------------------------------------------------------------ */

.product-steps .section-heading {
  max-width: 960px;
}

.product-steps .section-heading > p {
  max-width: 720px;
}

.steps {
  display: grid;
  gap: clamp(38px, 6vw, 66px);
  list-style: none;
  margin: 0 auto;
  max-width: 920px;
  padding: 0;
  position: relative;
}

.steps::before {
  border-left: 2px dashed rgba(15, 156, 175, 0.28);
  bottom: 40px;
  content: "";
  left: 50%;
  position: absolute;
  top: 40px;
}

.step-row {
  align-items: center;
  display: grid;
  gap: clamp(26px, 6vw, 76px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  position: relative;
}

.step-row:nth-child(even) .step-visual {
  order: 2;
}

.step-visual {
  min-width: 0;
}

.step-copy {
  min-width: 0;
}

.step-number {
  color: rgba(15, 156, 175, 0.55);
  display: block;
  font-family: var(--display-font);
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
}

.step-preview {
  background: var(--surface);
  border: 0;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(20, 50, 70, 0.07);
  color: var(--navy);
  display: flex;
  overflow: hidden;
  padding: 22px 24px;
  position: relative;
}

.step-preview strong {
  display: block;
  font-family: var(--ui-font);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.step-preview-idea {
  align-items: center;
  gap: 15px;
}

.preview-icon-tile {
  align-items: center;
  background: var(--wash-cyan);
  border-radius: 14px;
  display: inline-flex;
  flex: 0 0 auto;
  height: 56px;
  justify-content: center;
  width: 56px;
}

.preview-body {
  min-width: 0;
}

.step-preview-icon {
  flex: 0 0 auto;
  height: 38px;
  object-fit: contain;
  position: relative;
  width: 38px;
  z-index: 1;
}

.preview-label {
  color: var(--muted);
  display: block;
  font-family: var(--ui-font);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.preview-meta {
  align-items: center;
  color: rgba(105, 126, 139, 0.9);
  display: flex;
  font-family: var(--ui-font);
  font-size: 0.74rem;
  font-weight: 700;
  gap: 6px;
  margin-top: 5px;
  position: relative;
  z-index: 1;
}

.step-preview-dates {
  align-items: stretch;
  flex-direction: column;
  gap: 12px;
  padding: 20px 22px;
}

.step-preview-dates .preview-label {
  position: relative;
  z-index: 1;
}

.date-options {
  display: flex;
  gap: 9px;
  margin: 0;
  width: 100%;
  z-index: 1;
}

.date-options > span {
  align-items: center;
  background: var(--wash-cyan);
  border: 0;
  border-radius: 14px;
  color: var(--navy);
  display: flex;
  flex: 1;
  flex-direction: column;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1;
  min-width: 0;
  min-height: 64px;
  padding: 9px 5px 8px;
}

.date-options small {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.date-options > span > span {
  font-size: 0.86rem;
  white-space: nowrap;
}

.date-options .date-best {
  background: linear-gradient(145deg, rgba(203, 247, 212, 0.72), rgba(229, 244, 173, 0.66));
  box-shadow: 0 6px 14px rgba(20, 50, 70, 0.055);
  color: var(--navy);
  transform: translateY(-2px);
}

.date-options .date-best small {
  color: var(--navy);
}

.date-options em {
  color: var(--muted);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  margin-top: 4px;
  white-space: nowrap;
}

.date-options .date-best em {
  color: var(--navy);
}

.step-preview-confirmed {
  align-items: center;
  gap: 15px;
}

.confirmation-copy .preview-label {
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.confirmation-copy .preview-time {
  color: var(--muted);
  display: block;
  font-family: var(--ui-font);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1;
  margin-top: 5px;
  position: relative;
  z-index: 1;
}

.preview-people {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.preview-people .preview-meta {
  margin-top: 0;
}

.preview-avatars {
  display: inline-flex;
}

.avatar {
  align-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--navy);
  display: inline-flex;
  font-family: var(--ui-font);
  font-size: 0.6rem;
  font-weight: 850;
  height: 23px;
  justify-content: center;
  line-height: 1;
  width: 23px;
}

.avatar + .avatar {
  margin-left: -7px;
}

.avatar-cyan {
  background: var(--wash-cyan-strong);
}

.avatar-mint {
  background: var(--wash-mint);
}

.avatar-lime {
  background: var(--wash-lime-strong);
}

.confirmation-mark {
  align-items: center;
  background: var(--navy);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.9rem;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 34px;
}

.steps h3 {
  margin-bottom: 6px;
  margin-top: 0;
}

.steps p {
  color: var(--muted);
  font-family: var(--body-font);
  margin-bottom: 0;
}

/* Moments - polaroid strip ------------------------------------------------ */

.moments {
  overflow: visible;
  padding-top: clamp(28px, 5vw, 62px);
}

.moments .section-heading {
  max-width: 780px;
}

.faq {
  padding-top: clamp(42px, 5.5vw, 78px);
}

.film-strip {
  display: flex;
  gap: clamp(14px, 1.8vw, 20px);
  list-style: none;
  margin: 0;
  margin-inline: calc(50% - 50vw);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 18px clamp(16px, 3.5vw, 48px) 34px;
  scrollbar-width: thin;
  scrollbar-color: rgba(20, 50, 70, 0.22) transparent;
  -webkit-overflow-scrolling: touch;
}

.strip-hint {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  font-family: var(--ui-font);
  font-size: 0.8rem;
  font-weight: 750;
  gap: 8px;
  letter-spacing: 0.01em;
  margin: 14px 0 0;
}

.strip-hint::after {
  border-bottom: 2px solid var(--aqua);
  border-right: 2px solid var(--aqua);
  content: "";
  display: inline-block;
  height: 7px;
  transform: rotate(-45deg);
  width: 7px;
}

.polaroid {
  --tilt: -1.05deg;
  background: #ffffff;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(20, 50, 70, 0.06);
  flex: 0 0 auto;
  padding: 13px 13px 16px;
  transform: rotate(var(--tilt));
  transform-origin: center bottom;
  transition:
    box-shadow 360ms ease,
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1);
  width: min(268px, 72vw);
}

.polaroid:nth-child(even) {
  --tilt: 0.95deg;
}

.polaroid-photo {
  aspect-ratio: 4 / 5;
  border-radius: 5px;
  display: block;
  overflow: hidden;
}

.polaroid-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.polaroid-caption {
  color: var(--navy);
  font-family: var(--ui-font);
  font-size: 0.96rem;
  font-weight: 720;
  line-height: 1.24;
  margin: 14px 4px 0;
  text-align: center;
}

.polaroid-placeholder {
  background: #f9fcff;
  border: 0;
}

.polaroid-placeholder .polaroid-photo {
  align-items: center;
  background:
    linear-gradient(150deg, rgba(90, 230, 240, 0.14), rgba(155, 235, 165, 0.12) 55%, rgba(220, 240, 90, 0.16));
  display: flex;
  justify-content: center;
  padding: 18px;
}

.polaroid-empty {
  color: var(--navy);
  font-family: var(--display-font);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.25;
  opacity: 0.78;
  text-align: center;
  text-wrap: balance;
}

.polaroid-placeholder .polaroid-caption {
  color: var(--muted);
}

/* FAQ --------------------------------------------------------------------- */

.faq .section-heading,
.faq-list {
  margin-left: auto;
  margin-right: auto;
  max-width: 780px;
}

.faq .section-heading > p a {
  color: var(--aqua);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(244, 253, 255, 0.34)),
    rgba(255, 255, 255, 0.34);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  border: 0;
  border-radius: var(--radius);
  padding: 0 22px;
  transition:
    background-color 200ms ease,
    box-shadow 200ms ease;
}

.faq-item:hover,
.faq-item.is-open {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(244, 253, 255, 0.42)),
    rgba(255, 255, 255, 0.42);
  box-shadow: 0 4px 12px rgba(20, 50, 70, 0.045);
}

.faq-question {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  font-size: 1.08rem;
  font-weight: 760;
  gap: 16px;
  justify-content: space-between;
  padding: 20px 0;
  text-align: left;
  width: 100%;
}

.faq-question::after {
  border-bottom: 2.5px solid var(--aqua);
  border-right: 2.5px solid var(--aqua);
  content: "";
  flex: none;
  height: 9px;
  margin-right: 3px;
  transform: rotate(45deg);
  transition: transform 200ms ease;
  width: 9px;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(-135deg);
}

/* Grid-row interpolation gives the accordion a reliable auto-height
   transition across desktop, tablet and mobile browsers. */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.faq-answer.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-answer p {
  color: var(--muted);
  font-family: var(--body-font);
  margin-bottom: 0;
  padding-bottom: 20px;
}

.faq-answer a {
  color: var(--aqua);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* CTA band ---------------------------------------------------------------- */

.cta-band {
  margin-bottom: clamp(44px, 6vw, 78px);
}

.cta-inner {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  padding: clamp(34px, 6vw, 64px) 0;
  position: relative;
  text-align: center;
}

.cta-inner .eyebrow {
  color: var(--aqua);
  opacity: 1;
}

.cta-inner h2 {
  color: var(--navy);
  margin-bottom: 14px;
}

.cta-inner > p {
  color: var(--muted);
  font-family: var(--body-font);
  font-size: var(--type-body-large);
  margin: 0 auto 26px;
  max-width: 560px;
}

.cta-button {
  background: var(--navy);
  border: 0;
  box-shadow: none;
  color: var(--white);
}

.cta-button:hover,
.cta-button:visited,
.cta-button:focus,
.cta-button:active {
  background: var(--navy);
  border: 0;
  box-shadow: 0 10px 20px rgba(20, 50, 70, 0.12);
  color: var(--white);
}

/* Footer ------------------------------------------------------------------ */

.footer {
  align-items: end;
  border-top: 0;
  display: grid;
  gap: clamp(22px, 4vw, 42px);
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.35fr);
  margin-top: 8px;
  padding-bottom: 18px;
  padding-top: 36px;
}

.footer-brand {
  min-width: 0;
}

.footer-brand a {
  display: inline-block;
}

.footer p {
  color: var(--muted);
  font-family: var(--body-font);
  margin-bottom: 0;
}

.footer-lockup {
  display: block;
  height: 30px;
  margin-bottom: 8px;
  width: auto;
}

.footer-links {
  align-items: end;
  column-gap: clamp(14px, 2vw, 18px);
  display: grid;
  grid-template-columns: minmax(0, auto) auto;
  justify-content: flex-end;
  row-gap: 12px;
}

.footer-nav,
.footer-socials {
  align-items: center;
  display: inline-flex;
}

.footer-nav {
  column-gap: clamp(14px, 2vw, 18px);
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 8px;
}

.footer-nav a {
  color: var(--muted);
  font-weight: 620;
  transition: color 160ms ease;
}

.footer-nav a:hover {
  color: var(--aqua);
}

.footer-socials {
  gap: 12px;
  white-space: nowrap;
}

.social-link {
  align-items: center;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: var(--navy);
  display: inline-flex;
  height: 40px;
  justify-content: center;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
  width: 40px;
}

.social-link svg {
  display: block;
  fill: currentColor;
  height: 18px;
  width: 18px;
}

.social-link:hover {
  background: rgba(90, 230, 240, 0.18);
  transform: translateY(-1px);
}

/* Legal pages ------------------------------------------------------------- */

.legal-page {
  margin: clamp(24px, 4vw, 46px) auto clamp(34px, 6vw, 72px);
  max-width: 820px;
  padding: clamp(30px, 6vw, 58px) clamp(20px, 5vw, 58px) clamp(38px, 6vw, 72px);
}

.legal-page a {
  color: var(--aqua);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-page h1 {
  margin-bottom: 18px;
}

.legal-page h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin-bottom: 10px;
}

.legal-page h3 {
  font-size: 1.12rem;
  margin-bottom: 6px;
  margin-top: 18px;
}

.legal-page section {
  border-top: 0;
  padding: 30px 0 0;
}

.legal-page p,
.legal-page li {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 1.02rem;
  line-height: 1.62;
}

.legal-page ul {
  margin: 0 0 4px;
  padding-left: 22px;
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-intro {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.2rem);
  margin-bottom: 8px;
}

.legal-updated {
  border-top: 0;
  color: var(--muted);
  margin-top: 30px;
  padding-top: 20px;
}

/* Scroll reveal ----------------------------------------------------------- */

html.js .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.js .reveal-stagger {
  transition-delay: var(--reveal-delay, 0ms);
}

/* Tilted polaroids keep their rotation while revealing */
html.js .polaroid.reveal {
  transform: rotate(var(--tilt));
}

html.js .polaroid.reveal.is-visible {
  transform: rotate(var(--tilt));
}

@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  html.js .product-steps .section-heading.reveal,
  html.js .steps .step-row.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
      opacity 560ms ease,
      transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  html.js .product-steps .section-heading.reveal.is-visible,
  html.js .steps .step-row.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .bubble:hover {
    box-shadow: 0 8px 16px rgba(20, 50, 70, 0.08);
    transform: translate3d(0, -2px, 0) scale(1.01);
  }

  .polaroid:hover,
  html.js .polaroid.reveal.is-visible:hover {
    box-shadow: 0 8px 16px rgba(20, 50, 70, 0.08);
    transform: rotate(calc(var(--tilt) * 0.55)) translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bubble {
    transition: none;
  }

  .bubble:hover {
    transform: none;
  }
}

/* Responsive -------------------------------------------------------------- */

@media (min-width: 901px) and (max-height: 760px) {
  .hero {
    padding-bottom: clamp(40px, 6vh, 64px);
    padding-top: clamp(84px, 12vh, 120px);
  }

  .moments {
    padding-top: 36px;
  }

  .moments .section-heading {
    margin-bottom: 20px;
  }

  .moments .section-heading h2 {
    font-size: clamp(2rem, 3.8vw, 2.9rem);
  }

  .moments .section-heading > p {
    font-size: 1.05rem;
  }

  .film-strip {
    padding-top: 14px;
  }

  .polaroid {
    padding: 10px 10px 13px;
    width: min(224px, 72vw);
  }

  .polaroid-caption {
    font-size: 0.86rem;
    margin-top: 10px;
  }
}

@media (max-width: 900px) {
  :root {
    --anchor-offset: 80px;
  }

  html {
    background: linear-gradient(180deg, #e8f7fc 0%, #eefafd 62%, var(--page-background) 100%);
    scroll-padding-top: var(--anchor-offset);
  }

  body::before {
    background:
      radial-gradient(160% 105svh at -28% 10svh, rgba(90, 230, 240, 0.13), rgba(90, 230, 240, 0.08) 52%, transparent 88%),
      radial-gradient(150% 105svh at 128% 54svh, rgba(155, 235, 165, 0.11), rgba(220, 240, 90, 0.08) 56%, transparent 88%),
      linear-gradient(180deg, rgba(232, 247, 252, 0.28), rgba(234, 249, 252, 0.18));
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    gap: 40px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: clamp(44px, 7vw, 72px);
    padding-top: clamp(28px, 5vw, 44px);
    text-align: center;
  }

  .hero-copy {
    margin: 0 auto;
    max-width: 620px;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stage {
    padding-top: 0;
    text-align: left;
  }

  .steps {
    margin: 0 auto;
    max-width: 560px;
  }

  .steps::before {
    display: none;
  }

  .step-row {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .step-row:nth-child(even) .step-visual {
    order: 0;
  }

  .step-number {
    margin-bottom: 8px;
  }

  .strip-hint {
    display: inline-flex;
  }
}

@media (max-width: 620px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .primary-button {
    width: auto;
  }

  .film-strip {
    gap: 14px;
    padding-bottom: 28px;
  }

  .polaroid {
    padding: 9px 9px 12px;
    width: min(238px, 62vw);
  }

  .polaroid-caption {
    font-size: 0.82rem;
    margin-top: 9px;
  }

  .date-options {
    width: min(100%, 300px);
  }
}

@media (max-width: 560px) {
  :root {
    --anchor-offset: 70px;
  }

  .site-header {
    gap: 12px;
    padding: 12px 18px;
  }

  .brand-lockup {
    height: 30px;
  }

  #hero-title {
    font-size: clamp(1.68rem, 8.5vw, 2.55rem);
    max-width: 100%;
  }

  .chat-thread {
    width: min(360px, 100%);
  }

  .bubble {
    font-size: 0.99rem;
  }

  .step-preview {
    padding: 18px 20px;
  }

  .step-preview-dates {
    padding-left: 16px;
    padding-right: 16px;
  }

  .date-options {
    gap: 7px;
  }

  .date-options > span {
    min-height: 60px;
  }

  .footer {
    align-items: flex-start;
    gap: 18px;
    grid-template-columns: 1fr;
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer-links {
    align-items: flex-start;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    justify-items: start;
  }

  .footer-nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }
}

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

  html.js .reveal,
  html.js .reveal-stagger:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}

/* Waitlist modal ---------------------------------------------------------- */

html:not(.js) [data-waitlist-open] {
  display: none;
}

.hero-waitlist-button {
  background: var(--navy);
  box-shadow: 0 10px 20px rgba(20, 50, 70, 0.12);
  color: var(--white);
  font-size: 1.1rem;
  min-height: 64px;
  padding: 0 40px;
}

@media (min-width: 901px) {
  .hero-waitlist-button {
    font-size: 1.28rem;
    min-height: 76px;
    padding: 0 52px;
  }
}

.hero-waitlist-button:hover {
  background: var(--ink);
}

.cta-contact-note {
  color: var(--muted);
  font-family: var(--body-font);
  font-size: 0.95rem;
  max-width: 480px;
}

.cta-inner > .cta-contact-note {
  margin: 64px auto 0;
}

.cta-contact-note a {
  color: var(--aqua);
  font-weight: 700;
}

.mobile-nav-cta {
  cursor: pointer;
  font-family: var(--ui-font);
  font-weight: 750;
}

.mobile-nav-cta:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
}

.waitlist-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 60;
}

.waitlist-modal[hidden] {
  display: none;
}

.waitlist-backdrop {
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  background: rgba(20, 50, 70, 0.42);
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 220ms ease;
}

.waitlist-modal.is-open .waitlist-backdrop {
  opacity: 1;
}

.waitlist-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 70px rgba(15, 38, 52, 0.28);
  max-height: min(86dvh, 720px);
  opacity: 0;
  overflow-y: auto;
  padding: clamp(28px, 5vw, 44px);
  position: relative;
  transform: translateY(14px) scale(0.97);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  width: min(520px, 100%);
}

.waitlist-modal.is-open .waitlist-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.waitlist-close {
  align-items: center;
  background: var(--mist);
  border: 0;
  border-radius: var(--radius-pill);
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
  width: 40px;
}

.waitlist-close:hover {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.05);
}

.waitlist-close:focus-visible {
  box-shadow: 0 0 0 4px rgba(11, 142, 160, 0.2);
  outline: 2px solid rgba(11, 142, 160, 0.6);
  outline-offset: 3px;
}

.waitlist-close svg {
  fill: currentColor;
  height: 18px;
  width: 18px;
}

.waitlist-card .eyebrow {
  color: var(--aqua);
  margin-bottom: 10px;
}

.waitlist-card h2 {
  color: var(--navy);
  font-size: clamp(1.6rem, 4.4vw, 2.05rem);
  margin: 0 0 12px;
}

.waitlist-copy {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0 0 24px;
}

.waitlist-form {
  display: grid;
  gap: 18px;
}

.waitlist-field {
  display: grid;
  gap: 8px;
}

.waitlist-field label {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 750;
}

.waitlist-field input {
  background: var(--surface-strong);
  border: 1.5px solid rgba(20, 50, 70, 0.18);
  border-radius: 16px;
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 1.02rem;
  min-height: 52px;
  padding: 0 18px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
  width: 100%;
}

.waitlist-field input::placeholder {
  color: rgba(101, 118, 132, 0.65);
}

.waitlist-field input:focus-visible {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(11, 142, 160, 0.16);
  outline: none;
}

.waitlist-modal .is-invalid {
  border-color: #c14953;
  box-shadow: 0 0 0 4px rgba(193, 73, 83, 0.14);
}

.waitlist-trap {
  left: -9999px;
  position: absolute;
  top: auto;
}

.waitlist-consent {
  align-items: flex-start;
  color: var(--text);
  cursor: pointer;
  display: flex;
  font-size: 0.92rem;
  gap: 12px;
  line-height: 1.45;
}

.waitlist-consent input {
  accent-color: var(--aqua);
  cursor: pointer;
  flex: 0 0 auto;
  height: 20px;
  margin-top: 2px;
  width: 20px;
}

.waitlist-consent a {
  color: var(--aqua);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.waitlist-submit {
  background: var(--navy);
  color: var(--white);
  gap: 10px;
  width: 100%;
}

.waitlist-submit:hover {
  background: var(--ink);
}

.waitlist-submit[disabled] {
  cursor: progress;
  opacity: 0.75;
  transform: none;
}

.waitlist-spinner {
  animation: waitlist-spin 720ms linear infinite;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  border-top-color: var(--white);
  display: none;
  height: 18px;
  width: 18px;
}

.waitlist-form.is-loading .waitlist-spinner {
  display: inline-block;
}

@keyframes waitlist-spin {
  to {
    transform: rotate(360deg);
  }
}

.waitlist-status {
  color: #a63d47;
  font-size: 0.92rem;
  font-weight: 650;
  margin: 0;
  min-height: 1.2em;
}

.waitlist-status.is-info {
  color: var(--text);
}

.waitlist-success-view {
  text-align: center;
}

.waitlist-success-mark {
  align-items: center;
  background: var(--brand-gradient);
  border-radius: 50%;
  box-shadow: none;
  color: var(--navy);
  display: inline-flex;
  font-size: 1.9rem;
  font-weight: 900;
  height: 76px;
  justify-content: center;
  margin-bottom: 20px;
  width: 76px;
}

.waitlist-success-view h2 {
  margin-bottom: 10px;
}

.waitlist-success-view .waitlist-copy {
  margin-bottom: 0;
}

body.waitlist-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .waitlist-modal {
    align-items: flex-end;
    padding: 0;
  }

  .waitlist-card {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 92dvh;
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
    transform: translateY(26px);
    width: 100%;
  }

  .waitlist-modal.is-open .waitlist-card {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .waitlist-backdrop,
  .waitlist-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .waitlist-spinner {
    animation: none;
    border-top-color: rgba(255, 255, 255, 0.35);
  }
}

/* Unsubscribe page -------------------------------------------------------- */

.unsubscribe-page {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 60vh;
  padding: clamp(40px, 8vw, 96px) clamp(20px, 5vw, 48px);
}

.unsubscribe-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lift);
  max-width: 480px;
  padding: clamp(32px, 5vw, 48px);
  text-align: center;
  width: 100%;
}

.unsubscribe-state h1 {
  color: var(--navy);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 12px;
}

.unsubscribe-state p {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0;
}

.unsubscribe-state a {
  color: var(--aqua);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.unsubscribe-mark {
  align-items: center;
  background: var(--brand-gradient);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(20, 50, 70, 0.14);
  color: var(--navy);
  display: inline-flex;
  font-size: 1.9rem;
  font-weight: 900;
  height: 76px;
  justify-content: center;
  margin-bottom: 20px;
  width: 76px;
}

.unsubscribe-spinner {
  animation: waitlist-spin 720ms linear infinite;
  border: 3px solid rgba(15, 156, 175, 0.28);
  border-radius: 50%;
  border-top-color: var(--aqua);
  display: inline-block;
  height: 34px;
  margin-bottom: 20px;
  width: 34px;
}

@media (prefers-reduced-motion: reduce) {
  .unsubscribe-spinner {
    animation: none;
  }
}

/* Invite / join fallback page -------------------------------------------- */

.invite-page {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 62vh;
  padding: clamp(40px, 8vw, 96px) clamp(20px, 5vw, 48px);
}

.invite-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lift);
  max-width: 500px;
  padding: clamp(32px, 5vw, 48px);
  text-align: center;
  width: 100%;
}

.invite-card .eyebrow {
  color: var(--aqua);
  margin-bottom: 10px;
}

.invite-card h1 {
  color: var(--navy);
  font-size: clamp(1.6rem, 4.4vw, 2.1rem);
  margin: 0 0 14px;
}

.invite-lead {
  color: var(--muted);
  font-size: 1.04rem;
  margin: 0 auto 24px;
  max-width: 400px;
}

.invite-code-block {
  background: var(--mist);
  border-radius: var(--radius-lg);
  margin: 0 0 24px;
  padding: 20px;
}

.invite-code-label {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.invite-code-row {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.invite-code {
  color: var(--navy);
  font-family: var(--ui-font);
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  font-weight: 850;
  letter-spacing: 0.08em;
  word-break: break-all;
}

.invite-copy {
  background: var(--navy);
  border: 0;
  border-radius: var(--radius-pill);
  color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  font-weight: 750;
  min-height: 40px;
  padding: 0 18px;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.invite-copy:hover {
  background: var(--ink);
  transform: translateY(-1px);
}

.invite-copy.is-copied {
  background: var(--aqua);
  color: var(--navy);
}

.invite-copy:focus-visible {
  box-shadow: 0 0 0 4px rgba(11, 142, 160, 0.2);
  outline: 2px solid rgba(11, 142, 160, 0.6);
  outline-offset: 3px;
}

.invite-code-hint {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 14px 0 0;
}

.invite-cta {
  background: var(--navy);
  color: var(--white);
  font-size: 1.1rem;
  min-height: 60px;
  width: 100%;
}

.invite-cta:hover {
  background: var(--ink);
}

.invite-secondary {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 18px 0 0;
}

.invite-retry,
.invite-back {
  color: var(--aqua);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  margin-top: 20px;
}

.invite-retry {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 8px 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.invite-back {
  min-height: 44px;
  align-items: center;
}

.invite-retry:focus-visible,
.invite-back:focus-visible {
  box-shadow: 0 0 0 4px rgba(11, 142, 160, 0.2);
  outline: 2px solid rgba(11, 142, 160, 0.6);
  outline-offset: 3px;
}
