:root {
  --bg-900: #030814;
  --bg-800: #071126;
  --bg-700: #0b1230;
  --deep-blue: #101a3a;
  --lavender-glow: #b9a7ff;
  --soft-violet: #8f7cff;
  --gold: #d9b36c;
  --pale-gold: #f0d9a2;
  --text-main: #f8f2e8;
  --text-muted: #c8c4d8;
  --card-border: rgba(217, 179, 108, 0.35);
  --glass-card: rgba(8, 14, 35, 0.72);
  --shadow-xl: 0 28px 70px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 24px rgba(185, 167, 255, 0.22);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(185, 167, 255, 0.14), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(84, 140, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #060b1b 0%, #040913 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 12%, rgba(255, 255, 255, 0.6) 0 1px, transparent 1.5px),
    radial-gradient(circle at 63% 75%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.5px),
    radial-gradient(circle at 40% 52%, rgba(217, 179, 108, 0.5) 0 1px, transparent 1.5px),
    radial-gradient(circle at 90% 36%, rgba(255, 255, 255, 0.45) 0 1px, transparent 1.5px);
  opacity: 0.9;
}

.page-shell {
  position: relative;
  width: min(1400px, calc(100% - 20px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.cosmos-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.45);
  animation: floatParticle 10s ease-in-out infinite;
}

.p-1 { top: 11%; left: 7%; animation-delay: -1.5s; }
.p-2 { top: 29%; right: 13%; animation-delay: -4.5s; }
.p-3 { top: 53%; left: 31%; animation-delay: -2s; }
.p-4 { bottom: 24%; right: 24%; animation-delay: -6.2s; }
.p-5 { bottom: 13%; left: 12%; animation-delay: -3.6s; }
.p-6 { top: 15%; right: 39%; animation-delay: -5.4s; }

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-12px) scale(1.2); opacity: 1; }
}

.screen-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.phone-panel {
  position: relative;
  padding: 22px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(185, 167, 255, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(7, 13, 33, 0.98), rgba(4, 9, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.phone-panel::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 31px;
  border: 1px solid rgba(217, 179, 108, 0.08);
  pointer-events: none;
}

.glass-card {
  position: relative;
  padding: 18px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(10, 17, 40, 0.9), rgba(7, 12, 29, 0.95)),
    rgba(8, 14, 35, 0.72);
  border: 1px solid var(--card-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), var(--shadow-glow);
}

.mini-header,
.brand,
.hero-actions,
.thank-you-actions,
.goods-card,
.footer-brand {
  display: flex;
  align-items: center;
}

.mini-header {
  justify-content: space-between;
  margin-bottom: 34px;
}

.brand {
  gap: 10px;
  color: var(--text-main);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-crystal,
.footer-mark,
.crystal-icon,
.star-map-icon,
.heart-icon {
  position: relative;
  flex: none;
}

.brand-crystal {
  width: 14px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(243, 217, 162, 0.95), rgba(145, 173, 255, 0.3));
  box-shadow: 0 0 16px rgba(185, 167, 255, 0.45);
}

.menu-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: rgba(13, 19, 43, 0.7);
  display: grid;
  place-items: center;
  gap: 3px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 5.2rem);
  line-height: 0.88;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 0.95;
}

h3 {
  font-size: 1.8rem;
  line-height: 1;
}

p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

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

.hero-subtitle {
  max-width: 14ch;
  color: var(--text-main);
  font-size: 1.04rem;
  line-height: 1.45;
  margin-bottom: 18px;
}

.hero-body {
  font-size: 0.98rem;
  margin-bottom: 14px;
}

.hero-capsule-wrap {
  position: relative;
  margin: 22px auto 8px;
  width: min(100%, 285px);
  aspect-ratio: 0.72 / 1.56;
}

.crystal-capsule {
  position: relative;
  width: 100%;
  height: 100%;
}

