:root {
  --bg: #090012;
  --bg-2: #12001f;
  --panel: rgba(255,255,255,.065);
  --panel-strong: rgba(255,255,255,.105);
  --line: rgba(255,255,255,.14);
  --text: #fff8ff;
  --muted: rgba(255,248,255,.72);
  --soft: rgba(255,248,255,.52);
  --pink: #f624aa;
  --coral: #ff5a63;
  --orange: #ff8b31;
  --gold: #ffd12a;
  --violet: #8c29ff;
  --gradient: linear-gradient(110deg, #ab1ee8 0%, #f624aa 38%, #ff5a63 64%, #ff9d28 100%);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 28px;
  --shadow: 0 30px 90px rgba(0,0,0,.48);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 8%, rgba(246,36,170,.25), transparent 28%),
    radial-gradient(circle at 16% 24%, rgba(140,41,255,.24), transparent 28%),
    radial-gradient(circle at 85% 76%, rgba(255,139,49,.18), transparent 24%),
    linear-gradient(180deg, #08000f 0%, #12001f 48%, #07000d 100%);
}
.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(790px, calc(100% - 40px)); }
.section { padding: 110px 0; position: relative; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(22px, calc((100vw - 1160px) / 2));
  background: rgba(9,0,18,.42);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.scrolled { background: rgba(9,0,18,.82); border-color: var(--line); }
.brand img { width: 118px; }
.nav-links { display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: var(--text); }
.legal-nav a { color: var(--text); font-weight: 800; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(246,36,170,.28);
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 22px 58px rgba(255,90,99,.34); }
.btn-small { min-height: 40px; padding: 0 18px; font-size: 13px; }
.btn-ghost { background: rgba(255,255,255,.075); border: 1px solid var(--line); box-shadow: none; }
.muted-link { color: var(--soft); }

.nav-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; }
.nav-toggle span { display: block; height: 2px; background: white; margin: 7px; border-radius: 2px; }

.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 150px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: center; }
.eyebrow {
  margin: 0 0 18px;
  color: #ff8ce2;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
}
.hero {
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9,0,18,.96) 0%, rgba(9,0,18,.78) 38%, rgba(9,0,18,.48) 100%),
    linear-gradient(180deg, rgba(9,0,18,.25) 0%, rgba(9,0,18,.92) 100%),
    url("assets/hero-bg-optimized.jpg") center right / cover no-repeat;
  opacity: .72;
  filter: saturate(1.15) contrast(1.05);
}

.story-section {
  text-align: left;
}

.story-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.16);
}

.story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(9,0,18,.45)),
    radial-gradient(circle at 20% 20%, rgba(255,139,49,.18), transparent 34%);
  pointer-events: none;
}

.story-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.story-copy p:not(.eyebrow) {
  font-size: 21px;
}

@media (max-width: 980px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .story-image img {
    height: 460px;
  }
}

@media (max-width: 640px) {
  .story-image img {
    height: 360px;
  }
}

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

.phone-feature {
  right: 290px;
  top: 70px;
  width: 310px;
  height: 635px;
  transform: rotate(5deg);
  opacity: .98;
}

.hero-bg-image {
  background:
    linear-gradient(90deg, rgba(9,0,18,.98) 0%, rgba(9,0,18,.82) 42%, rgba(9,0,18,.58) 100%),
    linear-gradient(180deg, rgba(9,0,18,.2) 0%, rgba(9,0,18,.94) 100%),
    url("assets/hero-bg-optimized.jpg") center right / cover no-repeat;
  opacity: .78;
}

@media (max-width: 980px) {
  .phone-feature {
    right: 50%;
    transform: translateX(50%) rotate(4deg);
  }
}

.hero-visual-single {
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guest-phone {
  position: relative;
  width: 330px;
  height: 660px;
  border: 10px solid #09090d;
  border-radius: 46px;
  background: #050509;
  overflow: hidden;
  transform: rotate(4deg);
  box-shadow:
    0 40px 110px rgba(0,0,0,.65),
    inset 0 0 0 1px rgba(255,255,255,.22);
}

.guest-phone::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 92px;
  height: 25px;
  transform: translateX(-50%);
  background: #000;
  border-radius: 999px;
  z-index: 5;
}

.guest-screen {
  position: relative;
  height: 100%;
  padding: 60px 24px 28px;
  text-align: center;
  overflow: hidden;
  background: #050509;
}

