:root {
  color-scheme: dark;
  --bg: #070b0d;
  --bg-strong: #0c1216;
  --surface: rgba(12, 20, 24, 0.8);
  --surface-strong: rgba(13, 23, 28, 0.95);
  --surface-soft: rgba(83, 134, 123, 0.05);
  --line: rgba(191, 224, 214, 0.12);
  --line-strong: rgba(191, 224, 214, 0.24);
  --border: var(--line);
  --text: #f5f7fb;
  --muted: rgba(205, 220, 215, 0.74);
  --muted-strong: rgba(229, 238, 235, 0.9);
  --accent: #d9eee8;
  --accent-cool: #78b9ab;
  --accent-strong: var(--accent-cool);
  --accent-deep: #1f5d55;
  --accent-soft: rgba(120, 185, 171, 0.16);
  --accent-deep-soft: rgba(31, 93, 85, 0.24);
  --accent-glow: rgba(31, 93, 85, 0.22);
  --accent-warm: #bfe0d6;
  --glow: rgba(120, 185, 171, 0.35);
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.32);
  --shadow-strong: 0 36px 90px rgba(0, 0, 0, 0.5);
  --shadow-panel: var(--shadow-soft);
  --glass-blur: 16px;
  --radius-sm: 18px;
  --radius-lg: 32px;
  --radius: 26px;
  --max-width: 1200px;
  --header-height: 88px;
  --display-font: "Sora", sans-serif;
  --body-font: "Space Grotesk", sans-serif;
  --wordmark-font: var(--display-font);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 18%, rgba(31, 93, 85, 0.1), transparent 22%),
    radial-gradient(circle at 12% 78%, rgba(20, 61, 56, 0.1), transparent 26%),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.042), transparent 26%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.032), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 16%),
    linear-gradient(135deg, #070b0d 0%, #0b1114 46%, #121b1f 100%);
  position: relative;
  overflow-x: hidden;
}

body.consultation-sheet-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      125deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 132px
    );
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}

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

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display-font);
  letter-spacing: -0.04em;
  color: var(--text);
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100vw - 2.4rem));
  margin: 0 auto;
}

.page-shell {
  position: relative;
  z-index: 1;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #06080e;
  font-weight: 700;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  border-bottom: 1px solid rgba(191, 224, 214, 0.08);
  background: rgba(9, 15, 18, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transition: background-color 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  padding: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  justify-self: start;
  color: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.25s ease;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  flex: 0 0 auto;
  position: relative;
}

.logo__mark img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 0.5px rgba(248, 255, 252, 0.72))
    drop-shadow(0 0 4px rgba(31, 93, 85, 0.12));
  opacity: 1;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s var(--ease);
}

.logo:hover .logo__mark img {
  filter: drop-shadow(0 0 0.65px rgba(248, 255, 252, 0.82))
    drop-shadow(0 0 5px rgba(31, 93, 85, 0.16));
}

.logo__wordmark {
  font-family: var(--display-font);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.15rem, 1.8vw, 1.7rem);
  grid-column: 2;
  margin-left: 0;
  justify-self: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  color: var(--muted);
}

.nav a {
  position: relative;
  padding: 0.35rem 0;
  border-radius: 0;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-deep),
    var(--accent-cool),
    transparent
  );
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  font: inherit;
  color: inherit;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease,
    border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--btn-spot-x, 50%) var(--btn-spot-y, 50%),
    rgba(255, 255, 255, 0.24),
    transparent 58%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover::before {
  opacity: 1;
}

.btn:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent-cool);
  outline-offset: 3px;
}

.btn[disabled],
.btn[aria-disabled="true"] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.btn[aria-disabled="true"] {
  pointer-events: none;
}

.btn-primary {
  border-left: 0px;
  border-right: 0px;
  color: #05070d;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    #9ed0c4 44%,
    var(--accent-cool) 68%,
    var(--accent-deep) 100%
  );
  box-shadow: 0 18px 40px rgba(31, 93, 85, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 24px 54px rgba(31, 93, 85, 0.36);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.btn-site {
  font-weight: 800;
}

.section {
  position: relative;
  padding: 6rem 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(var(--max-width), calc(100vw - 2.4rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0.6;
}

.wizard-section {
  padding-top: 0;
  padding-bottom: 0;
}

.wizard-section.is-past-intro {
  padding-top: calc(var(--header-height) + 1rem);
}

.eyebrow,
.app-shell__eyebrow,
.app-shell__steps-label,
.hero-showcase__eyebrow,
.gift-card__eyebrow,
.field-intro__eyebrow {
  margin: 0;
  color: var(--accent-cool);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
}

.display {
  max-width: 9ch;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
}

.hero {
  position: relative;
  padding: calc(var(--header-height) + 4.3rem) 0 2rem;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: block;
}

#hero[hidden] {
  display: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 16%),
    linear-gradient(90deg, rgba(7, 11, 13, 0.22) 0%, transparent 38%),
    linear-gradient(180deg, transparent 78%, rgba(255, 255, 255, 0.016));
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-brand-ghost {
  position: absolute;
  top: 50%;
  right: clamp(-1rem, 4vw, 2rem);
  width: clamp(280px, 36vw, 520px);
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.92;
}

.hero-brand-ghost::before {
  content: "";
  position: absolute;
  inset: 18% 14%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(31, 93, 85, 0.16) 0%,
    rgba(120, 185, 171, 0.08) 26%,
    transparent 64%
  );
  filter: blur(48px);
  opacity: 0.46;
}

.hero-brand-ghost::after {
  content: "";
  position: absolute;
  left: -18%;
  right: 8%;
  top: 52%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(31, 93, 85, 0.34) 20%,
    rgba(120, 185, 171, 0.22) 36%,
    rgba(255, 255, 255, 0.52) 50%,
    rgba(120, 185, 171, 0.22) 68%,
    rgba(31, 93, 85, 0.28) 82%,
    transparent 100%
  );
  transform: rotate(-18deg);
  opacity: 0.28;
  animation: heroLineSweep 18s ease-in-out infinite;
}

.hero-brand-ghost img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.96;
  filter: drop-shadow(0 0 0.7px rgba(248, 255, 252, 0.58))
    drop-shadow(0 0 7px rgba(31, 93, 85, 0.1));
  animation: heroMarkFloat 11s ease-in-out infinite;
}

@media (max-width: 1180px) {
  .hero-brand-ghost {
    width: clamp(260px, 34vw, 420px);
  }
}

