:root {
  --ink: #2d1835;
  --muted: #6b5a70;
  --purple: #7b2d9f;
  --purple-dark: #1a0a24;
  --purple-mid: #4a1060;
  --yellow: #fdd82e;
  --soft: #f5f0fb;
  --white: #ffffff;
  --border: rgba(123, 45, 159, 0.12);
  --shadow: 0 18px 45px rgba(45, 24, 53, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

img,
svg {
  display: block;
}

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

.container {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-nav {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.nav-inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.footer-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-inner .logo {
  justify-self: start;
}

.nav-inner > .button {
  justify-self: end;
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 154px;
  line-height: 0;
}

.logo img {
  width: 100%;
  height: auto;
}

.logo-small {
  width: 132px;
}

.logo-on-dark {
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.92);
}

.nav-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  justify-self: center;
  margin-left: 0;
}

.nav-links a {
  position: relative;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  transition: color 160ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-links a:hover {
  color: var(--purple);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 0;
  border-radius: 16px;
  padding: 0 26px;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  transition: transform 160ms ease, opacity 160ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.98);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--white);
  background: var(--purple);
}

.button-accent {
  color: var(--ink);
  background: var(--yellow);
}

.button-small {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--purple-dark);
}

.hero-glow,
.waitlist-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(70px);
}

.hero-glow-purple {
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: rgba(123, 45, 159, 0.55);
}

.hero-glow-yellow {
  bottom: -120px;
  left: 34%;
  width: 320px;
  height: 320px;
  background: rgba(253, 216, 46, 0.24);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: center;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(253, 216, 46, 0.3);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--yellow);
  background: rgba(253, 216, 46, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.pill.centered {
  justify-content: center;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 1.7s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(1.45);
  }
}

.hero h1 {
  margin: 0;
  max-width: 670px;
  color: var(--white);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-copy > p {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.text-gradient {
  color: var(--yellow);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient.warm {
  background-image: linear-gradient(90deg, #fdd82e 0%, #f5a623 100%);
}

.text-gradient.gold {
  background-image: linear-gradient(90deg, #c084e0 0%, #fdd82e 100%);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 600;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-row svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  height: min(560px, 60vw);
  min-height: 480px;
}

.stacked-panels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.photo-panel,
.locker-panel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #3f1654;
}

.photo-panel {
  min-height: 0;
}

.stacked-panels .photo-panel {
  flex: 1;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 10, 36, 0.72), transparent 55%);
}

.caption {
  position: absolute;
  z-index: 1;
  left: 12px;
  right: 12px;
  bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.caption strong,
.locker-panel strong {
  display: block;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 13px;
}

.caption span,
.locker-panel p {
  display: block;
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.locker-panel {
  height: 144px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 100%);
  background-size: 20px 20px, 20px 20px, auto;
}

.locker-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.locker-top svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.82);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.locker-top span {
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 800;
}

.section {
  padding: 80px 0;
}

.compact-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.section-white {
  background: var(--white);
}

.section-white:has(.steps) {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.section-white:has(.steps)::before,
.section-white:has(.steps)::after {
  display: none;
}

.section-white:has(.steps) .container {
  position: relative;
  z-index: 1;
}

.section-soft {
  background: var(--soft);
}

.section-soft:has(.benefits) {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(253, 216, 46, 0.18), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(123, 45, 159, 0.13), transparent 34%),
    linear-gradient(180deg, #f8f3fc 0%, #fffaf0 54%, #f5f0fb 100%);
}

.section-soft:has(.benefits)::before,
.section-soft:has(.benefits)::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(40px);
}

.section-soft:has(.benefits)::before {
  top: 90px;
  right: max(-130px, -8vw);
  width: 300px;
  height: 300px;
  background: rgba(253, 216, 46, 0.2);
}

.section-soft:has(.benefits)::after {
  left: max(-150px, -9vw);
  bottom: 34px;
  width: 340px;
  height: 340px;
  background: rgba(123, 45, 159, 0.12);
}

.section-soft:has(.benefits) .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  margin-bottom: 56px;
  text-align: center;
}

.section-heading p {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.16;
  letter-spacing: 0;
}

.steps,
.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.steps {
  position: relative;
  gap: 32px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 18%;
  right: 18%;
  height: 2px;
  background: linear-gradient(90deg, rgba(123, 45, 159, 0.18), var(--purple), var(--yellow), rgba(253, 216, 46, 0.18));
}

.steps article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(123, 45, 159, 0.12);
  border-radius: 8px;
  padding: 30px 24px 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(253, 216, 46, 0.2), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 250, 240, 0.88) 100%),
    var(--white);
  box-shadow: 0 22px 50px rgba(45, 24, 53, 0.1);
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.steps article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(123, 45, 159, 0.08), transparent 36%),
    linear-gradient(315deg, rgba(253, 216, 46, 0.18), transparent 34%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.steps article::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), #a855c8, var(--yellow));
}