.guest-screen-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,0,14,.18) 0%, rgba(7,0,14,.7) 52%, rgba(5,5,9,.98) 100%),
    url("assets/wedding-story-optimized.jpg") center / cover no-repeat;
  opacity: .72;
  filter: saturate(1.05) contrast(1.08);
}

.guest-screen > *:not(.guest-screen-bg) {
  position: relative;
  z-index: 2;
}

.guest-logo {
  width: 140px;
  margin: 0 auto 40px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.55));
}

.guest-copy p {
  margin: 0 0 4px;
  color: rgba(255,255,255,.9);
  font-size: 16px;
}

.guest-copy h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 22px;
  line-height: 1.15;
}

.guest-copy span {
  color: rgba(255,255,255,.82);
  font-size: 13px;
}

.guest-form {
  margin-top: 36px;
}

.guest-form > p {
  margin-bottom: 14px;
  color: #fff;
  font-weight: 800;
}

.guest-input {
  height: 50px;
  border-radius: 10px;
  background: rgba(255,255,255,.92);
  color: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  padding: 0 16px;
  margin-bottom: 12px;
  text-align: left;
  font-size: 15px;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 18px 0;
}

.social-row span {
  width: 42px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(255,255,255,.16);
  color: white;
  font-weight: 800;
}

.guest-form .fake-button {
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-weight: 900;
  margin-top: 2px;
}

.guest-form a {
  display: inline-block;
  margin-top: 16px;
  color: #ff8ce2;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .guest-phone {
    width: 290px;
    height: 585px;
    transform: rotate(2deg);
  }

  .guest-logo {
    margin-bottom: 52px;
  }
}

h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(54px, 8vw, 104px); line-height: .92; letter-spacing: -.07em; margin-bottom: 28px; max-width: 760px; }
h2 { font-size: clamp(38px, 5vw, 72px); line-height: .96; letter-spacing: -.055em; margin-bottom: 24px; }
h3 { font-size: 22px; letter-spacing: -.03em; }
.lead { font-size: 22px; line-height: 1.45; color: var(--muted); max-width: 620px; }
p { color: var(--muted); line-height: 1.65; font-size: 17px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 20px; }
.trust-line { font-size: 14px; color: var(--soft); }