.crystal-top,
.crystal-body,
.crystal-base {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.crystal-top {
  top: 0;
  width: 82%;
  height: 18%;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  background:
    linear-gradient(180deg, rgba(206, 215, 255, 0.95), rgba(125, 155, 255, 0.22)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent);
  border: 1px solid rgba(217, 179, 108, 0.35);
  filter: drop-shadow(0 0 18px rgba(185, 167, 255, 0.25));
}

.crystal-body {
  top: 15%;
  width: 73%;
  height: 64%;
  border-radius: 26px 26px 34px 34px;
  background:
    radial-gradient(circle at 50% 85%, rgba(239, 197, 255, 0.28), transparent 36%),
    radial-gradient(circle at 55% 18%, rgba(172, 218, 255, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(202, 214, 255, 0.22), rgba(135, 135, 255, 0.14) 45%, rgba(255, 214, 171, 0.18) 100%);
  border: 1px solid rgba(223, 205, 255, 0.38);
  box-shadow:
    inset 12px 0 20px rgba(255, 255, 255, 0.06),
    inset -12px 0 20px rgba(35, 56, 120, 0.18),
    0 0 34px rgba(153, 126, 255, 0.26);
  overflow: hidden;
}

.crystal-body::before {
  content: "";
  position: absolute;
  inset: 5% 16%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: rotate(-8deg);
}

.crystal-body::after {
  content: "";
  position: absolute;
  inset: auto 10% 7%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 223, 190, 0.5), transparent 65%);
  filter: blur(8px);
}

.crystal-base {
  bottom: 2%;
  width: 84%;
  height: 18%;
  border-radius: 999px 999px 26px 26px;
  background:
    linear-gradient(180deg, rgba(83, 44, 16, 0.9), rgba(16, 12, 22, 0.98)),
    linear-gradient(90deg, rgba(217, 179, 108, 0.5), rgba(70, 43, 18, 0.2));
  border: 1px solid rgba(217, 179, 108, 0.4);
  box-shadow:
    inset 0 1px 8px rgba(255, 223, 170, 0.2),
    0 6px 20px rgba(0, 0, 0, 0.4);
}

.ring {
  position: absolute;
  left: 50%;
  width: 86%;
  height: 14px;
  border-radius: 999px;
  transform: translateX(-50%);
  border: 1px solid rgba(217, 179, 108, 0.55);
  background: linear-gradient(180deg, rgba(70, 40, 20, 0.85), rgba(22, 13, 9, 0.9));
  box-shadow: inset 0 1px 6px rgba(255, 216, 158, 0.2);
}

.ring-top { top: 8%; }
.ring-base { bottom: 3%; width: 92%; }

.memory-paper {
  position: absolute;
  left: 49%;
  top: 47%;
  width: 26%;
  height: 22%;
  transform: translate(-50%, -50%) rotate(-12deg);
  clip-path: polygon(14% 0%, 100% 0%, 100% 83%, 82% 100%, 0% 100%, 0% 18%);
  background:
    linear-gradient(180deg, rgba(255, 245, 220, 0.94), rgba(255, 227, 188, 0.74)),
    radial-gradient(circle at 50% 40%, rgba(217, 179, 108, 0.35), transparent 55%);
  box-shadow: 0 0 22px rgba(255, 214, 179, 0.45);
}

.glow-shard,
.glow-note,
.glow-petal {
  position: absolute;
  animation: slowDrift 7.5s ease-in-out infinite;
}

@keyframes slowDrift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

.glow-shard {
  width: 18px;
  height: 26px;
  clip-path: polygon(50% 0%, 100% 30%, 82% 100%, 18% 100%, 0% 30%);
  background: linear-gradient(180deg, rgba(250, 238, 255, 0.92), rgba(184, 211, 255, 0.24));
  box-shadow: 0 0 16px rgba(204, 214, 255, 0.3);
}

.glow-note {
  color: rgba(255, 210, 246, 0.9);
  text-shadow: 0 0 12px rgba(255, 190, 255, 0.42);
  font-size: 1.05rem;
}

.glow-petal {
  width: 16px;
  height: 12px;
  border-radius: 80% 10% 70% 30%;
  background: linear-gradient(180deg, rgba(255, 225, 244, 0.95), rgba(197, 160, 255, 0.24));
  box-shadow: 0 0 12px rgba(255, 200, 240, 0.3);
}

