:root {
  --paper: #f4eee2;
  --paper-deep: #eae0cb;
  --paper-card: #fbf7ef;
  --ink: #221d19;
  --ink-soft: #5c5247;
  --berry: #7a2342;
  --berry-deep: #5c1830;
  --marigold: #dd922a;
  --rule: #d8cbaf;
  --mint: #bfdccf;
  --blue-paper: #dce9ec;
  --danger: #9f253e;
  --phone-border: #d7d9df;
  --phone-border-inner: rgba(255, 255, 255, 0.72);
  --phone-shadow: 0 22px 48px rgba(34, 29, 25, 0.18), 0 8px 0 rgba(34, 29, 25, 0.06);
  --section: 1140px;
  --hard-shadow: 7px 9px 0 rgba(34, 29, 25, 0.08);
  --light-shadow: 4px 6px 0 rgba(34, 29, 25, 0.05);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  background:
    radial-gradient(rgba(120, 90, 40, 0.05) 1px, transparent 1px) 0 0 / 4px 4px,
    var(--paper);
  font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--berry);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--paper-card);
  background: var(--berry);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  max-width: 1180px;
  min-height: 74px;
  margin: 0 auto;
  padding: 12px 24px;
  border-bottom: 1px solid transparent;
  background: rgba(244, 238, 226, 0.9);
  backdrop-filter: blur(18px);
}

.site-header.scrolled,
.page-header {
  border-bottom-color: var(--rule);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: 20px;
  font-weight: 700;
}

.brand img {
  width: 40px;
  height: 40px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--paper-card);
}

.brand span::before {
  margin-right: 2px;
  color: var(--marigold);
  font-family: "Spline Sans Mono", monospace;
  font-weight: 900;
  content: "!";
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a,
.site-footer a,
.demo-links a,
.text-link,
.footer-link-grid a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.site-nav a:hover,
.site-footer a:hover,
.demo-links a:hover,
.text-link:hover,
.footer-link-grid a:hover {
  color: var(--berry);
  text-decoration-color: currentColor;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 17px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.header-cta,
.button.primary {
  color: #fffaf1;
  background: var(--berry);
  border-color: var(--berry);
  box-shadow: var(--light-shadow);
}

.button.secondary {
  color: var(--ink);
  background: var(--marigold);
  border-color: var(--ink);
  box-shadow: var(--light-shadow);
}

.button.ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--rule);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.header-cta:active,
.button:active {
  transform: translateY(1px);
  box-shadow: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--paper-card);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.section-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
  color: var(--berry);
  font-family: "Spline Sans Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: lowercase;
}

.section-tag::before,
.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--marigold);
  content: "";
}

h1,
h2 {
  font-family: Fraunces, Georgia, serif;
  letter-spacing: -0.01em;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.06fr) minmax(280px, 0.82fr);
  gap: 36px;
  align-items: center;
  max-width: 1180px;
  min-height: 720px;
  margin: 0 auto;
  padding: 72px 24px 86px;
}

.hero-tag-card {
  position: relative;
  min-height: 360px;
  padding: 42px 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 3px 18px 18px 3px;
  background: rgba(231, 242, 248, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48), 0 28px 62px rgba(34, 29, 25, 0.16), 0 10px 0 rgba(122, 35, 66, 0.05);
  transform: translateX(-12px);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.tag-string {
  position: absolute;
  top: -74px;
  left: 33px;
  width: 1px;
  height: 98px;
  background: rgba(34, 29, 25, 0.36);
  transform: rotate(7deg);
}

.tag-hole {
  position: absolute;
  top: 20px;
  left: 24px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(216, 203, 175, 0.82);
  border-radius: 50%;
  background: rgba(244, 238, 226, 0.62);
  box-shadow: inset 0 0 0 5px rgba(251, 247, 239, 0.72);
}

.postmark {
  position: absolute;
  right: 20px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 2px solid rgba(221, 146, 42, 0.75);
  border-radius: 50%;
  color: var(--marigold);
  font-family: "Spline Sans Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transform: rotate(-10deg);
}

.tag-label {
  margin: 72px 0 8px;
  color: var(--ink-soft);
  font-family: "Spline Sans Mono", monospace;
  font-size: 12px;
  font-weight: 700;
}

.hero-tag-card strong {
  display: block;
  color: var(--berry);
  font-family: "Spline Sans Mono", monospace;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1;
}

.hero-tag-card dl {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
}

.hero-tag-card div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(128, 112, 91, 0.34);
}

.hero-tag-card dt {
  color: var(--ink-soft);
  font-family: "Spline Sans Mono", monospace;
  font-size: 11px;
  font-weight: 700;
}

.hero-tag-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.6rem, 5.6vw, 4.5rem);
  font-weight: 560;
  line-height: 1.05;
}

.hero-copy h1 em {
  color: var(--berry);
  font-style: italic;
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.62;
}

.hero-actions,
.cta-row,
.trust-actions,
.waitlist-actions,
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-actions {
  margin-top: 30px;
}

.micro-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-family: "Spline Sans Mono", monospace;
  font-size: 12px;
  line-height: 1.55;
}

.micro-line span {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--marigold);
}

.hero-screens {
  position: relative;
  min-height: 610px;
}