@media (max-width: 860px) {
  .hero-brand-ghost {
    width: min(240px, 42vw);
    right: -1.4rem;
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--header-height) - 6.3rem);
  min-height: calc(100svh - var(--header-height) - 6.3rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 440px);
  gap: clamp(2.6rem, 6vw, 5.8rem);
  justify-content: space-between;
  align-items: center;
}

.hero-content {
  display: grid;
  align-content: center;
  gap: 1.5rem;
  min-height: calc(100vh - var(--header-height) - 6.3rem);
  min-height: calc(100svh - var(--header-height) - 6.3rem);
  max-width: min(42rem, 100%);
  padding-block: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-eyebrow::before,
.wizard-step-eyebrow::before {
  content: "";
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, rgba(120, 185, 171, 0.72), transparent);
}

.wizard-step-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: calc(var(--header-height) + clamp(4.5rem, 9vh, 6.75rem)) 0 1.5rem;
}

.wizard-step-eyebrow[hidden] {
  display: none;
}

.hero-content .lead {
  margin: 0;
  max-width: 44ch;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted-strong);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0.45rem 0 0;
}

.hero-actions--desktop {
  display: none;
}

.hero-scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  display: none;
  width: 2.4rem;
  height: 3.2rem;
  justify-items: center;
  align-content: center;
  color: var(--accent);
  transform: translateX(-50%);
}

.hero-scroll-cue__shaft {
  width: 2px;
  height: 2.1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, currentColor);
}

.hero-scroll-cue__head {
  width: 0.72rem;
  height: 0.72rem;
  margin-top: -0.78rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-meta span,
.hero-showcase__chip,
.preview-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(9, 15, 18, 0.56);
  color: rgba(229, 238, 235, 0.78);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-meta span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(120, 185, 171, 0.12);
}

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

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 12% 12% 16% 10%;
  border-radius: 32px;
  border: 1px solid rgba(191, 224, 214, 0.08);
  background: linear-gradient(180deg, rgba(120, 185, 171, 0.04), transparent 70%);
  transform: rotate(7deg);
}

.hero-showcase__panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.15rem;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(120, 185, 171, 0.05),
    rgba(31, 93, 85, 0.03) 38%,
    rgba(255, 255, 255, 0.02) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), var(--shadow-soft);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transform: rotate(-4deg) translateY(12px);
  overflow: hidden;
}

.hero-showcase__panel::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(120, 185, 171, 0.14) 0%,
    rgba(31, 93, 85, 0.12) 28%,
    transparent 70%
  );
  opacity: 1;
  pointer-events: none;
}

.hero-showcase__topline,
.hero-showcase__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.hero-showcase__chip {
  color: var(--accent-strong);
  border-color: rgba(217, 238, 232, 0.18);
}

.hero-showcase__identity {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 0.95rem;
  padding: 1rem;
  border: 1px solid rgba(191, 224, 214, 0.1);
  border-radius: 18px;
  background: rgba(4, 7, 10, 0.52);
}

.hero-showcase__avatar {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), #9ed0c4 52%, var(--accent-cool));
  box-shadow: inset 0 0 0 10px rgba(7, 11, 13, 0.22);
}

.hero-showcase__identity strong,
.hero-floating strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.hero-showcase__identity div span,
.hero-floating span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.hero-showcase__qr {
  position: relative;
  aspect-ratio: 1;
  border-radius: 18px;
  background: #f5f7fb;
  overflow: hidden;
  box-shadow: inset 0 0 0 14px rgba(255, 255, 255, 0.42),
    0 20px 40px rgba(0, 0, 0, 0.18);
}

.hero-showcase__qr::before {
  content: "";
  position: absolute;
  inset: 1.35rem;
  border-radius: 24px;
  background: repeating-linear-gradient(
      0deg,
      rgba(7, 11, 13, 0.92) 0 9px,
      transparent 9px 20px
    ),
    repeating-linear-gradient(90deg, rgba(7, 11, 13, 0.92) 0 11px, transparent 11px 24px);
  opacity: 0.16;
}

.hero-showcase__qr::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  border-radius: 16px;
  transform: translate(-50%, -50%);
  background: linear-gradient(145deg, rgba(217, 238, 232, 0.88), rgba(120, 185, 171, 0.92));
  box-shadow: 0 0 0 14px #f5f7fb;
}

.hero-showcase__finder {
  position: absolute;
  width: 86px;
  height: 86px;
  border: 12px solid #070b0d;
  border-radius: 14px;
  z-index: 1;
}

.hero-showcase__finder::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 10px;
  background: #070b0d;
}

.hero-showcase__finder--tl {
  top: 1.35rem;
  left: 1.35rem;
}

.hero-showcase__finder--tr {
  top: 1.35rem;
  right: 1.35rem;
}

.hero-showcase__finder--bl {
  bottom: 1.35rem;
  left: 1.35rem;
}

.hero-showcase__footer {
  color: rgba(229, 238, 235, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-floating {
  position: absolute;
  z-index: 3;
  width: min(240px, 42vw);
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(120, 185, 171, 0.05),
    rgba(31, 93, 85, 0.03) 38%,
    rgba(255, 255, 255, 0.02) 100%
  );
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.hero-floating--top {
  top: 5%;
  right: 0;
  transform: translateX(12%) rotate(4deg);
}

.app-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(120, 185, 171, 0.05),
    rgba(31, 93, 85, 0.03) 38%,
    rgba(255, 255, 255, 0.02) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.app-shell.is-past-intro {
  margin-top: 0;
}

.app-shell::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(120, 185, 171, 0.14) 0%,
    rgba(31, 93, 85, 0.12) 28%,
    transparent 70%
  );
  opacity: 0.9;
  pointer-events: none;
}

.field-intro__chip,
.gift-card__note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.28rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(9, 15, 18, 0.6);
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-orb {
  display: none;
}

.orb-2 {
  top: 180px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(120, 185, 171, 0.4), transparent 70%);
}

.orb-3 {
  right: 15%;
  bottom: 60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(191, 224, 214, 0.35), transparent 70%);
}

.app-shell {
  z-index: 1;
}

.app-shell__header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.35rem;
  justify-items: center;
  padding: 1.8rem 1.65rem 1.55rem;
  border-bottom: 1px solid rgba(191, 224, 214, 0.08);
  background: transparent;
}

.app-shell.is-past-intro .app-shell__header {
  display: none;
}

.app-shell__intro {
  display: grid;
  gap: 0.76rem;
  max-width: 680px;
  justify-items: center;
  text-align: center;
}