.steps article:hover {
  transform: translateY(-6px);
  border-color: rgba(123, 45, 159, 0.2);
  box-shadow: 0 30px 70px rgba(45, 24, 53, 0.15);
}

.steps article:hover::before {
  opacity: 1;
}

.steps-cta {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.steps-cta .button {
  min-height: 56px;
  border-radius: 999px;
  padding: 0 30px;
  box-shadow: 0 16px 34px rgba(253, 216, 46, 0.28);
}

.icon-bubble {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, var(--purple) 0%, #a855c8 100%);
  box-shadow:
    0 20px 42px rgba(123, 45, 159, 0.24),
    0 0 0 10px rgba(123, 45, 159, 0.06),
    0 0 0 18px rgba(253, 216, 46, 0.08);
}

.icon-bubble svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-bubble span {
  position: absolute;
  top: -13px;
  right: -12px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(45, 24, 53, 0.14);
}

.steps h3,
.benefit-card h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  letter-spacing: 0;
}

.steps p,
.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.benefit-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(123, 45, 159, 0.12);
  border-radius: 8px;
  padding: 30px;
  background:
    radial-gradient(circle at 86% 8%, rgba(253, 216, 46, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 245, 0.92) 100%);
  box-shadow: 0 20px 46px rgba(45, 24, 53, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--purple), #a855c8, var(--yellow));
}

.benefit-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -44px;
  z-index: -1;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(123, 45, 159, 0.08);
  filter: blur(2px);
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(123, 45, 159, 0.2);
  box-shadow: 0 30px 70px rgba(45, 24, 53, 0.13);
}

.benefit-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.5), transparent 34%),
    var(--yellow);
  box-shadow:
    0 16px 30px rgba(253, 216, 46, 0.26),
    0 0 0 8px rgba(253, 216, 46, 0.13);
}

.benefit-icon svg,
.eyebrow svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card p {
  flex: 1;
}

.stat {
  border: 1px solid rgba(123, 45, 159, 0.1);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.stat strong {
  display: block;
  color: var(--purple);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.co-card {
  display: grid;
  grid-template-columns: 256px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  border-radius: 28px;
  padding: 40px;
  background: var(--yellow);
}

.co-card img {
  width: 100%;
  height: 194px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 35px rgba(45, 24, 53, 0.18);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.co-card h2 {
  margin: 0 0 12px;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: clamp(27px, 4vw, 36px);
  line-height: 1.12;
  letter-spacing: 0;
}

.co-card p {
  max-width: 640px;
  margin: 0;
  color: #4a3050;
  font-size: 16px;
  line-height: 1.65;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tag-row span {
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(45, 24, 53, 0.1);
  font-size: 12px;
  font-weight: 800;
}

.waitlist {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, var(--purple-mid) 100%);
}

.waitlist-glow {
  top: -100px;
  right: -60px;
  width: 330px;
  height: 330px;
  background: rgba(253, 216, 46, 0.25);
}

.waitlist-inner {
  position: relative;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 28px;
  text-align: center;
}

.waitlist h2 {
  margin: 24px 0 16px;
  color: var(--white);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: clamp(31px, 5vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

.waitlist h2 span {
  color: var(--yellow);
}

.waitlist p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.65;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.form-message {
  border: 1px solid rgba(253, 216, 46, 0.45);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--yellow);
  background: rgba(253, 216, 46, 0.1);
  font-size: 14px;
  text-align: left;
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-align: left;
}

.lead-form label > span:first-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.lead-form input[type="text"],
.lead-form input[type="email"] {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 17px;
  outline: 0;
  padding: 0 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  caret-color: var(--yellow);
}

.lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.43);
}

.lead-form input:focus {
  box-shadow: 0 0 0 2px var(--yellow);
}

.privacy-check {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px !important;
  margin: 4px 0 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--yellow);
}

.form-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 4px;
}

