:root {
  --ink: #100e0b;
  --ink-2: #15120d;
  --panel: #1b1712;
  --panel-2: #221d16;
  --footer: #0c0b08;
  --gold: #c8a04b;
  --gold-bright: #dab968;
  --gold-deep: #9a7a2f;
  --gold-line: rgba(200, 160, 75, .30);
  --text: #e3ddcc;
  --text-dim: #978e79;
  --text-faint: #635c4d;
  --line: rgba(255, 255, 255, .10);
  --line-2: rgba(255, 255, 255, .055);
  --paper: #ece4d2;
  --paper-2: #e4dac4;
  --paper-ink: #241f17;
  --paper-dim: #6c6353;
  --ease: cubic-bezier(.22, .66, .28, 1);
  --r-card: 16px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--text);
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[lang="uk"] body,
html[lang="ru"] body {
  font-family: "Montserrat", "Poppins", "Helvetica Neue", Arial, sans-serif;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: rgba(200, 160, 75, .30);
}

[hidden] {
  display: none !important;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
figure,
fieldset {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: #fff;
  font-weight: 700;
  letter-spacing: -.022em;
  line-height: 1.08;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 18px;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: #181206;
  font-size: .78rem;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform .2s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  position: relative;
  padding-block: clamp(5.25rem, 9vw, 8.5rem);
}

.section-alt {
  background: var(--ink-2);
}

.section-paper {
  background: linear-gradient(145deg, var(--paper), var(--paper-2));
  color: var(--paper-ink);
}

.section-paper h1,
.section-paper h2,
.section-paper h3 {
  color: var(--paper-ink);
}

.section-paper .accent,
.section-paper .eyebrow {
  color: var(--gold-deep);
}

.section-paper .eyebrow::before {
  background: var(--gold-deep);
}

.section-paper .eyebrow-number,
.section-paper .lead,
.section-paper .tier-kicker,
.section-paper .section-note {
  color: var(--paper-dim);
}

.section-paper .card {
  background: rgba(255, 255, 255, .40);
  border-color: rgba(36, 31, 23, .14);
  box-shadow: 0 20px 55px rgba(66, 52, 27, .08);
}

.section-paper .card:hover {
  border-color: rgba(154, 122, 47, .48);
  background: rgba(255, 255, 255, .60);
}

.section-paper .card li {
  color: var(--paper-dim);
}

.section-head {
  max-width: 780px;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.section-head .lead:last-child,
.section-head > :last-child {
  margin-bottom: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.15rem;
  color: var(--gold);
  font-size: clamp(.62rem, 1.2vw, .77rem);
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  flex: 0 0 26px;
  background: var(--gold);
  content: "";
}

.eyebrow-number {
  color: rgba(200, 160, 75, .58);
}

.display {
  max-width: 900px;
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 3.9vw, 3rem);
  letter-spacing: -.026em;
}

.lead {
  max-width: 690px;
  color: var(--text-dim);
  font-size: clamp(1.03rem, 1.8vw, 1.16rem);
  line-height: 1.7;
}

.accent {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: 1.08em 2.05em;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transition:
    color .25s var(--ease),
    background-color .25s var(--ease),
    border-color .25s var(--ease),
    transform .25s var(--ease);
}

.btn-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: #181206;
}

.btn-gold:hover {
  border-color: var(--gold-bright);
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--gold-line);
  background: transparent;
  color: var(--gold-bright);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(200, 160, 75, .07);
  transform: translateY(-2px);
}

.btn-arrow {
  display: inline-block;
  transition: transform .25s var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn:disabled {
  cursor: wait;
  opacity: .62;
  transform: none;
}

.card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.45rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--panel);
  transition:
    transform .35s var(--ease),
    border-color .35s var(--ease),
    background-color .35s var(--ease),
    box-shadow .35s var(--ease);
}