.app-shell__steps {
  position: relative;
  display: grid;
  gap: 0.8rem;
  width: min(100%, 400px);
  padding-top: 0.95rem;
}

.app-shell__steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 22%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(120, 185, 171, 0.42),
    rgba(255, 255, 255, 0.08),
    transparent
  );
}

.app-shell__steps-copy {
  margin: 0;
  max-width: 28ch;
  color: rgba(229, 238, 235, 0.7);
  font-size: 0.88rem;
  line-height: 1.66;
}

.app-shell__title {
  margin: 0;
  padding: 0;
  font-size: clamp(2rem, 3vw, 2.95rem);
  line-height: 1.08;
  color: var(--text);
}

.app-shell__lede {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
}

.stepper {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 1.45rem;
  padding-bottom: 1.45rem;
}

.stepper__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.24s var(--ease), border-color 0.24s ease,
    background-color 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
}

.stepper__item::after {
  content: attr(data-step-name);
  position: absolute;
  top: calc(100% + 0.62rem);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(229, 238, 235, 0.46);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.stepper__item:hover,
.stepper__item:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.stepper__item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.stepper__item:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.stepper__item.is-active {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(120, 185, 171, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 0 0 4px rgba(31, 93, 85, 0.12);
}

.stepper__item.is-active::after {
  color: rgba(229, 238, 235, 0.88);
}

.stepper__item.is-complete {
  border-color: rgba(217, 238, 232, 0.2);
  background: rgba(217, 238, 232, 0.08);
}

.stepper__item.is-complete .stepper__index {
  color: var(--accent-strong);
}

.stepper__item.is-complete::after {
  color: rgba(217, 238, 232, 0.88);
}

.stepper__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
}

.stepper__text {
  display: none;
}

.stepper__bar {
  width: min(100%, 260px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  overflow: hidden;
  margin: 0 auto;
}

.stepper__bar span {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: width 0.45s var(--ease);
}

.flow-viewport {
  overflow: hidden;
  transition: height 0.5s var(--ease);
}

.flow-track {
  display: flex;
  width: 100%;
  align-items: flex-start;
  transition: transform 0.58s var(--ease);
  will-change: transform;
}

.flow-step {
  position: relative;
  z-index: 1;
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  gap: 1.8rem;
  align-content: start;
  padding: 1.65rem 1.75rem 1.15rem;
  opacity: 0.62;
  transform: translateY(10px) scale(0.985);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.flow-step::before {
  content: attr(data-step);
  position: absolute;
  top: 0.9rem;
  right: 1.6rem;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(4.8rem, 11vw, 8rem);
  line-height: 0.88;
  font-weight: 700;
  letter-spacing: 0;
  pointer-events: none;
}

.flow-step.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.section-head {
  position: relative;
  display: grid;
  gap: 0.95rem;
  align-content: start;
  max-width: 700px;
  padding-right: min(12vw, 7rem);
}

.section-head::after {
  content: "";
  width: 58px;
  height: 1px;
}

.section-head h2 {
  margin: 0;
  padding: 0;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.02;
  color: var(--text);
}

.section-head p {
  margin: 0;
  max-width: 54ch;
  line-height: 1.74;
  color: rgba(229, 238, 235, 0.72);
}

.intro-grid,
.field-grid,
.logo-uploader__actions,
.flow-actions,
.flow-actions--split,
.flow-actions--stack,
#vcardForm,
.qr-card,
.qr-preview,
.logo-uploader__content,
.contact-summary,
.form-actions,
.form-footer,
.field,
.field-intro__meta,
.story-highlights {
  display: grid;
  gap: 1rem;
}

.card {
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: start;
  overflow: hidden;
  padding: 1.24rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(120, 185, 171, 0.05),
    rgba(31, 93, 85, 0.03) 38%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.3s var(--ease), border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.intro-grid,
#vcardForm,
.qr-card {
  gap: 1.8rem;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 22px;
  left: auto;
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 0.45;
  pointer-events: none;
}

.card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(120, 185, 171, 0.14) 0%,
    rgba(31, 93, 85, 0.12) 28%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.card:hover::after {
  opacity: 1;
}

.story-card h3,
.gift-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.08;
  color: var(--text);
}

.story-card,
.story-aside,
.field-intro,
.logo-uploader,
.fields-card {
  display: grid;
  align-content: start;
  gap: 1.2rem;
}

.story-card--primary {
  position: relative;
  padding: 0.3rem 0 0;
}



.story-card p,
.gift-card p,
.story-list,
.field-helper,
.contact-details,
.preview-note {
  color: var(--muted);
}

.story-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  counter-reset: story-point;
}

.story-list li {
  position: relative;
  min-height: 62px;
  padding: 1rem 0 1rem 3.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(229, 238, 235, 0.78);
  line-height: 1.7;
}

.story-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.story-list li::before {
  counter-increment: story-point;
  content: counter(story-point);
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  background: rgba(120, 185, 171, 0.12);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.story-aside {
  position: relative;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.story-aside__eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story-highlights span {
  display: flex;
  align-items: center;
  gap: 0.78rem;
  min-height: 50px;
  padding: 0.92rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(229, 238, 235, 0.82);
  line-height: 1.6;
}

.story-highlights span:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.story-highlights span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(120, 185, 171, 0.1);
  flex: 0 0 auto;
}

.gift-card__eyebrow {
  margin-bottom: 0;
}

.field-intro__eyebrow {
  margin-bottom: 0;
}

.field-intro__meta p {
  margin: 0;
}

.field-intro,
.logo-uploader {
  position: relative;
  padding-top: 1rem;
}

.logo-uploader {
  justify-items: center;
  text-align: center;
}

.logo-uploader__content {
  justify-items: center;
  max-width: 42ch;
}

.field-intro {
  gap: 0.7rem;
}

.fields-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(120, 185, 171, 0.05),
    rgba(31, 93, 85, 0.03) 38%,
    rgba(255, 255, 255, 0.02) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  gap: 1.15rem;
}

.fields-card__header {
  display: grid;
  gap: 0.6rem;
  max-width: 46ch;
}

.fields-card__header > p:last-child {
  margin: 0;
  color: rgba(229, 238, 235, 0.72);
  line-height: 1.72;
}

.field-grid {
  gap: 1.15rem;
}

.logo-uploader__preview {
  --logo-preview-max-side: 132px;
  --logo-preview-width: var(--logo-preview-max-side);
  --logo-preview-height: var(--logo-preview-max-side);
  position: relative;
  width: var(--logo-preview-width);
  height: var(--logo-preview-height);
  overflow: hidden;
  border-radius: 18px;
  background: rgba(4, 7, 10, 0.76);
  border: 1px solid rgba(191, 224, 214, 0.1);
  box-shadow: var(--shadow-soft);
}

.logo-uploader__remove {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.82);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
  transition: background-color 0.2s ease, transform 0.2s var(--ease);
}

.logo-uploader__remove:hover,
.logo-uploader__remove:focus-visible {
  background: rgba(0, 0, 0, 0.96);
  transform: scale(1.04);
}

.logo-uploader__remove:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.logo-uploader__remove[hidden] {
  display: none;
}

.logo-uploader__preview img,
.contact-summary__identity img,
.qr-empty-state img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.background-picker {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: 1rem 0 0.2rem;
  text-align: center;
}

.background-picker__head {
  display: grid;
  gap: 0.45rem;
  max-width: 46ch;
}

.background-picker__grid {
  display: grid;
  width: fit-content;
  max-width: 100%;
  grid-template-columns: repeat(3, 42px);
  justify-content: center;
  justify-items: center;
  gap: 0.74rem 0.82rem;
  margin-inline: auto;
}

.background-swatch {
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(217, 238, 232, 0.42);
  border-radius: 50%;
  background: var(--swatch-b);
  cursor: pointer;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.background-swatch:hover,
.background-swatch:focus-visible {
  border-color: rgba(217, 238, 232, 0.72);
}

.background-swatch:focus-visible {
  outline: 2px solid var(--accent-cool);
  outline-offset: 3px;
}

.background-swatch.is-active {
  border-color: rgba(217, 238, 232, 0.82);
  box-shadow:
    0 0 0 4px rgba(120, 185, 171, 0.2),
    0 0 0 7px rgba(217, 238, 232, 0.1);
}

.field {
  gap: 0.56rem;
  padding: 0;
}

.field-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-cool);
}