.phone-frame {
  overflow: hidden;
  margin: 0;
  border: 8px solid var(--phone-border);
  border-radius: 32px;
  background: #efe8fb;
  box-shadow: inset 0 0 0 1px var(--phone-border-inner), var(--phone-shadow);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-carousel {
  overflow: hidden;
  width: min(100%, 392px);
  margin: 0 auto;
  padding: 6px 0 18px;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.hero-carousel-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  width: min(260px, 84%);
  height: auto;
  aspect-ratio: 462 / 900;
  opacity: 0;
  pointer-events: none;
  transform: translateX(0) scale(0.82) rotate(0deg);
  transition: opacity 420ms ease, transform 420ms ease, filter 420ms ease;
  will-change: transform, opacity;
}

.hero-slide.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1) rotate(0deg);
}

.hero-slide.is-prev,
.hero-slide.is-next {
  z-index: 1;
  opacity: 0.42;
  filter: saturate(0.92);
}

.hero-slide.is-prev {
  transform: translateX(-92px) scale(0.76) rotate(-3deg);
}

.hero-slide.is-next {
  transform: translateX(92px) scale(0.76) rotate(3deg);
}

.hero-slide img {
  object-fit: cover;
  object-position: top center;
  background: #081827;
}

.section {
  max-width: var(--section);
  margin: 0 auto;
  padding: 90px 24px;
  border-top: 1px solid var(--rule);
}

.section:nth-of-type(even) {
  background: transparent;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading h2,
.feature-copy h2,
.waitlist-card h2,
.footer-cta h2,
.modal-head h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.8vw, 3.05rem);
  font-weight: 560;
  line-height: 1.08;
}

.section-heading p:not(.section-tag):not(.eyebrow),
.feature-copy p,
.waitlist-card p,
.modal-head p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.62;
}

.audience-section,
.events-section,
.vendor-section,
.waitlist-section {
  max-width: none;
}

.audience-section > .section-heading,
.audience-grid,
.events-header,
.ruled-list,
.event-screens,
.vendor-section > *,
.waitlist-card {
  max-width: var(--section);
  margin-left: auto;
  margin-right: auto;
}

.audience-section,
.events-section,
.vendor-section,
.waitlist-section {
  background:
    radial-gradient(rgba(120, 90, 40, 0.045) 1px, transparent 1px) 0 0 / 4px 4px,
    var(--paper-deep);
}

#platform-title {
  max-width: 980px;
  font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 900;
  line-height: 1.22;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.audience-grid article {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-items: start;
  min-height: 230px;
  padding: 22px;
  border: 1px solid #b8bec7;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 248, 251, 0.88)),
    var(--paper-card);
  box-shadow:
    0 18px 38px rgba(49, 55, 64, 0.14),
    0 6px 0 rgba(148, 156, 166, 0.2);
  isolation: isolate;
}

.audience-grid article::after {
  position: absolute;
  inset: 10px -8px -9px 8px;
  z-index: -1;
  border: 1px solid rgba(153, 161, 173, 0.3);
  border-radius: 8px;
  background: rgba(148, 156, 166, 0.12);
  box-shadow: 0 12px 26px rgba(49, 55, 64, 0.1);
  content: "";
}

.audience-grid span,
.product-directory span,
.organizer-ledger span,
.vendor-ops-list span {
  color: var(--berry);
  font-family: "Spline Sans Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.audience-grid h3,
.rule-grid h3,
.trust-grid h3,
.vendor-ops-list h3,
.gallery-copy h3,
.organizer-ledger strong,
.vendor-cta-strip h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.18;
}

.audience-grid p,
.rule-grid p,
.trust-grid p,
.vendor-ops-list p,
.gallery-copy p,
.vendor-cta-strip p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.58;
}

.gifting-section,
.recipient-section,
.connect-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 56px;
  align-items: center;
}

.recipient-section {
  grid-template-columns: minmax(300px, 470px) minmax(0, 1fr);
}

.feature-copy {
  max-width: 650px;
}

.step-list,
.plain-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.step-list li {
  counter-increment: steps;
  position: relative;
  padding: 14px 0 14px 56px;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.58;
}

.step-list li::before {
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--marigold);
  font-family: "Spline Sans Mono", monospace;
  font-weight: 700;
  content: counter(steps, decimal-leading-zero);
}

.step-list strong,
.plain-list strong {
  color: var(--ink);
}

.cta-row {
  margin-top: 24px;
}

.visual-cluster {
  position: relative;
  min-height: 560px;
}

.tall-shot {
  width: min(290px, 100%);
  height: 560px;
  margin-left: auto;
}

.tag-note {
  position: absolute;
  left: 0;
  bottom: 42px;
  max-width: 240px;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 3px 14px 14px 3px;
  background: rgba(251, 247, 239, 0.72);
  box-shadow: inset 0 0 0 1px rgba(216, 203, 175, 0.38), 0 24px 50px rgba(34, 29, 25, 0.18), 0 8px 0 rgba(122, 35, 66, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.tag-note span {
  color: #9d6519;
  font-family: "Spline Sans Mono", monospace;
  font-size: 11px;
  font-weight: 800;
}

.tag-note strong {
  display: block;
  margin-top: 10px;
  color: var(--berry);
  font-family: "Spline Sans Mono", monospace;
  font-size: 22px;
  font-weight: 800;
}

.tag-note p {
  margin: 8px 0 0;
  color: #453b33;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.events-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 22px;
}

.events-header h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 560;
  line-height: 1.08;
}

.events-header > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.62;
}

.ruled-list {
  border-top: 1px solid var(--ink);
}

.ruled-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}