.card:hover {
  border-color: var(--gold-line);
  background: var(--panel-2);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .19);
  transform: translateY(-6px);
}

.card[data-number]::after {
  position: absolute;
  top: .55rem;
  right: 1rem;
  color: rgba(200, 160, 75, .12);
  content: attr(data-number);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: 1;
  pointer-events: none;
}

.card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: .75rem;
  font-size: 1.12rem;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .58rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(20, 17, 13, .66);
  color: var(--text);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .025em;
  line-height: 1.3;
  backdrop-filter: blur(7px);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.25rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition:
    background-color .3s var(--ease),
    border-color .3s var(--ease),
    box-shadow .3s var(--ease);
}

.site-header.is-scrolled,
.nav-open .site-header {
  border-bottom-color: var(--line-2);
  background: rgba(16, 14, 11, .90);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .14);
  backdrop-filter: blur(14px);
}

.header-row {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 1.5rem;
}

.brand {
  position: relative;
  z-index: 4;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: .72rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  color: #fff;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.brand-sub {
  margin-top: .28rem;
  color: var(--gold);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(.95rem, 2vw, 1.55rem);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding-block: .4rem;
  color: var(--text-dim);
  font-size: .76rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color .22s var(--ease);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.site-nav a:hover {
  color: #fff;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: .85rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: .1rem;
  padding: .22rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
}

.lang-switch a {
  min-width: 30px;
  padding: .31rem .4rem;
  border-radius: 999px;
  color: var(--text-faint);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1;
  text-align: center;
  transition:
    background-color .2s var(--ease),
    color .2s var(--ease);
}

.lang-switch a:hover {
  color: var(--text);
}

.lang-switch a.is-active,
.lang-switch a[aria-current="page"] {
  background: rgba(200, 160, 75, .13);
  color: var(--gold-bright);
}

.header-cta {
  padding: .9em 1.45em;
  font-size: .62rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .025);
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--text);
  transition: transform .25s var(--ease);
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(920px, 100vh);
  overflow: hidden;
  padding-block: clamp(8.8rem, 14vw, 11.5rem) clamp(5rem, 9vw, 8rem);
  background:
    radial-gradient(circle at 62% 0%, rgba(200, 160, 75, .12), transparent 42%),
    linear-gradient(180deg, #13110c 0%, #100e0b 72%);
}