.promise-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.promise-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.promise-list svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--white);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--purple);
}

.thanks-page {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--purple-dark) 0%, var(--purple) 60%, var(--yellow) 140%);
}

.thanks-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
}

.thanks-card {
  width: min(100%, 640px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  color: var(--white);
  text-align: center;
}

.success-mark {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
}

.success-mark svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thanks-card h1 {
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: clamp(31px, 6vw, 44px);
  line-height: 1.15;
  letter-spacing: 0;
}

.thanks-card h1 span {
  color: var(--yellow);
}

.thanks-card > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.7;
}

.error-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
}

.error-card {
  position: relative;
  isolation: isolate;
  width: min(100%, 620px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  border: 1px solid rgba(253, 216, 46, 0.24);
  border-radius: 28px;
  padding: clamp(34px, 6vw, 58px);
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 16% 12%, rgba(253, 216, 46, 0.22), transparent 34%),
    radial-gradient(circle at 86% 88%, rgba(255, 255, 255, 0.13), transparent 32%),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 80px rgba(26, 10, 36, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.error-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 6px;
  background: linear-gradient(90deg, var(--yellow), #ffffff, var(--purple-light));
}

.error-code {
  margin: 10px 0 -4px;
  color: var(--yellow);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: clamp(72px, 18vw, 138px);
  font-weight: 800;
  line-height: 0.9;
}

.error-card h1 {
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: clamp(30px, 6vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.error-card > p:not(.error-code) {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.65;
}

.error-card .button {
  margin-top: 8px;
}

.share-box,
.cocreation-box {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
}

.share-box strong,
.cocreation-box strong {
  display: block;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

.share-box span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.ref-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  border: 1px dashed rgba(253, 216, 46, 0.42);
  border-radius: 14px;
  padding: 12px;
  color: var(--yellow);
  background: rgba(253, 216, 46, 0.1);
}

.ref-row code {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.ref-row button {
  border: 0;
  border-radius: 10px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--yellow);
  cursor: pointer;
  font-weight: 800;
}

.cocreation-box {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(253, 216, 46, 0.34);
  padding: 30px;
  background:
    radial-gradient(circle at 88% 10%, rgba(253, 216, 46, 0.28), transparent 34%),
    radial-gradient(circle at 8% 92%, rgba(168, 85, 200, 0.32), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  box-shadow:
    0 28px 70px rgba(26, 10, 36, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.cocreation-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--yellow), #a855c8, rgba(255, 255, 255, 0.7));
}

.cocreation-box::after {
  content: "";
  position: absolute;
  right: -58px;
  top: -72px;
  z-index: -1;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(253, 216, 46, 0.16);
  filter: blur(12px);
}

.cocreation-kicker {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(253, 216, 46, 0.32);
  border-radius: 999px;
  padding: 7px 11px;
  margin-bottom: 12px;
  color: var(--yellow);
  background: rgba(253, 216, 46, 0.1);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cocreation-box strong {
  color: var(--white);
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.1;
}

.cocreation-box p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid rgba(253, 216, 46, 0.36);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 26px rgba(26, 10, 36, 0.18);
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(253, 216, 46, 0.68);
  background: rgba(253, 216, 46, 0.18);
  box-shadow: 0 18px 34px rgba(26, 10, 36, 0.24);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--yellow);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 40px, 980px);
  margin: 0 auto;
  border: 1px solid rgba(253, 216, 46, 0.24);
  border-radius: 8px;
  padding: 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(253, 216, 46, 0.16), transparent 30%),
    rgba(26, 10, 36, 0.96);
  box-shadow: 0 24px 70px rgba(26, 10, 36, 0.28);
  backdrop-filter: blur(16px);
}

.cookie-banner__copy {
  max-width: 560px;
}

.cookie-banner__copy strong {
  display: block;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 16px;
}

.cookie-banner__copy p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-banner__actions .button {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 13px;
}

.cookie-banner__secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.cookie-banner__actions a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
  background: var(--soft);
}

.legal-page article {
  width: min(100%, 760px);
  border-radius: 24px;
  padding: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-page h1 {
  margin: 32px 0 16px;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: 0;
}

.legal-page h2 {
  margin: 26px 0 8px;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 22px;
}

.legal-page p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.legal-page .button {
  margin-top: 14px;
  margin-right: 10px;
}

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

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

  .hero-media {
    height: 500px;
    min-height: 0;
  }

  .steps,
  .benefits,
  .co-card {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

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

  .co-card img {
    max-width: 360px;
    margin: 0 auto;
  }

  .eyebrow,
  .tag-row {
    justify-content: center;
  }

  .footer-inner {
    padding: 24px 0;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .button-small {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .cookie-banner__actions {
    justify-content: flex-start;
  }

  .cocreation-box {
    padding: 24px;
  }

  .social-links a {
    width: 100%;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    padding-top: 44px;
    padding-bottom: 56px;
    gap: 34px;
  }

  .hero-copy {
    gap: 22px;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-cta {
    width: 100%;
    min-height: 58px;
    padding: 0 16px;
    font-size: 14px;
  }

  .steps-cta .button {
    width: 100%;
    min-height: 58px;
    padding: 0 16px;
    font-size: 14px;
  }

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

  .tall-panel,
  .stacked-panels .photo-panel {
    min-height: 320px;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .benefit-card {
    border-radius: 8px;
    padding: 24px;
  }

  .co-card {
    border-radius: 22px;
    padding: 24px;
  }

  .waitlist {
    padding: 76px 0;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.hero {
  display: block;
  min-height: calc(100svh - 64px);
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a24 0%, var(--purple) 42%, #c47d10 78%, var(--yellow) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: end;
  gap: 36px;
  min-height: calc(100svh - 64px);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - 64px);
  padding: 72px 0;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin: 0;
  border: 1px solid rgba(253, 216, 46, 0.32);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--yellow);
  background: rgba(253, 216, 46, 0.12);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(253, 216, 46, 0.7);
  animation: pulse 1.8s infinite;
}

.hero h1 {
  max-width: none;
  margin: 22px 0 0;
  color: var(--white);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: clamp(2.55rem, 6vw, 3.65rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero h1 span {
  color: var(--yellow);
}

.hero__text {
  width: min(100%, 520px);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.hero__actions span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 600;
}

.button--primary {
  min-height: 48px;
  border-radius: 999px;
  padding: 0 24px;
  color: #1a0a24;
  background: var(--yellow);
  box-shadow: 0 8px 26px rgba(253, 216, 46, 0.32);
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  list-style: none;
}

.trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero__image {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.hero__image img {
  max-width: 100%;
  max-height: calc(100svh - 80px);
  object-fit: contain;
  object-position: center bottom;
  transform: scaleX(-1);
}

@media (max-width: 900px) {
  .nav-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
    padding: 12px 0;
  }

  .nav-inner .logo {
    margin-right: auto;
  }

  .nav-links {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__copy {
    min-height: auto;
    padding: 64px 0 22px;
  }

  .hero__image {
    max-height: 430px;
  }

  .hero__image img {
    max-height: 430px;
    transform: none;
  }
}

@media (max-width: 560px) {
  .nav-inner {
    min-height: 0;
  }

  .nav-inner .logo {
    width: 132px;
  }

  .hero {
    min-height: auto;
  }

  .hero__copy {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

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

  .hero__actions .button {
    width: 100%;
  }

  .hero__image {
    margin-inline: -28px;
  }
}