.ruled-list span {
  color: var(--marigold);
  font-family: "Spline Sans Mono", monospace;
  font-weight: 700;
}

.ruled-list h3 {
  margin: 0;
  font-size: 22px;
}

.ruled-list p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.58;
}

.ruled-list a {
  color: var(--berry);
  font-family: "Spline Sans Mono", monospace;
  font-size: 24px;
}

.event-screens,
.recipient-screens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
  margin-top: 30px;
}

.event-screens {
  grid-template-columns: repeat(3, minmax(220px, 292px));
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.event-screens .phone-frame,
.recipient-screens .phone-frame,
.single-screen,
.screen-gallery .phone-frame {
  height: 430px;
}

.event-screens .phone-frame {
  position: relative;
  width: min(292px, 100%);
  height: auto;
  aspect-ratio: 462 / 900;
  justify-self: center;
}

.event-screens .phone-frame:nth-child(2),
.recipient-screens .phone-frame:nth-child(2) {
  margin-top: 34px;
}

.event-screens .phone-frame:nth-child(2) {
  margin-top: 0;
}

.event-phone img {
  object-fit: cover;
  object-position: top center;
}

.event-phone-tall img {
  object-position: top center;
}

.event-phone-pop {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 4px 14px 14px 4px;
  background: rgba(251, 247, 239, 0.76);
  box-shadow: inset 0 0 0 1px rgba(216, 203, 175, 0.32), 0 18px 34px rgba(34, 29, 25, 0.18);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.event-phone-pop strong {
  color: var(--berry);
  font-family: "Spline Sans Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
}

.event-phone-pop span {
  color: #443b33;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.scroll-preview img {
  object-fit: cover;
  object-position: top;
}

.event-carousel,
.recipient-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 470px;
  margin-top: 30px;
  padding: 6px 0 18px;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.event-carousel {
  max-width: min(100%, 760px);
  margin-left: auto;
  margin-right: auto;
}

.event-carousel-stage,
.recipient-carousel-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 604px;
  isolation: isolate;
}

.event-slide,
.recipient-slide {
  position: absolute;
  width: min(292px, 72%);
  height: auto;
  aspect-ratio: 462 / 900;
  opacity: 0;
  pointer-events: none;
  transform: translateX(0) scale(0.82) rotate(0deg);
  transition: opacity 420ms ease, transform 420ms ease, filter 420ms ease;
  will-change: transform, opacity;
}

.event-slide.is-active,
.recipient-slide.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1) rotate(0deg);
}

.event-slide.is-prev,
.event-slide.is-next,
.recipient-slide.is-prev,
.recipient-slide.is-next {
  z-index: 1;
  opacity: 0.56;
  filter: saturate(0.92);
}

.event-slide.is-prev,
.recipient-slide.is-prev {
  transform: translateX(-104px) scale(0.83) rotate(-3deg);
}

.event-slide.is-next,
.recipient-slide.is-next {
  transform: translateX(104px) scale(0.83) rotate(3deg);
}

.event-slide.is-prev {
  opacity: 0.48;
  transform: translateX(-170px) scale(0.83) rotate(-3deg);
}

.event-slide.is-next {
  opacity: 0.48;
  transform: translateX(170px) scale(0.83) rotate(3deg);
}

.event-slide img,
.recipient-slide img {
  object-fit: cover;
  object-position: top center;
  background: #f8fbff;
}

.event-slide-tall img,
.recipient-slide-tall img {
  object-position: top center;
}

.recipient-slide-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 4px 14px 14px 4px;
  background: rgba(251, 247, 239, 0.76);
  box-shadow: inset 0 0 0 1px rgba(216, 203, 175, 0.32), 0 18px 34px rgba(34, 29, 25, 0.16);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.recipient-slide-caption strong {
  color: var(--berry);
  font-family: "Spline Sans Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
}

.recipient-slide-caption span {
  color: #443b33;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.hero-carousel-controls,
.event-carousel-controls,
.recipient-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.hero-carousel-controls > button,
.event-carousel-controls > button,
.recipient-carousel-controls > button {
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(251, 247, 239, 0.78);
  box-shadow: 0 10px 20px rgba(34, 29, 25, 0.1);
  font-size: 18px;
  font-weight: 900;
}

.hero-carousel-dots,
.event-carousel-dots,
.recipient-carousel-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 46px;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  background: rgba(251, 247, 239, 0.68);
  box-shadow: inset 0 0 0 1px rgba(216, 203, 175, 0.24);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-carousel-dots button,
.event-carousel-dots button,
.recipient-carousel-dots button {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: transparent;
}

.hero-carousel-dots button::before,
.event-carousel-dots button::before,
.recipient-carousel-dots button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(122, 35, 66, 0.34);
  transform: translate(-50%, -50%);
  transition: width 220ms ease, background 220ms ease;
  content: "";
}

.hero-carousel-dots button.is-active,
.event-carousel-dots button.is-active,
.recipient-carousel-dots button.is-active {
  width: 44px;
}

.hero-carousel-dots button.is-active::before,
.event-carousel-dots button.is-active::before,
.recipient-carousel-dots button.is-active::before {
  width: 24px;
  background: var(--berry);
}

.rule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.rule-grid article {
  min-height: 152px;
  padding: 18px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.rule-grid h3 {
  margin-top: 0;
}

.organizer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 50px;
  align-items: start;
}

#organizers-title {
  max-width: 17ch;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.feature-chips,