.field-helper {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.68;
}

input {
  width: 100%;
  border: 1px solid rgba(191, 224, 214, 0.1);
  border-radius: 16px;
  min-height: 58px;
  background: rgba(4, 7, 10, 0.76);
  color: var(--text);
  padding: 0.85rem 0.95rem;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

input:hover {
  border-color: rgba(191, 224, 214, 0.16);
  background: rgba(6, 10, 13, 0.84);
}

input::placeholder {
  color: rgba(215, 222, 236, 0.42);
}

input:focus-visible {
  outline: none;
  border-color: rgba(120, 185, 171, 0.42);
  box-shadow: 0 0 0 3px rgba(31, 93, 85, 0.2);
  background: rgba(7, 10, 16, 0.9);
}

input:user-invalid {
  border-color: rgba(191, 224, 214, 0.55);
}

.form-footer {
  gap: 0.85rem;
  position: relative;
  padding-top: 1.15rem;
}

.status-message {
  margin: 0;
  min-height: 0;
  padding: 0;
  color: rgba(229, 238, 235, 0.78);
  font-size: 0.88rem;
  line-height: 1.62;
  max-width: 42ch;
}

.status-message[data-tone="success"] {
  color: var(--accent-strong);
}

.status-message[data-tone="error"] {
  color: rgba(191, 224, 214, 0.95);
}

.toast {
  position: fixed;
  left: 50%;
  top: calc(var(--header-height) + clamp(0.75rem, 2.5vw, 1.35rem));
  z-index: 90;
  width: min(calc(100vw - 2rem), 420px);
  padding: 0.95rem 1.08rem;
  border: 1px solid rgba(191, 224, 214, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 238, 232, 0.16), rgba(31, 93, 85, 0.26)),
    rgba(7, 11, 13, 0.74);
  color: rgba(245, 247, 251, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 46px rgba(0, 0, 0, 0.42),
    0 0 0 4px rgba(120, 185, 171, 0.12);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.48;
  text-align: center;
  transform: translate3d(-50%, -0.85rem, 0);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(22px) saturate(1.28);
  -webkit-backdrop-filter: blur(22px) saturate(1.28);
  transition: opacity 0.22s ease, transform 0.22s var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

.logo-uploader__actions .btn,
.flow-actions .btn,
.flow-actions--split .btn,
.contact-summary > .btn {
  width: 100%;
}

.qr-card {
  gap: 1.4rem;
}

.qr-preview {
  position: relative;
  gap: 1rem;
  padding-top: 1.15rem;
}

.qr-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(120, 185, 171, 0.45),
    rgba(255, 255, 255, 0.08),
    transparent
  );
}

.qr-preview__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.qr-preview__note {
  margin: 0;
  max-width: 34ch;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

.qr-stage {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: 1290 / 2796;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top, rgba(120, 185, 171, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(9, 15, 18, 0.98) 0%, rgba(7, 11, 13, 0.96) 100%);
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.26);
}

.qr-stage::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 28px;
  border: 1px dashed rgba(120, 185, 171, 0.18);
  pointer-events: none;
}

.qr-stage::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 18%;
  width: 38%;
  height: 38%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 185, 171, 0.2), transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

#qrPreviewImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  border-radius: inherit;
  background: #070b0d;
  object-fit: cover;
}

#qrPreviewImage.is-visible {
  display: block;
  animation: soften-in 0.3s ease;
}

.qr-stage.has-lock-screen-preview::before,
.qr-stage.has-lock-screen-preview::after {
  display: none;
}

#qrCanvas {
  display: none;
}

.qr-empty-state {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 0.9rem;
  align-content: center;
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
}

.qr-empty-state.is-hidden {
  display: none;
}

.qr-empty-state img {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background: rgba(9, 15, 18, 0.9);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34);
}

.qr-empty-state p {
  margin: 0;
  max-width: 22ch;
}

.contact-summary {
  gap: 1.15rem;
  position: relative;
  padding-top: 1.15rem;
}

.contact-summary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(120, 185, 171, 0.4),
    rgba(255, 255, 255, 0.08),
    transparent
  );
}

.contact-summary__identity {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-summary__identity img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(9, 15, 18, 0.9);
  box-shadow: inset 0 0 0 1px rgba(120, 185, 171, 0.08);
}

.contact-name {
  margin: 0;
  color: var(--text);
  font-size: 1.48rem;
  font-weight: 600;
  line-height: 1.12;
}