.shard-a { top: 18%; left: 19%; }
.shard-b { top: 62%; right: 18%; width: 14px; height: 20px; }
.shard-c { bottom: 18%; left: 24%; width: 13px; height: 18px; }
.note-a { top: 25%; right: 22%; }
.note-b { bottom: 16%; left: 44%; color: rgba(255, 236, 171, 0.85); }
.petal-a { right: 29%; bottom: 26%; }
.petal-b { left: 18%; bottom: 30%; }

.hero-actions {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin: 22px 0 24px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.button:hover,
.button:focus-visible,
.inline-link:hover,
.inline-link:focus-visible,
.filter-chip:hover,
.filter-chip:focus-visible,
.social-grid a:hover,
.social-grid a:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #342644;
  background:
    linear-gradient(135deg, #e7d2ff 0%, #d7b8ff 38%, #b4c9ff 100%);
  box-shadow:
    inset 0 1px 10px rgba(255, 255, 255, 0.45),
    0 0 24px rgba(185, 167, 255, 0.35);
}

.button-secondary {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.full-width {
  width: 100%;
}

.inline-link {
  color: var(--pale-gold);
  text-decoration: none;
  text-align: center;
  font-size: 0.97rem;
}

.card-kicker,
.timeline-number,
.hero-footer-copy {
  color: var(--gold);
}

.card-kicker {
  font-size: 0.96rem;
  margin-bottom: 10px;
}

.expo-card {
  margin-bottom: 18px;
  padding-right: 88px;
}

.expo-card h2,
.timeline-card h2,
.gallery-panel h2,
.cta-card h2,
.follow-card h2,
.goods-card h2,
.footer-brand h2 {
  font-size: 1.2rem;
  line-height: 1.15;
  margin-bottom: 12px;
}

.expo-card p,
.expo-card a {
  font-size: 0.95rem;
}

.expo-mini-capsule {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 52px;
  height: 88px;
}

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 53px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(217, 179, 108, 0.55), rgba(217, 179, 108, 0.08));
}

.timeline-step {
  display: grid;
  grid-template-columns: 58px 28px 1fr;
  gap: 12px;
  align-items: start;
}

.timeline-number {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(217, 179, 108, 0.55);
  background: rgba(14, 21, 45, 0.88);
  font-size: 0.92rem;
}

.timeline-copy h3 {
  font-size: 1.05rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
}

.timeline-copy p {
  font-size: 0.94rem;
}

.crystal-icon,
.star-map-icon,
.heart-icon {
  width: 48px;
  height: 74px;
  border-radius: 18px;
  border: 1px solid rgba(217, 179, 108, 0.4);
  background: rgba(8, 15, 34, 0.72);
}

.crystal-icon::before,
.crystal-icon::after,
.star-map-icon::before,
.heart-icon::before {
  content: "";
  position: absolute;
}

.crystal-icon::before {
  inset: 12px 15px;
  clip-path: polygon(50% 0%, 100% 30%, 86% 100%, 14% 100%, 0% 30%);
  background: linear-gradient(180deg, rgba(251, 245, 255, 0.9), rgba(152, 189, 255, 0.18));
}

.crystal-icon::after {
  inset: 22px 21px 11px;
  border: 1px solid rgba(217, 179, 108, 0.4);
  border-radius: 999px;
}

.crystal-icon.alt::before {
  background: linear-gradient(180deg, rgba(255, 241, 216, 0.95), rgba(222, 183, 255, 0.15));
}

.star-map-icon::before {
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(217, 179, 108, 0.38);
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.02),
    0 0 0 20px rgba(255, 255, 255, 0.01);
}

.heart-icon::before {
  inset: 16px 14px;
  background:
    radial-gradient(circle at 30% 35%, transparent 10px, transparent 0),
    none;
}

.heart-icon::after {
  content: "♡";
  position: absolute;
  inset: 20px 0 0;
  text-align: center;
  color: var(--gold);
  font-size: 1.6rem;
}