.souvenir-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.feature-chips span,
.souvenir-features span {
  padding: 8px 10px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: var(--paper-card);
  color: var(--ink);
  font-family: "Spline Sans Mono", monospace;
  font-size: 11px;
  font-weight: 700;
}

.organizer-ledger {
  display: grid;
  gap: 14px;
}

.organizer-ledger article {
  position: relative;
  z-index: 0;
  min-height: 126px;
  padding: 18px;
  border: 1px solid #b8bec7;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 248, 251, 0.88)),
    var(--paper-card);
  box-shadow:
    0 15px 30px rgba(49, 55, 64, 0.12),
    0 5px 0 rgba(148, 156, 166, 0.16);
  isolation: isolate;
}

.organizer-ledger article::after {
  position: absolute;
  inset: 9px -8px -9px 8px;
  z-index: -1;
  border: 1px solid rgba(153, 161, 173, 0.3);
  border-radius: 8px;
  background: rgba(148, 156, 166, 0.1);
  box-shadow: 0 10px 22px rgba(49, 55, 64, 0.08);
  content: "";
}

.organizer-ledger strong {
  display: block;
}

.social-souvenir-section {
  max-width: none;
  background: var(--paper);
}

.souvenir-card {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  max-width: var(--section);
  margin: 0 auto;
  padding: 30px;
  overflow: visible;
  border: 1px solid #b8bec7;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(246, 248, 251, 0.88)),
    var(--paper-card);
  box-shadow:
    0 22px 46px rgba(49, 55, 64, 0.14),
    0 7px 0 rgba(148, 156, 166, 0.18);
  isolation: isolate;
}

.souvenir-card::after {
  position: absolute;
  inset: 15px -12px -14px 12px;
  z-index: -1;
  border: 1px solid rgba(153, 161, 173, 0.34);
  border-radius: 8px;
  background: rgba(148, 156, 166, 0.1);
  box-shadow: 0 16px 32px rgba(49, 55, 64, 0.1);
  content: "";
}

.souvenir-card .phone-frame {
  height: 530px;
}

.souvenir-card h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 560;
  line-height: 1.08;
}

.souvenir-card p {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.62;
}

.vendor-section > .section-heading {
  margin-bottom: 30px;
}

.vendor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.dashboard-showcase {
  position: relative;
  z-index: 0;
  overflow: visible;
  border: 1px solid #b8bec7;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(246, 248, 251, 0.88)),
    var(--paper-card);
  box-shadow:
    0 20px 42px rgba(49, 55, 64, 0.14),
    0 7px 0 rgba(148, 156, 166, 0.18);
  isolation: isolate;
}

.dashboard-showcase::after {
  position: absolute;
  inset: 14px -11px -13px 11px;
  z-index: -1;
  border: 1px solid rgba(153, 161, 173, 0.34);
  border-radius: 8px;
  background: rgba(148, 156, 166, 0.1);
  box-shadow: 0 16px 30px rgba(49, 55, 64, 0.1);
  content: "";
}

.dashboard-showcase img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  object-fit: cover;
}

.vendor-ops-list {
  display: grid;
  gap: 12px;
}

.vendor-ops-list article {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 16px;
  border: 1px solid #b8bec7;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 248, 251, 0.88)),
    var(--paper-card);
  box-shadow:
    0 18px 36px rgba(49, 55, 64, 0.14),
    0 6px 0 rgba(148, 156, 166, 0.2);
  isolation: isolate;
}

.vendor-ops-list article::after {
  position: absolute;
  inset: 9px -8px -9px 8px;
  z-index: -1;
  border: 1px solid rgba(153, 161, 173, 0.3);
  border-radius: 8px;
  background: rgba(148, 156, 166, 0.12);
  box-shadow: 0 12px 24px rgba(49, 55, 64, 0.1);
  content: "";
}

.vendor-ops-list h3 {
  margin-top: 0;
}

.vendor-cta-strip,
.waitlist-card,
.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--paper-card);
  box-shadow: var(--light-shadow);
}

.vendor-cta-strip {
  position: relative;
  z-index: 0;
  overflow: visible;
  border: 1px solid #b8bec7;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(246, 248, 251, 0.88)),
    var(--paper-card);
  box-shadow:
    0 18px 38px rgba(49, 55, 64, 0.13),
    0 6px 0 rgba(148, 156, 166, 0.18);
  isolation: isolate;
}

.vendor-cta-strip::after {
  position: absolute;
  inset: 12px -10px -12px 10px;
  z-index: -1;
  border: 1px solid rgba(153, 161, 173, 0.32);
  border-radius: 8px;
  background: rgba(148, 156, 166, 0.1);
  box-shadow: 0 14px 28px rgba(49, 55, 64, 0.1);
  content: "";
}

.connect-section {
  grid-template-columns: minmax(0, 1fr) 300px;
}

.plain-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.55;
}

.plain-list li::before {
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--marigold);
  content: "";
}

.single-screen {
  max-width: 280px;
  justify-self: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-grid article {
  min-height: 170px;
  padding: 18px;
  border-left: 4px solid var(--marigold);
  border-top: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-card);
}

.trust-grid h3 {
  margin-top: 0;
}

.compliance-note {
  position: relative;
  z-index: 0;
  display: flex;
  gap: 14px;
  margin-top: 20px;
  padding: 20px 22px;
  border: 1px solid #b8bec7;
  border-radius: 8px;
  color: var(--berry-deep);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 248, 251, 0.88)),
    var(--paper-card);
  box-shadow:
    0 16px 34px rgba(49, 55, 64, 0.12),
    0 6px 0 rgba(148, 156, 166, 0.18);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  isolation: isolate;
}