.contact-details {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.preview-note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.consultation-note {
  margin: 0;
  padding-left: 0.85rem;
  border-left: 2px solid rgba(120, 185, 171, 0.52);
  color: rgba(229, 238, 235, 0.76);
  font-size: 0.94rem;
  line-height: 1.68;
}

.consultation-sheet {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  pointer-events: none;
}

.consultation-sheet[hidden] {
  display: none;
}

.consultation-sheet.is-open {
  pointer-events: auto;
}

.consultation-sheet__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 12, 0.72);
  opacity: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.3s ease;
}

.consultation-sheet__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: min(88vh, 760px);
  max-height: min(88svh, 760px);
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border: 1px solid rgba(191, 224, 214, 0.12);
  border-radius: 32px;
  background:
    radial-gradient(circle at 16% 8%, rgba(120, 185, 171, 0.12), transparent 32%),
    radial-gradient(circle at 84% 16%, rgba(31, 93, 85, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(10, 16, 19, 0.98), rgba(7, 11, 13, 0.99));
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.46);
  overflow: hidden;
  transform: translateY(1.25rem) scale(0.98);
  opacity: 0;
  transition: transform 0.36s var(--ease), opacity 0.3s ease;
}

.consultation-sheet.is-open .consultation-sheet__overlay {
  opacity: 1;
}

.consultation-sheet.is-open .consultation-sheet__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.consultation-sheet__chrome {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 0.95rem 1rem 0;
}