.hero-visual { position: relative; min-height: 650px; }
.phone {
  position: absolute;
  width: 282px;
  height: 580px;
  border: 10px solid #111;
  border-radius: 46px;
  background: #050509;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.22);
  overflow: hidden;
}
.phone-main { right: 160px; top: 10px; transform: rotate(-3deg); }
.phone-side { right: 0; top: 90px; transform: rotate(7deg) scale(.88); opacity: .96; }
.phone-bar { position: absolute; top: 13px; left: 50%; transform: translateX(-50%); width: 90px; height: 25px; background: #000; border-radius: 999px; z-index: 3; }
.screen { height: 100%; position: relative; overflow: hidden; padding: 52px 22px 24px; background: linear-gradient(180deg, #12001f, #05050a); }
.screen-logo { width: 150px; margin: 18px auto 20px; position: relative; z-index: 2; }
.screen-logo.small { width: 118px; }
.event-photo { height: 280px; border-radius: 24px; background: radial-gradient(circle at 70% 20%, #ff7a21, transparent 22%), radial-gradient(circle at 40% 45%, #e000ff, transparent 26%), linear-gradient(135deg, #0d1230, #180014 55%, #ff5a2d); margin-top: 40px; filter: saturate(1.3); }
.screen-content { position: absolute; left: 22px; right: 22px; bottom: 26px; padding: 22px; background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05)); border: 1px solid var(--line); border-radius: 24px; backdrop-filter: blur(14px); }
.screen-content h3 { margin-bottom: 4px; }
.screen-content p { margin: 0; font-size: 13px; }
.status-pill { display: inline-flex; padding: 6px 12px; background: rgba(0,210,130,.18); color: #5ff1b5; border-radius: 999px; font-size: 12px; font-weight: 800; margin-bottom: 12px; }
.join-screen { text-align: center; display: flex; flex-direction: column; justify-content: center; }
.join-screen::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 30%, rgba(246,36,170,.28), transparent 26%); }
.join-screen > * { position: relative; z-index: 2; }
.join-screen h3 { margin-bottom: 26px; }
.input-fake { height: 48px; border-radius: 12px; background: rgba(255,255,255,.9); color: rgba(0,0,0,.5); display: flex; align-items: center; padding: 0 14px; margin-bottom: 12px; text-align: left; }
.fake-button { height: 50px; border: 0; border-radius: 999px; background: var(--gradient); color: #fff; font-weight: 800; margin-top: 10px; }
.glow-card { position: absolute; left: 20px; bottom: 58px; width: 260px; border: 1px solid var(--line); background: rgba(255,255,255,.08); backdrop-filter: blur(18px); padding: 22px; border-radius: 24px; box-shadow: var(--shadow); }
.glow-card strong, .glow-card span { display: block; }
.glow-card span { color: var(--muted); margin-top: 8px; }

.story-section { text-align: center; }
.story-section h2 { max-width: 900px; margin-left: auto; margin-right: auto; }
.story-section p:not(.eyebrow) { font-size: 21px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.copy-stack p { font-size: 21px; }
.disposable-layout { align-items: center; }
.disposable-copy { max-width: 560px; }
.disposable-copy .copy-stack { margin-top: 28px; }
.disposable-image {
  justify-self: end;
  width: min(100%, 610px);
  filter: drop-shadow(0 34px 70px rgba(0,0,0,.42));
}
.disposable-image img { width: 100%; }
.disposable-section::before, .wall-section::before, .final-section::before {
  content: ""; position: absolute; inset: 20px; border-radius: 40px; background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); border: 1px solid var(--line); z-index: -1;
}

.section-heading { text-align: center; margin-bottom: 50px; }
.section-heading p:not(.eyebrow) { max-width: 640px; margin: 0 auto; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.timeline-card, .moment-card {
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 250px;
}
.timeline-card span { color: #ff8ce2; font-weight: 900; font-size: 13px; letter-spacing: .14em; }
.timeline-card h3, .moment-card h3 { margin: 24px 0 12px; }

.wall-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: center; }
.wall-preview { position: relative; min-height: 500px; padding: 28px; background: #050508 url("assets/live-wall-bg-optimized.jpg") top / cover no-repeat; border: 1px solid var(--line); border-radius: 36px; box-shadow: var(--shadow); overflow: hidden; }
.wall-preview::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,8,.18), rgba(5,5,8,.32)), linear-gradient(180deg, rgba(5,5,8,.1), rgba(5,5,8,.32)); }
.wall-preview::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 28% 34%, rgba(246,36,170,.24), transparent 27%), radial-gradient(circle at 73% 68%, rgba(255,139,49,.18), transparent 28%); }
.wall-topbar { position: relative; z-index: 2; display: flex; align-items: center; gap: 12px; color: #fff; font-size: 13px; font-weight: 900; letter-spacing: .08em; }
.wall-topbar span { width: 10px; height: 10px; border-radius: 50%; background: #ff315e; box-shadow: 0 0 20px #ff315e; }
.wall-topbar em { margin-left: auto; color: var(--muted); font-style: normal; font-weight: 700; letter-spacing: 0; }
.wall-live-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}
.live-thumbnails { display: flex; gap: 10px; width: min(100%, 520px); }
.live-thumbnails span {
  flex: 1;
  aspect-ratio: 4 / 3;
  min-width: 0;
  border: 2px solid rgba(255,255,255,.74);
  border-radius: 9px;
  background: url("assets/wall-thumb-party.png") center / cover no-repeat;
  box-shadow: 0 12px 30px rgba(0,0,0,.34);
}
.live-thumbnails span:nth-child(2) { background-image: url("assets/wall-thumb-wedding.png"); }
.live-thumbnails span:nth-child(3) { background-image: url("assets/wall-thumb-birthday.png"); }
.live-thumbnails span:nth-child(4) { background-image: url("assets/wall-thumb-poolparty.png"); }
.live-status { display: flex; align-items: center; gap: 8px; margin-top: 10px; color: rgba(255,248,255,.78); font-size: 12px; font-weight: 700; }
.live-status span { width: 8px; height: 8px; border-radius: 50%; background: #39e98f; box-shadow: 0 0 18px rgba(57,233,143,.8); }
.qr-card { position: absolute; right: 34px; bottom: 36px; width: 140px; height: 140px; border-radius: 18px; background: #fff; color: #111; display: grid; place-items: center; font-weight: 950; font-size: 28px; z-index: 3; }

.moment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.moment-card {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}
.moment-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.moment-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,5,8,.06), rgba(5,5,8,.28)),
    linear-gradient(90deg, rgba(246,36,170,.1), rgba(5,5,8,.08) 48%, rgba(255,139,49,.08));
}
.moment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}
.moment-copy {
  padding: 26px;
  background: linear-gradient(180deg, rgba(5,5,8,.74), rgba(5,5,8,.5));
  border-top: 1px solid rgba(255,255,255,.12);
}
.moment-card h3 { margin: 0 0 10px; }
.moment-card p { margin: 0; color: rgba(255,248,255,.82); font-size: 16px; line-height: 1.58; }