.compliance-note::after {
  position: absolute;
  inset: 11px -9px -10px 9px;
  z-index: -1;
  border: 1px solid rgba(153, 161, 173, 0.32);
  border-radius: 8px;
  background: rgba(148, 156, 166, 0.1);
  box-shadow: 0 12px 24px rgba(49, 55, 64, 0.1);
  content: "";
}

.compliance-note strong {
  color: var(--berry);
  white-space: nowrap;
}

.trust-actions {
  margin-top: 18px;
}

.screens-section {
  max-width: none;
  background: var(--blue-paper);
}

.screens-section > .section-heading,
.screen-tabs,
.screen-gallery {
  max-width: var(--section);
  margin-left: auto;
  margin-right: auto;
}

.screen-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.screen-tabs button {
  min-height: 38px;
  flex: 0 1 auto;
  padding: 8px 10px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  color: var(--ink);
  background: var(--paper-card);
  font-family: "Spline Sans Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.screen-tabs button.active {
  color: #fffaf1;
  background: var(--berry);
  border-color: var(--berry);
}

.screen-gallery {
  display: grid;
  grid-template-columns: minmax(292px, 320px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  margin-top: 24px;
}

.screen-gallery .screen-gallery-phone {
  width: min(292px, 100%);
  height: auto;
  aspect-ratio: 462 / 900;
  justify-self: center;
}

.screen-gallery .screen-gallery-phone img {
  object-fit: cover;
  object-position: top center;
  background: #f8fbff;
}

.gallery-copy {
  max-width: 650px;
  min-height: 275px;
}

.gallery-copy h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.updates-grid article,
.screen-highlights li {
  border: 1px solid var(--rule);
  border-radius: 5px;
  background: rgba(251, 247, 239, 0.82);
}

.updates-grid article {
  min-height: 96px;
  padding: 14px;
}

.updates-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--berry);
  font-family: "Spline Sans Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.updates-grid strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

.screen-highlights {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.screen-highlights li {
  position: relative;
  padding: 12px 14px 12px 34px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.screen-highlights li::before {
  position: absolute;
  top: 16px;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--marigold);
  content: "";
}

.waitlist-section {
  padding-bottom: 96px;
}

.waitlist-card {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  margin-top: 0;
  padding: 38px;
  overflow: visible;
  border: 1px solid #b8bec7;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(246, 248, 251, 0.9)),
    var(--paper-card);
  box-shadow:
    0 28px 64px rgba(49, 55, 64, 0.18),
    0 9px 0 rgba(148, 156, 166, 0.24);
  isolation: isolate;
}

.waitlist-card::after {
  position: absolute;
  inset: 16px -12px -14px 12px;
  z-index: -1;
  border: 1px solid rgba(153, 161, 173, 0.36);
  border-radius: 8px;
  background: rgba(148, 156, 166, 0.12);
  box-shadow: 0 22px 44px rgba(49, 55, 64, 0.16);
  content: "";
}

.waitlist-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: 28px;
  align-items: start;
}

.waitlist-card h2 {
  max-width: 18ch;
  font-size: clamp(2.25rem, 4.3vw, 3.65rem);
}

.waitlist-card p {
  max-width: 720px;
}

.waitlist-spotlight,
.waitlist-proof-grid article,
.waitlist-path-card {
  border: 1px solid #b8bec7;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.waitlist-spotlight {
  padding: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48), 0 16px 32px rgba(49, 55, 64, 0.1);
}

.waitlist-spotlight span,
.waitlist-proof-grid span,
.waitlist-path-card span,
.waitlist-secondary-links span {
  color: var(--berry);
  font-family: "Spline Sans Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.waitlist-spotlight strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 27px;
  font-weight: 900;
  line-height: 1.08;
}

.waitlist-spotlight p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.waitlist-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.waitlist-proof-grid article {
  padding: 16px;
}

.waitlist-proof-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.waitlist-path-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 12px;
}

.waitlist-path-card {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  min-height: 250px;
  padding: 18px;
  box-shadow:
    0 16px 32px rgba(49, 55, 64, 0.12),
    0 5px 0 rgba(148, 156, 166, 0.17);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.waitlist-path-card::after {
  position: absolute;
  inset: 10px -8px -9px 8px;
  z-index: -1;
  border: 1px solid rgba(153, 161, 173, 0.3);
  border-radius: 8px;
  background: rgba(148, 156, 166, 0.1);
  box-shadow: 0 10px 20px rgba(49, 55, 64, 0.08);
  content: "";
}

.waitlist-path-card:hover {
  border-color: #949ca6;
  box-shadow:
    0 20px 38px rgba(49, 55, 64, 0.16),
    0 6px 0 rgba(148, 156, 166, 0.22);
  transform: translateY(-2px);
}

.waitlist-path-card.featured {
  border-color: rgba(122, 35, 66, 0.42);
  background: rgba(255, 250, 241, 0.78);
}

.waitlist-path-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.waitlist-path-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.waitlist-path-card .button {
  width: 100%;
  min-height: 46px;
}

.waitlist-secondary-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(153, 161, 173, 0.42);
  color: var(--berry);
  font-size: 15px;
  font-weight: 900;
}

.waitlist-secondary-links a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.waitlist-secondary-links a:hover {
  color: var(--berry-deep);
  text-decoration-color: currentColor;
}