.consultation-sheet__close {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(191, 224, 214, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.25s var(--ease), border-color 0.25s ease,
    background-color 0.25s ease;
}

.consultation-sheet__close:hover {
  transform: translateY(-2px);
  border-color: rgba(191, 224, 214, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.consultation-sheet__close:focus-visible,
.cta-form textarea:focus-visible {
  outline: 2px solid var(--accent-cool);
  outline-offset: 3px;
}

.consultation-sheet__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}

.consultation-sheet__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.consultation-sheet__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.consultation-sheet__content {
  min-height: 0;
  padding: 0 1.2rem 1.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.consultation-sheet__form-shell {
  min-width: 0;
  padding: clamp(1.35rem, 2vw, 1.85rem);
  border: 1px solid rgba(191, 224, 214, 0.1);
  border-radius: 28px;
}

.consultation-sheet__form-shell {
  width: min(100%, 720px);
  justify-self: center;
  background:
    radial-gradient(circle at 86% 0%, rgba(120, 185, 171, 0.12), transparent 26%),
    radial-gradient(circle at 12% 100%, rgba(31, 93, 85, 0.15), transparent 36%),
    linear-gradient(180deg, rgba(120, 185, 171, 0.045), rgba(255, 255, 255, 0.02));
}

.cta-form {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.cta-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cta-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.consultation-form label {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.68;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  color: var(--text);
  background: rgba(4, 7, 10, 0.76);
  border: 1px solid rgba(191, 224, 214, 0.1);
  border-radius: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.cta-form textarea {
  min-height: 140px;
  resize: vertical;
}

.cta-form input:hover,
.cta-form textarea:hover {
  border-color: rgba(191, 224, 214, 0.16);
  background: rgba(6, 10, 13, 0.84);
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(215, 222, 236, 0.42);
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
  color: var(--muted);
  opacity: 1;
}

.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: rgba(120, 185, 171, 0.42);
  box-shadow: 0 0 0 3px rgba(31, 93, 85, 0.2);
  background: rgba(7, 10, 16, 0.9);
}

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

.form-status {
  min-height: 1.2em;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status[data-status="success"] {
  color: #c9ffe4;
}

.form-status[data-status="error"] {
  color: #ffd8be;
}

.form-note {
  font-size: 0.9rem;
  color: rgba(215, 222, 236, 0.62);
}

.preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.preview-tags span {
  min-height: 34px;
  letter-spacing: 0;
}

.flow-actions--stack .btn {
  width: 100%;
}

@media (min-width: 760px) {
  .app-shell__header {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: end;
    gap: 1.8rem;
    justify-items: stretch;
  }

  .app-shell__intro {
    justify-items: start;
    text-align: left;
  }

  .app-shell__steps {
    justify-self: end;
    padding-top: 0;
    padding-left: 1.5rem;
  }

  .app-shell__steps::before {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(120, 185, 171, 0.42),
      rgba(255, 255, 255, 0.08),
      transparent
    );
  }

  .stepper {
    max-width: none;
    justify-content: flex-start;
    align-content: start;
  }

  .intro-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(230px, 0.82fr);
    align-items: stretch;
  }

  .story-aside {
    padding-top: 0;
    padding-left: 1.6rem;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stepper__bar {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

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

  .field-full {
    grid-column: 1 / -1;
  }

  .field-intro__meta {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .form-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .logo-uploader {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
  }

  .qr-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: start;
  }

  .contact-summary {
    padding-top: 0;
    padding-left: 1.6rem;
  }

  .contact-summary::before {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(120, 185, 171, 0.42),
      rgba(255, 255, 255, 0.08),
      transparent
    );
  }

  .logo-uploader__actions,
  .flow-actions:not(.flow-actions--split):not(.flow-actions--stack) {
    grid-auto-flow: column;
    justify-content: center;
  }

  .logo-uploader__actions .btn,
  .flow-actions:not(.flow-actions--split):not(.flow-actions--stack) .btn {
    width: auto;
    min-width: 190px;
  }

  .form-footer .flow-actions--split {
    width: min(100%, 420px);
    justify-self: end;
  }

  .contact-summary {
    max-width: none;
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 860px) {
  .cta-fields {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .intro-panel {
    max-width: none;
  }

  .form-panel {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    column-gap: 1.25rem;
    row-gap: 1.6rem;
    align-items: start;
  }

  .form-panel .section-head {
    grid-column: 1;
    grid-row: 1;
  }

  .form-panel .field-intro {
    grid-column: 1;
    grid-row: 2;
  }

  .form-panel #vcardForm {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .form-panel .form-footer {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .preview-panel {
    grid-template-columns: 1fr;
  }

  .flow-step,
  .app-shell__header {
    padding: 1.65rem 1.65rem 1.15rem;
  }
}

@media (min-width: 961px) {
  :root {
    --max-width: 1180px;
  }

  .site-header {
    background: linear-gradient(180deg, rgba(9, 15, 18, 0.96), rgba(9, 15, 18, 0.7));
  }

  .header-inner {
    padding: 1rem 0;
  }

  .nav {
    gap: 0.9rem;
    padding: 0.42rem;
  }

  .nav a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.72rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + clamp(2.4rem, 6vh, 4.25rem));
    padding-bottom: clamp(4rem, 7vh, 6rem);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 440px);
    gap: clamp(3rem, 6vw, 5.25rem);
  }

  .hero-content {
    max-width: 650px;
  }

  .display {
    max-width: 12ch;
  }

  .hero-actions--desktop {
    display: flex;
    margin-top: 0.15rem;
  }

  .hero-actions--desktop .btn {
    min-width: 180px;
  }

  .hero-showcase {
    min-height: clamp(500px, 58vh, 620px);
    justify-self: end;
    width: 100%;
  }

  .hero-showcase::before {
    inset: 14% 7% 14% 4%;
  }

  .hero-showcase__panel {
    width: min(100%, 420px);
    transform: rotate(-3deg) translateY(6px);
  }

  .hero-floating--top {
    top: 12%;
    right: 1%;
    transform: translateX(4%) translateY(-90%) rotate(3deg);
  }

  .wizard-section:not(.is-past-intro) {
    display: none;
  }

  .wizard-section.is-past-intro {
    margin-top: 0;
  }

  .app-shell {
    border-radius: 18px;
  }

  .app-shell__header,
  .flow-step {
    padding: clamp(1.9rem, 3vw, 2.45rem);
  }

  .intro-panel {
    min-height: 240px;
    align-content: center;
    justify-items: center;
  }

  .intro-grid:empty {
    display: none;
  }

  .form-panel {
    grid-template-columns: minmax(250px, 0.42fr) minmax(520px, 0.58fr);
    column-gap: clamp(2rem, 4vw, 3.75rem);
    row-gap: 1.4rem;
  }

  .form-panel .section-head {
    grid-column: 1;
    grid-row: 1;
    padding-right: 0;
    max-width: 34ch;
  }

  .form-panel #vcardForm {
    grid-column: 2;
    grid-row: 1;
  }

  .form-panel .form-footer {
    grid-column: 2;
    grid-row: 2;
    padding-top: 0.9rem;
  }

  .fields-card {
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(9, 15, 18, 0.24);
  }

  .field-grid {
    gap: 1rem;
  }

  input {
    min-height: 58px;
    border-radius: 14px;
  }

  .preview-panel {
    grid-template-columns: minmax(240px, 0.36fr) minmax(0, 0.64fr);
    grid-template-areas:
      "heading qr"
      "uploader qr"
      "background qr";
    column-gap: clamp(1.25rem, 3vw, 2.2rem);
    row-gap: 1.1rem;
    align-items: start;
  }

  .preview-panel .section-head {
    grid-area: heading;
    max-width: 31ch;
    padding-right: 0;
  }

  .preview-panel .section-head h2 {
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .preview-panel .logo-uploader {
    grid-area: uploader;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0.95rem;
    justify-items: start;
    text-align: left;
    width: 100%;
  }

  .preview-panel .logo-uploader__preview {
    --logo-preview-max-side: 88px;
    border-radius: 18px;
  }

  .preview-panel .logo-uploader__content {
    gap: 0.72rem;
    justify-items: start;
    text-align: left;
    max-width: none;
  }

  .preview-panel .logo-uploader__actions {
    justify-content: start;
  }

  .preview-panel .background-picker {
    grid-area: background;
    justify-items: start;
    align-self: start;
    width: 100%;
    max-width: 21rem;
    padding-top: 0.2rem;
    text-align: left;
  }

  .preview-panel .background-picker__head {
    max-width: none;
  }

  .preview-panel .background-picker__grid {
    justify-content: start;
    margin-inline: 0;
  }

  .preview-panel .qr-card {
    grid-area: qr;
    grid-template-columns: minmax(280px, 1fr) minmax(170px, 210px);
    gap: clamp(1rem, 2vw, 1.6rem);
    align-items: center;
    align-self: start;
  }

  .preview-panel .qr-preview {
    padding-top: 0;
  }

  .preview-panel .qr-preview::before {
    display: none;
  }

  .preview-panel .qr-stage {
    width: min(100%, 340px, calc((100vh - var(--header-height) - 9rem) * 0.4614));
    width: min(100%, 340px, calc((100svh - var(--header-height) - 9rem) * 0.4614));
    max-width: none;
    justify-self: center;
    border-radius: 20px;
  }

  .preview-panel #qrPreviewImage {
    border-radius: 20px;
  }

  .preview-panel .qr-stage::before {
    border-radius: 20px;
  }

  .preview-panel .contact-summary {
    min-height: auto;
    align-content: center;
  }
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 6.5rem;
  }

  .wizard-step-eyebrow {
    margin-top: calc(var(--header-height) + 6.5rem);
  }

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

  .hero-showcase {
    min-height: 500px;
  }

  .hero-showcase__panel {
    width: min(100%, 360px);
    transform: rotate(-3deg);
  }

  .hero-floating--top {
    top: 0;
    right: 2%;
    transform: rotate(3deg);
  }

  .intro-panel,
  .form-panel,
  .preview-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 759px) {
  .preview-panel .section-head {
    order: 1;
  }

  .preview-panel .logo-uploader {
    order: 2;
  }

  .preview-panel .qr-card {
    display: contents;
  }

  .preview-panel .qr-preview {
    order: 3;
  }

  .preview-panel .background-picker {
    order: 4;
  }

  .preview-panel .contact-summary {
    order: 5;
  }
}