.hero::after {
  position: absolute;
  right: -14rem;
  bottom: -22rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(200, 160, 75, .08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 1.35rem;
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  letter-spacing: -.03em;
  line-height: 1.045;
}

.hero .lead {
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.trust-line {
  margin: 1.2rem 0 0;
  color: var(--text-faint);
  font-size: .75rem;
  letter-spacing: .025em;
}

.hero-visual {
  position: relative;
  min-height: 630px;
  display: grid;
  place-items: center;
}

.countdown-chip {
  position: absolute;
  z-index: 3;
  top: 1.2rem;
  right: -.3rem;
  border-color: var(--gold-line);
  box-shadow: 0 16px 35px rgba(0, 0, 0, .28);
}

.countdown-chip [data-countdown] {
  color: var(--gold-bright);
}

.phone {
  position: relative;
  width: min(100%, 315px);
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 46px;
  background: #090806;
  box-shadow:
    0 55px 95px rgba(0, 0, 0, .46),
    0 0 0 6px rgba(255, 255, 255, .018);
  transform: rotate(2deg);
}

.phone::before {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 50%;
  width: 78px;
  height: 19px;
  border-radius: 99px;
  background: #090806;
  content: "";
  transform: translateX(-50%);
}

.phone-screen {
  overflow: hidden;
  min-height: 585px;
  border: 1px solid var(--line-2);
  border-radius: 35px;
  background: #14110d;
}

.phone-top {
  display: flex;
  height: 57px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 17px 10px;
  color: var(--text-dim);
  font-size: .58rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.phone-monogram {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 700;
}

.phone-photo {
  position: relative;
  height: 342px;
  overflow: hidden;
  margin-inline: 10px;
  border: 1px solid rgba(200, 160, 75, .19);
  border-radius: 25px;
  background:
    radial-gradient(circle at 67% 28%, rgba(239, 208, 140, .40) 0 6%, transparent 7%),
    radial-gradient(ellipse at 61% 43%, rgba(183, 132, 64, .48) 0 17%, transparent 18%),
    radial-gradient(ellipse at 56% 77%, rgba(76, 54, 29, .9) 0 30%, transparent 31%),
    radial-gradient(circle at 17% 18%, rgba(220, 181, 96, .23), transparent 28%),
    linear-gradient(150deg, #554325 0%, #241d14 42%, #0e0c09 100%);
}

.phone-photo::before,
.phone-photo::after {
  position: absolute;
  border: 1px solid rgba(231, 198, 121, .16);
  border-radius: 50%;
  content: "";
}

.phone-photo::before {
  width: 230px;
  height: 230px;
  top: -74px;
  left: -92px;
}

.phone-photo::after {
  width: 170px;
  height: 170px;
  right: -66px;
  bottom: -55px;
}

.phone-profile {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 3.5rem 1.1rem 1.05rem;
  background: linear-gradient(transparent, rgba(9, 8, 6, .94));
}

.phone-name {
  margin: 0 0 .55rem;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
}

.phone-debut {
  border-color: var(--gold-line);
  background: rgba(15, 12, 8, .58);
  color: var(--gold-bright);
  font-size: .56rem;
  text-transform: uppercase;
}

.phone-composer {
  padding: 13px 14px 16px;
}

.phone-note {
  min-height: 58px;
  margin-bottom: 10px;
  padding: .8rem .9rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text-faint);
  font-size: .62rem;
  line-height: 1.45;
}

.phone-button {
  width: 100%;
  padding: .84rem 1rem;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #181206;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

/* Proof and content sections */
.proof-strip {
  border-block: 1px solid var(--line-2);
  background: var(--ink-2);
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  margin: 0;
  padding-block: 1.15rem;
  list-style: none;
}

.proof-list .chip {
  background: transparent;
  color: var(--text-dim);
}

.evening-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}

.evening-copy > div > p {
  color: var(--text-dim);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(3rem, 7vw, 5.5rem);
  border-block: 1px solid var(--line);
  background: var(--line);
}

.stat {
  min-height: 132px;
  padding: 1.5rem;
  background: var(--ink);
}

.section-alt .stat {
  background: var(--ink-2);
}

.stat strong {
  display: block;
  margin-bottom: .4rem;
  color: var(--gold);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1;
}

.stat span {
  color: var(--text-dim);
  font-size: .8rem;
}

.tabs {
  margin-top: 1rem;
}

.tabs-bar {
  display: inline-flex;
  gap: .3rem;
  margin-bottom: 1.4rem;
  padding: .3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
}

.tab-button {
  min-width: 135px;
  padding: .82rem 1.25rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-dim);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .065em;
  transition:
    color .22s var(--ease),
    background-color .22s var(--ease);
}

.tab-button[aria-selected="true"] {
  background: var(--gold);
  color: #181206;
}

.tab-panel + .tab-panel {
  margin-top: 2rem;
}

.is-enhanced .tab-panel + .tab-panel {
  margin-top: 0;
}

.is-enhanced .tab-panel-title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.tab-panel-title {
  margin-bottom: 1rem;
  color: var(--gold-bright);
  font-size: 1rem;
}

.steps .card {
  min-height: 225px;
  padding-top: 2.2rem;
}

.steps .card p,
.principles .card p {
  position: relative;
  z-index: 1;
  color: var(--text-dim);
  font-size: .9rem;
}

.women-note {
  margin-top: 1.25rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-card);
  color: var(--text);
  background: rgba(200, 160, 75, .055);
}

.women-note strong {
  color: var(--gold-bright);
}

.principles .card {
  min-height: 220px;
}

.tiers .card {
  min-height: 390px;
}

.tier-kicker {
  margin-bottom: 1rem;
  color: var(--text-dim);
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.tier-name {
  margin-bottom: 1.4rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.tier-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tier-list li {
  position: relative;
  margin-top: .8rem;
  padding-left: 1.25rem;
  font-size: .9rem;
}

.tier-list li::before {
  position: absolute;
  top: .7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-deep);
  content: "";
}

.section-note {
  max-width: 860px;
  margin: 1.5rem 0 0;
  color: var(--text-faint);
  font-size: .78rem;
}

.table-grid,
.safety-grid,
.invite-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.table-copy p,
.safety-copy p {
  max-width: 650px;
  color: var(--text-dim);
}

.text-link {
  color: var(--gold-bright);
  text-decoration: underline;
  text-decoration-color: var(--gold-line);
  text-underline-offset: .2em;
}

.text-link:hover {
  text-decoration-color: var(--gold);
}

.venue-card {
  min-height: 350px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(200, 160, 75, .13), transparent 35%),
    var(--panel);
}

.venue-card:hover {
  transform: none;
}

.venue-mark {
  position: relative;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
}

.venue-mark::before,
.venue-mark::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.venue-mark::before {
  width: 132px;
  height: 132px;
  border: 1px solid var(--line);
}

.venue-mark::after {
  width: 62px;
  height: 62px;
  border: 1px solid var(--gold-line);
  background: rgba(200, 160, 75, .06);
}

.venue-mark span {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 9px;
  left: 0;
  color: var(--text-faint);
  font-size: .59rem;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
}

.promise-card {
  padding-block: .5rem;
}

.promise-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.promise-list li {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: 1.15rem .8rem;
  border-bottom: 1px solid var(--line-2);
  color: var(--text-dim);
  font-size: .88rem;
}

.promise-list li:last-child {
  border-bottom: 0;
}

.promise-list li::before {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: .2rem;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  color: var(--gold);
  content: "✓";
  font-size: .65rem;
  line-height: 17px;
  text-align: center;
}

.safety-copy .btn {
  margin-top: 1rem;
}

/* FAQ */
.faq-list {
  max-width: 900px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(.98rem, 2vw, 1.14rem);
  font-weight: 600;
  letter-spacing: -.01em;
  text-align: left;
}

.faq-icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .25s var(--ease);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-button[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-panel {
  max-width: 730px;
  padding: 0 3.2rem 1.45rem 0;
  color: var(--text-dim);
  font-size: .92rem;
}

.faq-panel p {
  margin-bottom: 0;
}

/* Invitation */
.invitation {
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(200, 160, 75, .11), transparent 30%),
    var(--ink-2);
}

.invite-grid {
  align-items: start;
}

.invite-copy .section-head {
  margin-bottom: 0;
}

.waitlist-panel {
  padding: clamp(1.4rem, 4vw, 2.2rem);
}

.waitlist-form fieldset {
  padding: 0;
  border: 0;
}

.field-label,
.audience-label {
  display: block;
  margin-bottom: .65rem;
  color: var(--text-dim);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .45rem;
  margin-bottom: 1rem;
  padding: .3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.segmented label {
  padding: .72rem .75rem;
  border-radius: 999px;
  color: var(--text-dim);
  cursor: pointer;
  font-size: .76rem;
  font-weight: 500;
  text-align: center;
  transition:
    color .22s var(--ease),
    background-color .22s var(--ease);
}

.segmented input:focus-visible + label {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

.segmented input:checked + label {
  background: rgba(200, 160, 75, .16);
  color: var(--gold-bright);
}

.email-input {
  width: 100%;
  min-height: 54px;
  margin-bottom: .85rem;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: 0;
  background: rgba(255, 255, 255, .035);
  color: #fff;
  transition:
    border-color .2s var(--ease),
    box-shadow .2s var(--ease);
}

.email-input::placeholder {
  color: var(--text-faint);
}

.email-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 160, 75, .12);
}

.waitlist-form .btn {
  width: 100%;
}

.consent-copy {
  margin: .85rem 0 0;
  color: var(--text-faint);
  font-size: .7rem;
  line-height: 1.55;
}

.consent-copy a,
.form-status a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: .18em;
}