.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px 46px;
  border-top: 1px solid var(--rule);
}

.production-footer {
  display: grid;
  gap: 30px;
}

.footer-cta {
  position: relative;
  z-index: 0;
  margin-top: 0;
  padding: 32px;
  overflow: visible;
  border: 1px solid #b8bec7;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(246, 248, 251, 0.86)),
    var(--paper-card);
  box-shadow:
    0 20px 44px rgba(49, 55, 64, 0.14),
    0 7px 0 rgba(148, 156, 166, 0.2);
  isolation: isolate;
}

.footer-cta::after {
  position: absolute;
  inset: 14px -12px -14px 12px;
  z-index: -1;
  border: 1px solid rgba(153, 161, 173, 0.34);
  border-radius: 8px;
  background: rgba(148, 156, 166, 0.12);
  box-shadow: 0 16px 32px rgba(49, 55, 64, 0.12);
  content: "";
}

.footer-cta h2 {
  max-width: 760px;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.7fr);
  gap: 34px;
  align-items: start;
}

.footer-brand-block p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.footer-safe-note {
  max-width: 410px;
  font-size: 12px;
  line-height: 1.6;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 850;
}

.footer-link-grid div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-link-grid h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-family: "Spline Sans Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-link-grid .footer-mini-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  padding: 9px 13px;
  border: 1px solid var(--berry);
  border-radius: 2px;
  color: #fffaf1;
  background: var(--berry);
  box-shadow: var(--light-shadow);
  text-decoration: none;
}

.footer-link-grid .footer-mini-cta:hover {
  color: #fffaf1;
  text-decoration: none;
  transform: translateY(-1px);
}

.modal {
  width: min(94vw, 650px);
  max-height: min(86vh, 820px);
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.modal.wide,
.modal:has(.wide-modal) {
  width: min(94vw, 820px);
}

#vendor-modal,
#ngo-modal,
#organizer-modal {
  width: min(94vw, 820px);
}

.modal::backdrop {
  background: rgba(34, 29, 25, 0.58);
}

.modal:not([open]).is-open {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  max-height: none;
  background: rgba(34, 29, 25, 0.58);
}

.modal-card {
  position: relative;
  overflow: auto;
  max-height: min(86vh, 820px);
  padding: 26px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--paper-card);
  box-shadow: var(--hard-shadow);
}

.wide-modal {
  max-width: 820px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font-size: 24px;
  line-height: 1;
}

.modal-head {
  max-width: 620px;
  padding-right: 42px;
}

.waitlist-form,
.vendor-interest-form,
.ngo-interest-form,
.organizer-auth-form,
.souvenir-access-form,
.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ngo-identity-row {
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  align-items: stretch;
}

.waitlist-form label,
.waitlist-form legend,
.vendor-interest-form label,
.ngo-interest-form label,
.ngo-interest-form legend,
.organizer-auth-form label,
.souvenir-access-form label,
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.waitlist-form input,
.waitlist-form select,
.vendor-interest-form input,
.vendor-interest-form select,
.vendor-interest-form textarea,
.ngo-interest-form input,
.ngo-interest-form select,
.ngo-interest-form textarea,
.organizer-auth-form input,
.organizer-auth-form select,
.souvenir-access-form input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fffdf8;
  font-weight: 700;
}

.waitlist-form input,
.waitlist-form select,
.vendor-interest-form input,
.vendor-interest-form select,
.ngo-interest-form input,
.ngo-interest-form select,
.organizer-auth-form input,
.organizer-auth-form select,
.souvenir-access-form input,
.contact-form input,
.contact-form select {
  min-height: 46px;
}

.vendor-interest-form textarea,
.ngo-interest-form textarea,
.contact-form textarea {
  min-height: 108px;
  resize: vertical;
  line-height: 1.5;
}

.ngo-interest-form .phone-field {
  gap: 8px;
}

.phone-control {
  display: grid;
  grid-template-columns: minmax(112px, 0.36fr) minmax(0, 1fr);
  min-height: 46px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: #fffdf8;
  overflow: hidden;
}

.ngo-interest-form .phone-control select,
.ngo-interest-form .phone-control input {
  min-height: 46px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.ngo-interest-form .phone-control select {
  border-right: 1px solid var(--rule);
  padding-right: 8px;
  color: var(--brand);
  font-weight: 900;
}

.ngo-interest-form .phone-control input:focus,
.ngo-interest-form .phone-control select:focus {
  outline: 2px solid rgba(31, 126, 255, 0.34);
  outline-offset: -2px;
}

@media (max-width: 560px) {
  .phone-control {
    grid-template-columns: 1fr;
  }

  .ngo-interest-form .phone-control select {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
}

.ngo-gifttag-callout {
  position: relative;
  z-index: 0;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid #aeb6c1;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(239, 246, 250, 0.96)),
    #f8fbff;
  box-shadow:
    0 18px 34px rgba(49, 55, 64, 0.14),
    0 5px 0 rgba(148, 156, 166, 0.17);
  isolation: isolate;
}

.ngo-gifttag-callout::after {
  position: absolute;
  inset: 10px -8px -9px 8px;
  z-index: -1;
  border: 1px solid rgba(153, 161, 173, 0.3);
  border-radius: 8px;
  background: rgba(148, 156, 166, 0.1);
  content: "";
}

.ngo-gifttag-callout span {
  color: var(--berry);
  font-family: "Spline Sans Mono", monospace;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.ngo-gifttag-callout strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.16;
}

.ngo-gifttag-callout p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

.ngo-interest-form .ngo-gifttag-callout label {
  color: var(--ink);
}

.ngo-interest-form .ngo-gifttag-callout input {
  min-height: 56px;
  border-color: #9aa6b4;
  background: #fff;
  color: var(--berry-deep);
  font-family: "Spline Sans Mono", monospace;
  font-size: 18px;
  font-weight: 900;
}

.ngo-interest-form .ngo-gifttag-callout input::placeholder {
  color: rgba(122, 35, 66, 0.66);
}

.ngo-gifttag-callout small {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
}

.waitlist-form fieldset,
.support-choice-grid {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.waitlist-form fieldset label,
.support-choice-grid label,
.preview-human-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 800;
}

.waitlist-form input[type="checkbox"],
.support-choice-grid input[type="checkbox"],
.preview-human-check input {
  min-height: auto;
  width: 18px;
  height: 18px;
}

.support-choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 14px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.68);
}