@media (min-width: 760px) and (max-width: 960px) {
  .preview-panel {
    grid-template-columns: minmax(210px, 0.35fr) minmax(0, 0.65fr);
    grid-template-rows: auto 1fr;
    column-gap: 1.1rem;
    row-gap: 0.95rem;
    align-items: start;
  }

  .preview-panel .section-head {
    grid-column: 1;
    grid-row: 1;
    max-width: 28ch;
    padding-right: 0;
  }

  .preview-panel .section-head h2 {
    font-size: 1.55rem;
    line-height: 1.1;
  }

  .preview-panel .logo-uploader {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 0.85rem;
    width: 100%;
    justify-items: start;
    text-align: left;
  }

  .preview-panel .logo-uploader__preview {
    --logo-preview-max-side: 76px;
    border-radius: 16px;
  }

  .preview-panel .logo-uploader__content {
    gap: 0.62rem;
    justify-items: start;
    text-align: left;
  }

  .preview-panel .field-helper {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .preview-panel .logo-uploader__actions {
    justify-content: start;
  }

  .preview-panel .logo-uploader__actions .btn {
    min-height: 42px;
    padding: 0.45rem 1rem;
  }

  .preview-panel .qr-card {
    grid-column: 2;
    grid-row: 1 / span 2;
    grid-template-columns: 1fr;
    gap: 0.9rem;
    align-self: start;
  }

  .preview-panel .qr-stage {
    width: min(100%, 300px, calc((100vh - var(--header-height) - 12rem) * 0.4614));
    width: min(100%, 300px, calc((100svh - var(--header-height) - 12rem) * 0.4614));
    max-width: none;
    justify-self: center;
  }

  .preview-panel .contact-summary {
    min-height: auto;
    padding-top: 0.9rem;
    padding-left: 0;
  }

  .preview-panel .contact-summary::before {
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(
      90deg,
      rgba(120, 185, 171, 0.42),
      rgba(255, 255, 255, 0.08),
      transparent
    );
  }

  .preview-panel .flow-actions--stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .preview-panel .flow-actions--stack .btn {
    min-height: 44px;
    padding: 0.45rem 0.95rem;
  }

  .preview-panel .flow-actions--stack .btn-site {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --page-fade: linear-gradient(
      180deg,
      rgba(7, 11, 13, 0.96) 0%,
      rgba(31, 93, 85, 0.38) 42%,
      rgba(31, 93, 85, 0.38) 58%,
      rgba(7, 11, 13, 0.96) 100%
    );
  }

  .section {
    padding: 1.5rem 0;
  }

  body {
    font-size: 17px;
  }

  .hero {
    padding-top: 7.35rem;
  }

  .wizard-step-eyebrow {
    margin-top: calc(var(--header-height) + 7.35rem);
  }

  .header-inner {
    gap: 1rem;
  }

  .logo {
    font-size: 1rem;
  }

  .logo__mark {
    width: 44px;
  }

  .display {
    font-size: clamp(2.35rem, 8.8vw, 3.45rem);
  }

  .hero-content {
    gap: 1.15rem;
  }

  .hero-content .lead {
    max-width: 31ch;
    font-size: 1rem;
    line-height: 1.82;
  }

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

  .hero-meta {
    gap: 0.6rem;
  }

  .hero-showcase {
    min-height: 390px;
  }

  .hero-showcase__panel {
    width: min(100%, 320px);
    padding: 1.1rem;
    transform: none;
  }

  .hero-showcase::before,
  .hero-floating {
    display: none;
  }

  .hero-showcase__finder {
    width: 68px;
    height: 68px;
    border-width: 10px;
    border-radius: 18px;
  }

  .hero-showcase__finder::after {
    inset: 12px;
  }

  .hero-floating {
    width: min(220px, 62vw);
    padding: 0.9rem 0.95rem;
  }

  .app-shell__header,
  .flow-step {
    padding: 1.18rem 1.18rem 0.9rem;
  }

  .flow-step {
    gap: 1.5rem;
  }

  .stepper {
    gap: 1rem;
    padding-bottom: 0;
  }

  .stepper__item {
    width: 42px;
    height: 42px;
  }

  .stepper__item::after {
    display: none;
  }

  .app-shell__title,
  .section-head h2 {
    font-size: clamp(1.95rem, 7vw, 2.45rem);
  }

  .app-shell__intro {
    justify-items: center;
    text-align: center;
  }

  .app-shell__steps {
    justify-self: center;
    padding-top: 0.95rem;
    padding-left: 0;
  }

  .app-shell__lede,
  .section-head p,
  .field-helper,
  .status-message,
  .qr-preview__note,
  .contact-details,
  .preview-note {
    font-size: 1rem;
    line-height: 1.72;
  }

  .field-label,
  .field-intro__chip,
  .story-aside__eyebrow,
  .field-intro__eyebrow {
    font-size: 0.82rem;
  }

  input {
    padding: 0.9rem 1rem;
    font-size: 1rem;
  }

  .story-aside {
    padding-top: 0.9rem;
  }

  .contact-summary__identity {
    grid-template-columns: 64px 1fr;
  }

  .contact-name {
    font-size: 1.42rem;
  }

  .logo-uploader__preview {
    --logo-preview-max-side: 104px;
  }

  .flow-step::before {
    top: 0.72rem;
    right: 0.9rem;
    color: rgba(255, 255, 255, 0.048);
    font-size: clamp(3.3rem, 17vw, 4.9rem);
  }

  .preview-tags {
    gap: 0.6rem;
  }

  .consultation-sheet {
    padding: 1rem;
  }

  .consultation-sheet__panel {
    width: 100%;
    max-height: 92svh;
    border-radius: 28px;
  }

  .consultation-sheet__chrome {
    padding: 0.9rem 0.9rem 0;
  }

  .consultation-sheet__content {
    padding: 0.5rem 0.9rem 1rem;
  }

  .consultation-sheet__intro,
  .consultation-sheet__form-shell {
    padding: 1.15rem;
    border-radius: 24px;
  }

  .consultation-sheet__lead,
  .form-status,
  .form-note {
    font-size: 1rem;
    line-height: 1.72;
  }
}

@media (prefers-reduced-motion: reduce) {
  .consultation-sheet__overlay,
  .consultation-sheet__panel {
    transition: none;
  }
}

/* Algora site visual alignment */
.site-header {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.site-header.is-scrolled {
  background: rgba(9, 15, 18, 0.78);
  border-color: rgba(191, 224, 214, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  padding: 0;
}

.logo__mark {
  width: 58px;
}

.logo__wordmark {
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  gap: clamp(1.15rem, 1.8vw, 1.7rem);
}

.hero {
  padding: calc(var(--header-height) + 4.3rem) 0 2rem;
  min-height: 100vh;
  min-height: 100svh;
}

.hero-grid {
  min-height: calc(100vh - var(--header-height) - 6.3rem);
  min-height: calc(100svh - var(--header-height) - 6.3rem);
  grid-template-columns: minmax(0, 1fr) minmax(390px, 440px);
}

.hero-content {
  min-height: calc(100vh - var(--header-height) - 6.3rem);
  min-height: calc(100svh - var(--header-height) - 6.3rem);
  align-content: center;
  max-width: min(42rem, 100%);
}

.display {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
  max-width: 9ch;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
  max-width: 9ch;
  display: grid;
  gap: 0.18rem;
  text-align: left;
  text-shadow: 0 18px 50px rgba(3, 5, 10, 0.46);
}

.hero-title-accent {
  color: var(--accent-cool);
  background: none;
}

.hero-content .lead {
  max-width: 44ch;
  color: var(--muted-strong);
}

.app-shell,
.fields-card,
.logo-uploader,
.qr-stage {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(120, 185, 171, 0.05),
    rgba(31, 93, 85, 0.03) 38%,
    rgba(255, 255, 255, 0.02) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.logo-uploader,
.qr-stage {
  overflow: hidden;
}

.logo-uploader {
  padding: 1.5rem;
}

.app-shell:hover,
.fields-card:hover,
.logo-uploader:hover,
.qr-stage:hover {
  border-color: var(--line-strong);
}

.qr-stage {
  background:
    radial-gradient(circle at 86% 0%, rgba(120, 185, 171, 0.12), transparent 26%),
    radial-gradient(circle at 12% 100%, rgba(31, 93, 85, 0.15), transparent 36%),
    linear-gradient(180deg, rgba(120, 185, 171, 0.045), rgba(255, 255, 255, 0.02));
}

.qr-stage::before {
  border-color: rgba(191, 224, 214, 0.12);
}

.section-head h2,
.app-shell__title {
  letter-spacing: -0.04em;
}

.field-intro__eyebrow,
.field-label,
.story-aside__eyebrow,
.preview-tags span {
  letter-spacing: 0.24em;
}

@media (max-width: 1040px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }

  .nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: calc(100vh - var(--header-height) - 6.1rem);
    min-height: calc(100svh - var(--header-height) - 6.1rem);
  }

  .hero-content {
    min-height: calc(100vh - var(--header-height) - 6.1rem);
    min-height: calc(100svh - var(--header-height) - 6.1rem);
    max-width: 100%;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-bottom: 1.8rem;
  }

}

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

  .container {
    width: min(var(--max-width), calc(100vw - 1.4rem));
  }

  body {
    font-size: 18px;
  }

  .site-header {
    background: rgba(9, 15, 18, 0.8);
  }

  .logo__mark {
    width: 46px;
  }

  .logo__wordmark {
    font-size: 0.96rem;
    letter-spacing: 0.08em;
  }

  .hero {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 1.5rem;
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-grid,
  .hero-content {
    min-height: calc(100vh - var(--header-height) - 3.5rem);
    min-height: calc(100svh - var(--header-height) - 3.5rem);
  }

  .hero-scroll-cue {
    top: calc(100vh - 5rem);
    top: calc(100svh - 5rem);
    display: grid;
  }

  .hero-brand-ghost {
    top: calc(var(--header-height) + 1.75rem);
    right: clamp(-7rem, -22vw, -4.2rem);
    left: auto;
    width: min(330px, 74vw);
    transform: translate3d(0, 0, 0);
    opacity: 0.2;
  }

  .hero-brand-ghost::before {
    inset: 14% 10%;
    filter: blur(30px);
    opacity: 0.12;
  }

  .hero-brand-ghost::after {
    left: -10%;
    right: -4%;
    opacity: 0.1;
  }

  .hero-brand-ghost img {
    opacity: 0.88;
    filter: saturate(1.32) contrast(1.08) brightness(1.04)
      drop-shadow(0 0 0.35px rgba(248, 255, 252, 0.28))
      drop-shadow(0 0 5px rgba(31, 93, 85, 0.1));
  }

  .display {
    font-size: clamp(2.4rem, 11vw, 3.9rem);
    max-width: 10ch;
  }

  .hero-title {
    max-width: 10ch;
    font-size: clamp(2.4rem, 11vw, 3.9rem);
    gap: 0.08rem;
  }

  .hero-content .lead {
    max-width: 32ch;
  }

  p,
  .hero-content .lead,
  .app-shell__lede,
  .app-shell__steps-copy,
  .section-head p,
  .field-helper,
  .status-message,
  .qr-preview__note,
  .contact-details,
  .preview-note,
  .qr-empty-state p,
  .story-list li,
  .story-highlights span {
    font-size: 1.1rem;
    line-height: 1.72;
  }

  .btn,
  input {
    font-size: 1.08rem;
  }

  .btn {
    min-height: 52px;
  }

  .consultation-form label {
    font-size: 1.1rem;
    line-height: 1.72;
  }

  .eyebrow,
  .app-shell__eyebrow,
  .app-shell__steps-label,
  .hero-showcase__eyebrow,
  .gift-card__eyebrow,
  .field-intro__eyebrow,
  .field-label,
  .field-intro__chip,
  .story-aside__eyebrow,
  .hero-meta span,
  .hero-showcase__chip,
  .preview-tags span {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .stepper__index,
  .hero-showcase__identity strong {
    font-size: 1.08rem;
  }

  .hero-showcase__identity div span {
    font-size: 1rem;
  }

  .app-shell,
  .fields-card,
  .logo-uploader,
  .qr-stage {
    border-radius: 22px;
  }
}

@media (max-width: 720px) and (prefers-reduced-motion: no-preference) {
  .hero-scroll-cue {
    animation: scrollCue 1.6s ease-in-out infinite;
  }

  .hero-brand-ghost {
    animation: mobileLogoEnter 0.9s 0.12s var(--ease) both;
    will-change: opacity, transform;
  }

  .hero-brand-ghost img {
    animation: mobileLogoDrift 8.5s 1s ease-in-out infinite;
    will-change: transform;
  }

  .hero-brand-ghost::after {
    animation: mobileLogoCut 4.8s 1s ease-in-out infinite;
    will-change: opacity, transform;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation: none !important;
  }
}

@keyframes heroMarkFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -8px, 0) rotate(-1.1deg);
  }
}

@keyframes heroLineSweep {
  0%,
  100% {
    transform: rotate(-18deg) translate3d(-4%, 0, 0);
    opacity: 0.14;
  }

  50% {
    transform: rotate(-18deg) translate3d(12%, 0, 0);
    opacity: 0.3;
  }
}

@keyframes mobileLogoEnter {
  from {
    opacity: 0;
    transform: translate3d(22px, -12px, 0) scale(0.86) rotate(-3deg);
  }

  to {
    opacity: 0.2;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
}

@keyframes mobileLogoDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-6px, -10px, 0) rotate(-1.4deg);
  }
}

@keyframes mobileLogoCut {
  0%,
  100% {
    opacity: 0.08;
    transform: rotate(-18deg) translate3d(-10%, 0, 0);
  }

  45% {
    opacity: 0.3;
    transform: rotate(-18deg) translate3d(10%, 0, 0);
  }
}

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

  50% {
    transform: translate3d(-50%, 8px, 0);
  }
}

@keyframes soften-in {
  from {
    opacity: 0.4;
    transform: scale(0.985);
  }

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