.feature-list { display: grid; gap: 14px; }
.feature-list div { padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: var(--panel); }
.feature-list strong, .feature-list span { display: block; }
.feature-list span { color: var(--muted); margin-top: 6px; line-height: 1.5; }

.pricing-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.pricing-tier {
  min-height: 154px;
  padding: 20px 12px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel);
  color: var(--text);
  font: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.pricing-tier:hover,
.pricing-tier.is-selected {
  transform: translateY(-5px);
  background: var(--panel-strong);
  border-color: rgba(255,139,49,.52);
  box-shadow: 0 20px 60px rgba(246,36,170,.18);
}
.pricing-tier strong { font-size: 33px; letter-spacing: -.04em; }
.pricing-tier span { color: var(--muted); }
.pricing-tier em {
  margin-top: 12px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
}
.pricing-summary {
  width: min(820px, 100%);
  margin: 26px auto 0;
  padding: 24px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
}
.pricing-summary span {
  display: block;
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pricing-summary strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
  letter-spacing: -.03em;
}
.pricing-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.checkout-form {
  width: min(820px, 100%);
  margin: 26px auto 0;
}
.checkout-form .pricing-summary {
  width: 100%;
  margin-top: 0;
}
.event-form-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 14px;
}
.event-form-grid label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-align: left;
  text-transform: uppercase;
}
.event-form-grid input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0,0,0,.26);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  letter-spacing: 0;
  padding: 0 16px;
  text-transform: none;
  outline: none;
}
.event-form-grid input:focus {
  border-color: rgba(255,139,49,.7);
  box-shadow: 0 0 0 3px rgba(255,139,49,.14);
}
.event-form-grid input::placeholder { color: rgba(255,248,255,.38); }
.checkout-note {
  max-width: 660px;
  margin: 16px auto 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}
.pricing-cta { display: flex; justify-content: center; gap: 14px; margin-top: 34px; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.faq-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
}
.faq-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}
.faq-card p {
  margin: 0;
  color: var(--muted);
}

.final-section {
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.final-section::before {
  content: "";
  position: absolute;
  inset: 20px;
  z-index: 0;
  border-radius: 40px;
  background: url("assets/live-wall-bg2-optimized.jpg") center / cover no-repeat;
}
.final-section::after {
  content: "";
  position: absolute;
  inset: 20px;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 40px;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 35%, rgba(0,0,0,.16), rgba(0,0,0,.62) 62%),
    linear-gradient(180deg, rgba(5,5,8,.7), rgba(5,5,8,.84));
}
.final-section .container {
  position: relative;
  z-index: 2;
}
.final-logo { width: 180px; margin: 0 auto 28px; }
.final-section p { font-size: 22px; }

.legal-main { padding-top: 82px; }
.legal-hero {
  padding-bottom: 54px;
  text-align: center;
}
.legal-hero h1 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.legal-hero .lead {
  margin-left: auto;
  margin-right: auto;
}
.legal-updated {
  margin-top: 24px;
  color: var(--soft);
  font-size: 14px;
}
.legal-section { padding-top: 0; }
.legal-content {
  max-width: 920px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.legal-content h2 {
  margin: 42px 0 14px;
  font-size: 28px;
  line-height: 1.16;
  letter-spacing: -.03em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  margin-bottom: 16px;
  color: rgba(255,248,255,.78);
}
.legal-content a {
  color: #ff8ce2;
  font-weight: 800;
}
.checkout-review dl {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
}
.checkout-review dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.checkout-review dt {
  color: var(--soft);
  font-weight: 900;
}
.checkout-review dd {
  margin: 0;
  color: var(--text);
  text-align: right;
}
.checkout-review .btn { color: #fff; }

.docs-main { padding-top: 82px; }
.docs-hero {
  padding-bottom: 54px;
  text-align: center;
}
.docs-hero h1 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.docs-hero .lead {
  margin-left: auto;
  margin-right: auto;
}
.docs-section { padding-top: 0; }
.docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 34px;
  align-items: start;
}
.docs-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
}
.docs-sidebar a {
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
}
.docs-sidebar a:hover {
  color: var(--text);
  background: rgba(255,255,255,.08);
}
.docs-content { display: grid; gap: 24px; }
.docs-step {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.docs-step h2 {
  margin-bottom: 16px;
  font-size: 44px;
}
.docs-placeholder {
  min-height: 320px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(246,36,170,.14), rgba(255,139,49,.1)),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}