.form-status {
  margin: 0;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  font-size: .86rem;
}

.form-status.is-success {
  border-color: var(--gold-line);
  background: rgba(200, 160, 75, .07);
}

.form-status.is-error {
  margin-top: 1rem;
}

.invitation-aside {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.invitation-aside p {
  margin: 0;
  color: var(--text-faint);
  font-size: .72rem;
}

.badge-appstore {
  display: inline-block;
  border-radius: 9px;
  transition: transform .25s var(--ease);
}

.badge-appstore:hover {
  transform: translateY(-2px);
}

.badge-appstore.is-primary {
  filter: drop-shadow(0 12px 24px rgba(200, 160, 75, .14));
}

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

/* Footer */
.site-footer {
  border-top: 1px solid var(--line-2);
  background: var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding-block: 4.5rem 3.2rem;
}

.footer-brand img {
  border-radius: 12px;
}

.footer-name {
  margin: .9rem 0 .3rem;
  color: #fff;
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-tag {
  max-width: 290px;
  margin-bottom: 1.1rem;
  color: var(--text-faint);
  font-size: .74rem;
}

.footer-head {
  margin-bottom: 1.05rem;
  color: var(--gold);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  width: fit-content;
  margin-top: .72rem;
  color: var(--text-dim);
  font-size: .75rem;
  transition: color .2s var(--ease);
}

.footer-col a:hover,
.footer-social a:hover {
  color: #fff;
}

.legal-language-note {
  margin: .9rem 0 0;
  color: var(--text-faint);
  font-size: .65rem;
  line-height: 1.5;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.25rem;
  border-top: 1px solid var(--line-2);
  color: var(--text-faint);
  font-size: .64rem;
}

.footer-base p {
  margin: 0;
}

.footer-social {
  flex: 0 0 auto;
}

.sticky-cta {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  padding: .65rem 18px calc(.65rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(16, 14, 11, .92);
  backdrop-filter: blur(16px);
  transition:
    opacity .25s var(--ease),
    transform .25s var(--ease),
    visibility .25s;
}

.sticky-cta .btn {
  width: 100%;
}

.sticky-cta.is-hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(100%);
}

/* Legal article contract */
.prose {
  width: calc(100% - 48px);
  max-width: 72ch;
  margin-inline: auto;
  padding-block: clamp(8.5rem, 13vw, 11rem) clamp(5rem, 9vw, 8rem);
  color: var(--text);
}

.prose h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  letter-spacing: -.03em;
}

.prose h2 {
  margin: 3.5rem 0 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.prose h3 {
  margin: 2.3rem 0 .75rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.prose p,
.prose li,
.prose dd {
  color: var(--text-dim);
}

.prose p,
.prose ul,
.prose ol,
.prose dl,
.prose table,
.prose blockquote {
  margin-bottom: 1.35rem;
}

.prose ul,
.prose ol {
  padding-left: 1.35rem;
}

.prose li + li {
  margin-top: .55rem;
}

.prose a {
  color: var(--gold-bright);
  text-decoration-color: transparent;
  text-underline-offset: .2em;
  transition: text-decoration-color .2s var(--ease);
}

.prose a:hover {
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}

.prose hr {
  height: 1px;
  margin-block: 2.5rem;
  border: 0;
  background: var(--line);
}

.prose blockquote {
  margin-left: 0;
  padding: 1.1rem 1.25rem;
  border-left: 2px solid var(--gold);
  background: rgba(200, 160, 75, .05);
}

.prose blockquote p:last-child {
  margin-bottom: 0;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  font-size: .86rem;
}

.prose th,
.prose td {
  padding: .8rem .9rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: rgba(255, 255, 255, .035);
  color: var(--text);
  font-weight: 600;
}

.prose td {
  color: var(--text-dim);
}

.prose dt {
  margin-top: 1.2rem;
  color: #fff;
  font-weight: 600;
}

.prose dd {
  margin-left: 0;
}

.legal-meta {
  margin-bottom: 2rem;
  color: var(--text-faint);
  font-size: .76rem;
}

.toc {
  margin-block: 2.2rem 3rem;
  padding: 1.35rem 1.55rem;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--panel);
}

.toc p {
  margin-bottom: .8rem;
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.toc ul,
.toc ol {
  margin-bottom: 0;
}

.contact-card {
  margin-top: 2.5rem;
  padding: clamp(1.4rem, 4vw, 2rem);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-card);
  background: var(--panel);
}

.contact-card h2,
.contact-card h3 {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card .btn {
  margin-top: .4rem;
  color: #181206;
  text-decoration: none;
}

/* Progressive reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .72s var(--ease),
    transform .72s var(--ease);
  transition-delay: 0s;
}

.reveal-delay-1 {
  transition-delay: .08s;
}

.reveal-delay-2 {
  transition-delay: .16s;
}

.reveal-delay-3 {
  transition-delay: .24s;
}

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

@media (max-width: 1060px) {
  .header-cta {
    display: none;
  }

  .site-nav {
    gap: 1rem;
  }

  .hero-grid {
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: .3rem;
    margin: 0;
    padding: 7rem 24px 4rem;
    background: rgba(12, 11, 8, .90);
    opacity: 0;
    backdrop-filter: blur(16px);
    transform: translateY(-12px);
    transition:
      visibility .3s,
      opacity .3s var(--ease),
      transform .3s var(--ease);
  }

  .site-nav a {
    width: 100%;
    padding: .65rem 0;
    color: var(--text);
    font-size: clamp(1.35rem, 7vw, 2.3rem);
    font-weight: 600;
    letter-spacing: -.02em;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .countdown-chip {
    top: 1.5rem;
    right: calc(50% - 190px);
  }

  .evening-copy,
  .table-grid,
  .safety-grid,
  .invite-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tiers .card {
    min-height: 350px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  .container {
    padding-inline: 18px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: .68rem;
  }

  .brand-sub {
    font-size: .5rem;
  }

  .lang-switch a {
    min-width: 27px;
    padding-inline: .28rem;
    font-size: .53rem;
  }

  .header-actions {
    margin-left: auto;
    gap: .45rem;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-top: 7.5rem;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12.5vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 590px;
  }

  .phone {
    width: min(90vw, 300px);
  }

  .phone-screen {
    min-height: 558px;
  }

  .phone-photo {
    height: 320px;
  }

  .countdown-chip {
    right: 0;
    max-width: 230px;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 104px;
  }

  .tabs-bar {
    width: 100%;
  }

  .tab-button {
    min-width: 0;
    flex: 1;
  }

  .principles .card,
  .steps .card,
  .tiers .card {
    min-height: 0;
  }

  .venue-card {
    min-height: 300px;
  }

  .invitation-aside {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem 1.5rem;
    padding-block: 3.5rem 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-base {
    flex-direction: column;
  }

  .landing-page {
    padding-bottom: 70px;
  }

  .sticky-cta {
    display: block;
  }

  .prose {
    width: calc(100% - 36px);
  }

  .prose table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 430px) {
  .brand-text {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* Enter-the-web-app row inside the invitation section */
.invite-enter {
  margin: 0 0 12px;
}

.invite-enter + .trust-line {
  margin: 0 0 22px;
  font-size: .84rem;
}