.support-choice-grid legend {
  margin-bottom: 10px;
  color: var(--ink);
}

.support-choice-grid label {
  min-height: 42px;
  align-items: flex-start;
  padding: 10px;
  border: 1px solid rgba(153, 161, 173, 0.32);
  border-radius: 4px;
  background: #fffdf8;
}

.support-choice-grid span {
  margin-left: auto;
  color: var(--berry);
  font-size: 11px;
  font-weight: 900;
}

select:disabled,
button[disabled] {
  opacity: 0.68;
}

button[disabled] {
  cursor: wait;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #26725c;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.form-status[data-tone="error"] {
  color: var(--danger);
}

.form-status[data-tone="info"] {
  color: var(--berry);
}

.organizer-auth-tabs,
.souvenir-access-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
  padding: 6px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--paper);
}

.organizer-auth-tabs button,
.souvenir-access-tabs button {
  min-height: 40px;
  border: 0;
  border-radius: 2px;
  color: var(--ink-soft);
  background: transparent;
  font-weight: 900;
}

.organizer-auth-tabs button.active,
.souvenir-access-tabs button.active {
  color: #fffaf1;
  background: var(--berry);
}

.organizer-auth-form,
.souvenir-password-panel {
  display: none;
}

.organizer-auth-form.active,
.souvenir-password-panel.active {
  display: grid;
}

.marketing-turnstile,
.souvenir-turnstile {
  padding: 12px;
  border: 1px dashed var(--berry);
  border-radius: 4px;
  background: var(--paper);
}

.marketing-turnstile p,
.souvenir-turnstile p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.page-header {
  max-width: 1180px;
}

.page-nav {
  justify-content: center;
}

.page-hero {
  max-width: var(--section);
  margin: 0 auto;
  padding: 88px 24px 38px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 560;
  line-height: 1.02;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.product-directory,
.support-grid,
.contact-layout,
.policy-content {
  max-width: var(--section);
  margin: 0 auto;
  padding: 24px 24px 72px;
}

.product-directory,
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-directory article,
.support-grid article,
.contact-routes article,
.policy-content {
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--paper-card);
  box-shadow: var(--light-shadow);
}

.product-directory article,
.support-grid article,
.contact-routes article {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 18px;
}

.product-directory h2,
.support-grid h2,
.contact-routes h2 {
  margin: 10px 0 8px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.12;
}

.product-directory p,
.support-grid p,
.contact-routes p,
.policy-content p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.product-directory .text-link,
.support-grid .text-link {
  align-self: end;
  margin-top: 18px;
  color: var(--berry);
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: 26px;
  align-items: start;
}

.contact-routes {
  display: grid;
  gap: 14px;
}

.contact-form {
  margin-top: 0;
  padding: 24px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--paper-card);
  box-shadow: var(--hard-shadow);
}

.policy-content {
  margin-bottom: 72px;
  padding-block: 28px;
  padding-inline: 28px;
}