.docs-placeholder span {
  color: rgba(255,248,255,.48);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer { padding: 40px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer img { width: 92px; opacity: .9; }
.footer span, .footer a { color: var(--muted); margin-left: 22px; font-size: 14px; }
.footer span { color: var(--soft); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links { position: fixed; top: 82px; left: 16px; right: 16px; padding: 20px; border: 1px solid var(--line); border-radius: 24px; background: rgba(9,0,18,.95); flex-direction: column; align-items: stretch; display: none; }
  .nav-links.open { display: flex; }
  .legal-nav { position: static; display: flex; padding: 0; border: 0; border-radius: 0; background: transparent; }
  .hero-grid, .split, .wall-grid { grid-template-columns: 1fr; gap: 40px; }
  .docs-layout, .docs-step { grid-template-columns: 1fr; }
  .docs-sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
  .disposable-image { justify-self: center; width: min(100%, 720px); }
  .hero-visual { min-height: 620px; }
  .phone-main { left: 10%; right: auto; }
  .phone-side { right: 5%; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(100% - 28px, 1160px); }
  .section { padding: 78px 0; }
  .brand img { width: 96px; }
  h1 { font-size: 54px; }
  h2 { font-size: 36px; line-height: 1.04; letter-spacing: -.045em; }
  .lead, .copy-stack p, .story-section p:not(.eyebrow) { font-size: 18px; }
  .hero { padding-top: 120px; }
  .hero-visual { min-height: 520px; }
  .phone { width: 230px; height: 470px; border-radius: 38px; }
  .phone-main { left: 0; top: 0; }
  .phone-side { right: -26px; top: 80px; }
  .glow-card { left: 10px; bottom: 0; width: 230px; }
  .disposable-section .container,
  .wall-section .container,
  .final-section .container { width: min(100% - 56px, 1160px); }
  .disposable-section::before, .wall-section::before, .final-section::before { inset: 12px; border-radius: 32px; }
  .eyebrow { font-size: 11px; letter-spacing: .14em; }
  .copy-stack p { font-size: 17px; line-height: 1.58; }
  .wall-grid p:not(.eyebrow) { font-size: 18px; line-height: 1.58; }
  .timeline, .moment-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pricing-tier { min-height: 108px; padding: 16px 10px; border-radius: 20px; }
  .pricing-tier:hover,
  .pricing-tier.is-selected { transform: none; }
  .pricing-tier.is-selected { border-color: rgba(255,139,49,.8); box-shadow: 0 0 0 2px rgba(255,139,49,.18), 0 16px 40px rgba(246,36,170,.18); }
  .pricing-tier strong { font-size: 28px; }
  .pricing-tier span { font-size: 14px; }
  .pricing-tier em { margin-top: 8px; font-size: 16px; }
  .pricing-tier:last-child { grid-column: 1 / -1; }
  .pricing-summary { margin-top: 18px; grid-template-columns: 1fr 1fr; gap: 14px; padding: 18px; }
  .pricing-summary p { grid-column: 1 / -1; font-size: 14px; }
  .event-form-grid { grid-template-columns: 1fr; }
  .checkout-note { text-align: left; }
  .faq-grid { grid-template-columns: 1fr; }
  .docs-sidebar { grid-template-columns: 1fr; }
  .docs-step { padding: 24px; border-radius: 24px; }
  .docs-step h2 { font-size: 32px; }
  .docs-placeholder { min-height: 220px; }
  .live-thumbnails { width: calc(100% - 112px); }
  .wall-live-card { left: 18px; right: 18px; bottom: 22px; }
  .qr-card { right: 18px; bottom: 24px; width: 84px; height: 84px; border-radius: 14px; font-size: 20px; }
  .pricing-cta, .hero-actions { flex-direction: column; }
  .footer-inner { flex-direction: column; }
  .footer span, .footer a { margin: 0 8px; }
  .legal-content { padding: 28px; border-radius: 24px; }
  .legal-content h2 { font-size: 24px; }
  .checkout-review dl div { display: grid; gap: 6px; }
  .checkout-review dd { text-align: left; }
}