.hero-footer-copy {
  margin-top: 18px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.6;
}

.section-header {
  margin-bottom: 18px;
}

.section-header.centered {
  text-align: center;
}

.section-header p {
  margin-top: 12px;
  font-size: 0.98rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.filter-chip {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(217, 179, 108, 0.26);
  background: rgba(19, 25, 52, 0.82);
  color: var(--text-main);
  cursor: pointer;
  font: inherit;
}

.filter-chip.active {
  background: linear-gradient(135deg, rgba(149, 122, 255, 0.95), rgba(103, 86, 205, 0.9));
  border-color: rgba(207, 190, 255, 0.45);
}

.gallery-list {
  display: grid;
  gap: 14px;
}

.capsule-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(10, 17, 40, 0.92), rgba(5, 10, 24, 0.95));
  border: 1px solid rgba(135, 161, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.capsule-thumb {
  position: relative;
  width: 100%;
  height: 136px;
}

.capsule-thumb .crystal-top {
  height: 17%;
}

.capsule-thumb .crystal-body {
  top: 14%;
  width: 70%;
  height: 66%;
  border-radius: 18px 18px 24px 24px;
}

.capsule-thumb .crystal-base {
  height: 16%;
}

.variant-blue .crystal-body {
  background:
    radial-gradient(circle at 50% 84%, rgba(141, 209, 255, 0.26), transparent 34%),
    linear-gradient(180deg, rgba(220, 232, 255, 0.22), rgba(90, 158, 255, 0.18) 55%, rgba(255, 209, 163, 0.12));
}

.variant-amber .crystal-body {
  background:
    radial-gradient(circle at 50% 84%, rgba(255, 175, 88, 0.26), transparent 34%),
    linear-gradient(180deg, rgba(240, 224, 255, 0.14), rgba(132, 76, 30, 0.24) 50%, rgba(255, 145, 69, 0.22));
}

.variant-violet .crystal-body {
  background:
    radial-gradient(circle at 50% 84%, rgba(214, 177, 255, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(234, 221, 255, 0.18), rgba(114, 91, 212, 0.22) 55%, rgba(255, 197, 163, 0.15));
}

.variant-garden .crystal-body {
  background:
    radial-gradient(circle at 50% 84%, rgba(180, 255, 121, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(232, 237, 255, 0.18), rgba(84, 121, 68, 0.24) 55%, rgba(197, 255, 112, 0.16));
}

.variant-wheel .crystal-body {
  background:
    radial-gradient(circle at 50% 84%, rgba(245, 191, 113, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(232, 237, 255, 0.18), rgba(86, 75, 109, 0.22) 55%, rgba(255, 194, 98, 0.18));
}

.memory-orb {
  position: absolute;
  left: 50%;
  top: 54%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 227, 174, 0.9), rgba(255, 255, 255, 0.08));
  box-shadow: 0 0 18px rgba(255, 212, 151, 0.45);
}

.memory-seedling {
  position: absolute;
  left: 50%;
  bottom: 19%;
  width: 32px;
  height: 34px;
  transform: translateX(-50%);
}

.memory-seedling::before,
.memory-seedling::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(205, 255, 160, 0.95), rgba(110, 163, 80, 0.3));
  border-radius: 100% 0;
}

.memory-seedling::before {
  width: 16px;
  height: 18px;
  left: 0;
  top: 2px;
  transform: rotate(-26deg);
}

.memory-seedling::after {
  width: 16px;
  height: 18px;
  right: 0;
  top: 2px;
  transform: rotate(116deg);
}

.memory-wheel {
  position: absolute;
  left: 50%;
  bottom: 17%;
  width: 34px;
  height: 34px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 2px solid rgba(217, 179, 108, 0.55);
}

.memory-wheel::before,
.memory-wheel::after {
  content: "";
  position: absolute;
  inset: 15px 2px auto;
  height: 2px;
  background: rgba(217, 179, 108, 0.55);
}

.memory-wheel::after {
  inset: 2px auto 2px 15px;
  width: 2px;
  height: auto;
}