.policy-content h2 {
  margin: 26px 0 8px;
  color: var(--ink);
  font-size: 24px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content a {
  color: var(--berry);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.simple-page-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 24px;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
}

.simple-page-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  }

  .hero-tag-card {
    grid-column: 1 / -1;
    min-height: 250px;
    transform: none;
  }

  .tag-label {
    margin-top: 44px;
  }

  .trust-grid,
  .product-directory,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .waitlist-path-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
  }

  .site-nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--rule);
    border-radius: 6px;
    background: var(--paper-card);
    box-shadow: var(--hard-shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .waitlist-hero {
    grid-template-columns: 1fr;
  }

  .waitlist-spotlight {
    max-width: 420px;
  }

  .waitlist-proof-grid {
    grid-template-columns: 1fr;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .gifting-section,
  .recipient-section,
  .organizer-section,
  .souvenir-card,
  .vendor-layout,
  .connect-section,
  .screen-gallery,
  .footer-cta,
  .footer-main,
  .vendor-cta-strip,
  .waitlist-card,
  .contact-layout,
  .events-header {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    min-height: auto;
  }

  .hero-tag-card {
    order: -2;
  }

  .hero-screens {
    min-height: 610px;
  }

  .hero-copy {
    order: -1;
  }

  .recipient-screens {
    order: 2;
  }

  .recipient-carousel {
    order: 2;
    margin-left: auto;
    margin-right: auto;
  }

  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-grid article {
    transform: none !important;
  }

  .footer-cta-actions {
    justify-content: flex-start;
  }

  .footer-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .hero {
    padding: 44px 18px 58px;
  }

  .hero-copy h1 {
    font-size: 45px;
  }

  .section {
    padding: 66px 18px;
  }

  .audience-grid,
  .event-screens,
  .recipient-screens,
  .rule-grid,
  .trust-grid,
  .updates-grid,
  .product-directory,
  .support-grid,
  .support-choice-grid,
  .footer-link-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .event-screens .phone-frame:nth-child(2),
  .recipient-screens .phone-frame:nth-child(2) {
    margin-top: 0;
  }

  .waitlist-card {
    gap: 22px;
  }

  .waitlist-path-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-path-card {
    min-height: auto;
  }

  .waitlist-secondary-links {
    display: grid;
    align-items: start;
  }

  .hero-screens {
    min-height: 620px;
  }

  .hero-carousel {
    width: min(100%, 360px);
  }

  .hero-carousel-stage {
    min-height: 556px;
  }

  .hero-slide {
    width: min(270px, 86vw);
  }

  .hero-slide.is-prev,
  .hero-slide.is-next {
    opacity: 0.26;
  }

  .hero-slide.is-prev {
    transform: translateX(-70px) scale(0.78) rotate(-2deg);
  }

  .hero-slide.is-next {
    transform: translateX(70px) scale(0.78) rotate(2deg);
  }

  .visual-cluster {
    min-height: 0;
  }

  .tall-shot,
  .event-screens .phone-frame,
  .recipient-screens .phone-frame,
  .single-screen,
  .screen-gallery .phone-frame,
  .souvenir-card .phone-frame {
    width: min(270px, 100%);
    height: 528px;
    margin-left: auto;
    margin-right: auto;
  }

  .screen-gallery .screen-gallery-phone {
    height: auto;
    aspect-ratio: 462 / 900;
  }

  .event-screens .phone-frame {
    height: auto;
    aspect-ratio: 462 / 900;
  }

  .event-carousel-stage,
  .recipient-carousel-stage {
    min-height: 556px;
  }

  .event-slide,
  .recipient-slide {
    width: min(270px, 86vw);
  }

  .event-slide.is-prev,
  .event-slide.is-next,
  .recipient-slide.is-prev,
  .recipient-slide.is-next {
    opacity: 0.26;
  }

  .event-slide.is-prev,
  .recipient-slide.is-prev {
    transform: translateX(-70px) scale(0.78) rotate(-2deg);
  }

  .event-slide.is-next,
  .recipient-slide.is-next {
    transform: translateX(70px) scale(0.78) rotate(2deg);
  }

  .tag-note {
    position: relative;
    left: auto;
    bottom: auto;
    margin: -20px auto 0;
  }

  .compliance-note {
    display: block;
  }

  .modal-card,
  .souvenir-card,
  .vendor-cta-strip,
  .waitlist-card,
  .footer-cta,
  .contact-form {
    padding: 18px;
  }

  .page-hero,
  .product-directory,
  .support-grid,
  .contact-layout,
  .policy-content {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 480px) {
  .brand span {
    font-size: 16px;
  }

  .hero-actions,
  .waitlist-actions,
  .cta-row,
  .trust-actions,
  .footer-cta-actions {
    display: grid;
    align-items: stretch;
  }

  .hero-screens {
    min-height: 612px;
  }

  .hero-carousel {
    width: min(100%, 324px);
  }

  .hero-carousel-stage {
    min-height: 540px;
  }

  .hero-slide {
    width: min(270px, 86vw);
    border-width: 7px;
    border-radius: 28px;
  }

  .hero-slide.is-prev,
  .hero-slide.is-next {
    opacity: 0.2;
  }

  .hero-slide.is-prev {
    transform: translateX(-48px) scale(0.74) rotate(-2deg);
  }

  .hero-slide.is-next {
    transform: translateX(48px) scale(0.74) rotate(2deg);
  }

  .hero-carousel-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .hero-carousel-dots {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .hero-tag-card div,
  .ruled-list article,
  .vendor-ops-list article {
    grid-template-columns: 1fr;
  }

  .postmark {
    width: 72px;
    height: 72px;
    font-size: 10px;
  }

  .tall-shot,
  .event-screens .phone-frame,
  .recipient-screens .phone-frame,
  .single-screen,
  .screen-gallery .phone-frame,
  .souvenir-card .phone-frame {
    height: 488px;
  }

  .screen-gallery .screen-gallery-phone {
    height: auto;
    aspect-ratio: 462 / 900;
  }

  .event-screens .phone-frame {
    height: 526px;
    aspect-ratio: 462 / 900;
  }

  .event-carousel,
  .recipient-carousel {
    max-width: min(324px, calc(100vw - 36px));
  }

  .event-carousel-stage,
  .recipient-carousel-stage {
    min-height: 540px;
  }

  .event-slide,
  .recipient-slide {
    width: min(270px, 86vw);
  }

  .event-slide.is-prev,
  .event-slide.is-next,
  .recipient-slide.is-prev,
  .recipient-slide.is-next {
    opacity: 0.2;
  }

  .event-slide.is-prev,
  .recipient-slide.is-prev {
    transform: translateX(-48px) scale(0.74) rotate(-2deg);
  }

  .event-slide.is-next,
  .recipient-slide.is-next {
    transform: translateX(48px) scale(0.74) rotate(2deg);
  }

  .event-phone-pop,
  .recipient-slide-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