.capsule-meta {
  min-width: 0;
}

.feel-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(161, 132, 255, 0.22);
  color: var(--text-main);
  font-size: 0.8rem;
}

.capsule-meta h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.capsule-meta p {
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.stats-row {
  display: flex;
  gap: 16px;
  color: var(--gold);
  font-size: 0.92rem;
}

.load-more {
  display: block;
  width: 100%;
  margin: 16px 0 18px;
  border: 0;
  background: transparent;
  color: var(--pale-gold);
  font: inherit;
  cursor: pointer;
}

.cta-card {
  text-align: center;
  padding: 22px 18px 20px;
  overflow: hidden;
}

.cta-card p {
  margin: 12px 0 18px;
}

.cta-blooms span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 80% 15% 70% 30%;
  background: linear-gradient(180deg, rgba(255, 222, 246, 0.85), rgba(167, 141, 255, 0.12));
  box-shadow: 0 0 12px rgba(255, 206, 240, 0.2);
}

.cta-blooms span:nth-child(1) { left: 12px; top: 16px; }
.cta-blooms span:nth-child(2) { right: 20px; top: 28px; }
.cta-blooms span:nth-child(3) { left: 24px; bottom: 18px; }

.story-form {
  display: grid;
  gap: 14px;
}

.story-form label,
.story-form fieldset {
  display: grid;
  gap: 10px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.story-form span,
.story-form legend {
  color: var(--text-main);
  font-weight: 500;
}

.story-form em {
  color: #f3b4a2;
  font-style: normal;
}

.story-form small {
  color: var(--text-muted);
  font-size: 0.88rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  font: inherit;
  padding: 14px 15px;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(200, 196, 216, 0.55);
}

.option-card {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(217, 179, 108, 0.18);
  background: rgba(255, 255, 255, 0.02);
}

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

.option-list label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-main);
}

input[type="checkbox"],
input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--soft-violet);
}

.privacy-note {
  font-size: 0.88rem;
}

.turnstile-wrap {
  display: grid;
  gap: 8px;
}

.turnstile-slot {
  min-height: 66px;
}

.form-status {
  min-height: 20px;
  font-size: 0.9rem;
}

.form-status.is-error {
  color: #f3b4a2;
}

.form-status.is-success {
  color: #c9f0ca;
}

.hidden {
  display: none;
}

.thank-you {
  margin-top: 14px;
}

.thank-you h3 {
  margin: 10px 0;
}

.thank-you-actions {
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
}

.follow-card,
.goods-card {
  margin-top: 18px;
}

.follow-card {
  text-align: center;
}

.follow-card p {
  margin: 8px 0 18px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.social-grid a {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 14px;
  border: 1px solid rgba(217, 179, 108, 0.28);
  background: rgba(255, 255, 255, 0.03);
  color: var(--pale-gold);
  text-decoration: none;
  font-size: 1.15rem;
}

.goods-card {
  display: grid;
  grid-template-columns: 1fr 70px;
  gap: 16px;
  align-items: center;
}

.goods-card .button,
.goods-card .inline-link {
  grid-column: 1 / -1;
}

.goods-side-visual {
  width: 58px;
  height: 96px;
  justify-self: end;
}

.footer-block {
  padding-top: 22px;
}

.footer-brand {
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-note {
  font-size: 0.82rem;
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .screen-grid {
    grid-template-columns: 1fr;
  }

  .phone-panel {
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 12px, 1400px);
    padding-top: 10px;
  }

  .phone-panel {
    padding: 18px;
    border-radius: 26px;
  }

  .phone-panel::after {
    border-radius: 25px;
  }

  h1 {
    font-size: clamp(3.05rem, 17vw, 4.6rem);
  }

  h2 {
    font-size: 2.2rem;
  }

  .capsule-card {
    grid-template-columns: 82px 1fr;
  }

  .hero-capsule-wrap {
    width: min(100%, 260px);
  }

  .goods-card {
    grid-template-columns: 1fr;
  }

  .goods-side-visual {
    justify-self: center;
  }

  .thank-you-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
