:root {
  --cream: oklch(97% 0.012 65);
  --cream2: oklch(94% 0.018 65);
  --ink: oklch(18% 0.025 50);
  --ink-soft: oklch(45% 0.02 50);
  --plum: oklch(62% 0.18 340);
  --plum-mid: oklch(70% 0.15 340);
  --plum-light: oklch(93% 0.07 340);
  --plum-xlight: oklch(97.5% 0.03 340);
  --gold: oklch(74% 0.15 75);
  --gold-light: oklch(94% 0.06 75);
  --surface: oklch(99.5% 0.006 30);
  --border: oklch(91% 0.012 340);
  --rainbow-btn: linear-gradient(
    90deg,
    oklch(75% 0.13 280),
    oklch(74% 0.14 320),
    oklch(72% 0.15 355),
    oklch(75% 0.13 40)
  );
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 12px oklch(18% 0.025 50 / 0.07);
  --shadow-md: 0 6px 32px oklch(18% 0.025 50 / 0.1);
  --shadow-lg: 0 16px 64px oklch(18% 0.025 50 / 0.13);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Nunito", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  text-wrap: pretty;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 99px;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.animate-in {
  animation: fade-up 0.65s cubic-bezier(.22, .68, 0, 1.2) both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.22s;
}

.delay-3 {
  animation-delay: 0.36s;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

section {
  padding: 80px 24px;
}

.section-label {
  margin-bottom: 14px;
  color: var(--plum-mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h2.display {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
}

h2.display em {
  color: var(--plum);
  font-style: italic;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, border-color 0.18s, opacity 0.18s;
}

.btn-primary {
  padding: 16px 36px;
  border-radius: 99px;
  background: var(--rainbow-btn);
  box-shadow: 0 4px 24px oklch(70% 0.16 320 / 0.35);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px oklch(70% 0.16 320 / 0.45);
}

.btn-primary:disabled,
.btn-secondary:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.btn-primary.large {
  padding: 20px 48px;
  font-size: 18px;
}

.btn-secondary {
  padding: 12px 24px;
  border: 2px solid var(--plum-light);
  border-radius: 99px;
  background: transparent;
  color: var(--plum);
  font-size: 15px;
  font-weight: 700;
}

.btn-secondary:hover:not(:disabled) {
  border-color: var(--plum);
  background: var(--plum-xlight);
}

.banner-stack {
  padding-top: 92px;
}

.banner {
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-size: 14px;
}

.banner strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.banner.is-success {
  border-color: oklch(87% 0.06 155);
  background: oklch(98% 0.018 155);
  color: oklch(32% 0.06 155);
}

.banner.is-info {
  border-color: oklch(88% 0.03 260);
  background: oklch(98% 0.02 260);
  color: oklch(28% 0.05 260);
}

.banner.is-error {
  border-color: oklch(85% 0.08 20);
  background: oklch(97% 0.03 20);
  color: oklch(40% 0.09 20);
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 28px;
  border-bottom: 1px solid var(--border);
  background: oklch(99.5% 0.006 65 / 0.92);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--plum);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-select {
  appearance: none;
  padding: 6px 14px 6px 12px;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: var(--cream2);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  outline: none;
}

.nav-cta {
  display: none;
}

@media (min-width: 640px) {
  .nav-cta {
    display: inline-flex;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 80% 10%, oklch(92% 0.09 280 / 0.55), transparent),
    radial-gradient(ellipse 50% 40% at 20% 80%, oklch(94% 0.08 40 / 0.45), transparent),
    radial-gradient(ellipse 60% 50% at 50% 50%, oklch(95% 0.07 320 / 0.35), transparent),
    var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='0.8' fill='oklch(50%25 0.05 320 / 0.12)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid var(--plum-light);
  border-radius: 99px;
  background: var(--plum-xlight);
  color: var(--plum);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-badge .dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--plum);
}

.hero-badge .dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--plum);
  animation: pulse-ring 1.6s ease-out infinite;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero h1 em {
  color: var(--plum);
  font-style: italic;
}

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

.hero-sub {
  max-width: 520px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 13px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.hero-trust-item svg {
  color: var(--gold);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-mockup {
  position: relative;
  width: min(320px, 80vw);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    oklch(72% 0.16 280),
    oklch(70% 0.18 320),
    oklch(68% 0.18 355),
    oklch(72% 0.15 40)
  );
  box-shadow:
    var(--shadow-lg),
    0 0 0 14px oklch(99% 0.006 65),
    0 0 0 16px oklch(88% 0.01 65);
  animation: float-y 5s ease-in-out infinite;
}

.hero-mockup-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 32px 24px;
  color: white;
  text-align: center;
}

.hero-mockup .stars {
  margin-bottom: 12px;
  font-size: 20px;
  letter-spacing: 2px;
}

.hero-mockup .game-title {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-mockup .game-copy {
  margin-bottom: 16px;
  color: oklch(100% 0 0 / 0.75);
  font-size: 11px;
  line-height: 1.5;
}

.hero-plush-frame,
.hero-plush-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  margin: 20px auto;
  border-radius: 50%;
}

.hero-plush-frame {
  overflow: hidden;
  border: 3px solid oklch(100% 0 0 / 0.35);
  background: oklch(100% 0 0 / 0.12);
}

.hero-plush-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-plush-placeholder {
  padding: 12px;
  border: 3px dashed oklch(100% 0 0 / 0.35);
  background: oklch(100% 0 0 / 0.12);
  color: oklch(100% 0 0 / 0.55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.hero-mockup .game-cta {
  display: inline-flex;
  align-self: center;
  padding: 10px 24px;
  border-radius: 99px;
  background: var(--gold);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero-floater {
  position: absolute;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.hero-floater.top-left {
  top: 12%;
  left: -8%;
}

.hero-floater.bottom-right {
  right: -6%;
  bottom: 18%;
}

@media (max-width: 900px) {
  .hero-floater.top-left {
    left: 0;
  }

  .hero-floater.bottom-right {
    right: 0;
  }
}

.trust-bar {
  padding: 28px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.trust-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 99px;
  background: var(--plum-light);
  font-size: 17px;
}

.how-section {
  background: var(--cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.step-card {
  position: relative;
  overflow: hidden;
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--plum), var(--gold));
  opacity: 0;
  transition: opacity 0.2s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-card:hover::before {
  opacity: 1;
}

.step-num {
  margin-bottom: 8px;
  color: var(--plum-light);
  font-family: var(--font-display);
  font-size: 52px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--plum-light);
  font-size: 24px;
}

.step-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
}

.step-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.video-section {
  background: var(--cream2);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px;
  align-items: center;
}

.video-grid p.body-copy {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.video-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.video-bullets li {
  display: flex;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 14px;
}

.video-bullets .check {
  margin-top: 1px;
  color: var(--plum);
  font-weight: 700;
}

.video-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top left, oklch(95% 0.06 320 / 0.9), transparent 35%),
    radial-gradient(circle at bottom right, oklch(96% 0.06 55 / 0.8), transparent 40%),
    var(--surface);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed oklch(76% 0.04 340 / 0.45);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
}

.play-btn {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--rainbow-btn);
  box-shadow: 0 10px 34px oklch(70% 0.16 320 / 0.32);
}

.play-btn svg {
  width: 34px;
  height: 34px;
  fill: white;
}

.video-text {
  max-width: 420px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.25;
}

.video-note {
  max-width: 420px;
  margin: 12px auto 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.emotion-section {
  background: linear-gradient(
    135deg,
    oklch(93% 0.07 320) 0%,
    oklch(94% 0.08 355) 50%,
    oklch(95% 0.06 40) 100%
  );
}

.emotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.emotion-card {
  padding: 32px 24px;
  border: 1px solid oklch(100% 0 0 / 0.5);
  border-radius: var(--radius);
  background: oklch(100% 0 0 / 0.6);
  backdrop-filter: blur(8px);
}

.emotion-card .icon {
  margin-bottom: 16px;
  font-size: 32px;
}

.emotion-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.emotion-card p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.emotion-quote {
  max-width: 700px;
  margin: 56px auto 0;
  text-align: center;
}

.emotion-quote blockquote {
  margin-bottom: 16px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  opacity: 0.88;
}

.emotion-quote cite {
  color: var(--ink-soft);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}

.order-section {
  background: var(--cream2);
}

.order-wrapper {
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.order-header {
  padding: 36px 40px;
  color: white;
  text-align: center;
  background: linear-gradient(
    135deg,
    oklch(75% 0.14 280),
    oklch(74% 0.16 320),
    oklch(72% 0.15 355),
    oklch(75% 0.13 40)
  );
}

.order-header h2 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-style: italic;
  font-weight: 600;
}

.order-header p {
  opacity: 0.84;
  font-size: 14px;
}

.progress-bar {
  height: 4px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 99px;
  background: oklch(100% 0 0 / 0.24);
}

.progress-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, oklch(100% 0 0 / 0.9), oklch(100% 0 0 / 0.5));
  transition: width 0.35s ease;
}

.order-steps-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: var(--cream2);
}

.order-step-tab {
  position: relative;
  flex: 1;
  padding: 14px 8px;
  border-bottom: 3px solid transparent;
  color: var(--ink-soft);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.order-step-tab.is-clickable {
  cursor: pointer;
}

.order-step-tab.active {
  border-bottom-color: var(--plum);
  color: var(--plum);
}

.order-step-tab.done {
  color: var(--plum-mid);
}

.order-step-tab .tab-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin: 0 auto 4px;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: var(--cream2);
  font-size: 11px;
  font-weight: 800;
  transition: all 0.2s;
}

.order-step-tab.active .tab-num {
  border-color: var(--plum);
  background: var(--plum);
  color: white;
}

.order-step-tab.done .tab-num {
  border-color: var(--plum-light);
  background: var(--plum-light);
  color: var(--plum);
}

.order-body {
  padding: 36px 40px;
}

@media (max-width: 600px) {
  .order-body {
    padding: 24px 20px;
  }

  .order-header {
    padding: 28px 20px;
  }
}

.field-group {
  margin-bottom: 24px;
}

.field-label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.field-hint {
  margin-left: 6px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 400;
}

.field-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.field-input:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 4px oklch(42% 0.14 320 / 0.1);
}

.field-input::placeholder {
  color: oklch(65% 0.01 50);
}

.field-inline-note {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 12px;
}

.field-error {
  margin-bottom: 22px;
  padding: 14px 16px;
  border: 1px solid oklch(85% 0.08 20);
  border-radius: var(--radius-sm);
  background: oklch(97% 0.03 20);
  color: oklch(40% 0.09 20);
  font-size: 14px;
  font-weight: 700;
}

.upload-zone {
  padding: 36px 24px;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}

.upload-zone.is-clickable {
  cursor: pointer;
}

.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--plum);
  background: var(--plum-xlight);
}

.upload-zone .upload-icon {
  margin-bottom: 12px;
  font-size: 36px;
}

.upload-zone p {
  color: var(--ink-soft);
  font-size: 14px;
}

.upload-zone strong {
  color: var(--plum);
  font-weight: 700;
}

.upload-zone .sub {
  margin-top: 6px;
  color: oklch(60% 0.01 50);
  font-size: 12px;
}

.upload-preview-shell {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.upload-preview {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto 12px;
  border: 3px solid var(--plum);
  border-radius: 50%;
  object-fit: cover;
}

.upload-preview-name {
  color: var(--ink-soft);
  font-size: 12px;
}

.lang-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}

.lang-btn {
  padding: 12px 8px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: all 0.18s;
}

.lang-btn:hover {
  border-color: var(--plum);
  background: var(--plum-xlight);
}

.lang-btn.selected {
  border-color: var(--plum);
  background: var(--plum-xlight);
  color: var(--plum);
}

.lang-btn .flag {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.plan-card {
  position: relative;
  padding: 24px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  text-align: center;
  transition: all 0.2s;
}

.plan-card.is-clickable {
  cursor: pointer;
}

.plan-card:hover {
  border-color: var(--plum);
  transform: translateY(-2px);
}

.plan-card.selected {
  border-color: var(--plum);
  background: var(--plum-xlight);
  box-shadow: 0 0 0 4px oklch(42% 0.14 320 / 0.1);
}

.plan-card.featured {
  border-color: var(--plum);
}

.plan-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  padding: 3px 12px;
  border-radius: 99px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.plan-name {
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-title {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.plan-price {
  margin-top: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.plan-price span {
  color: var(--ink-soft);
  font-size: 1rem;
}

.plan-subtitle {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.plan-features {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 13px;
  text-align: left;
  list-style: none;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
}

.plan-features li::before {
  content: "✓";
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--plum);
  font-weight: 700;
}

.stripe-card {
  padding: 24px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
}

.stripe-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.stripe-logo svg {
  display: block;
}

.payment-card-title {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 600;
}

.payment-card-copy {
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.payment-bullets {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.payment-bullets li {
  display: flex;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 13px;
}

.payment-bullets .check {
  margin-top: 1px;
  color: var(--plum);
  font-weight: 700;
}

.order-summary {
  margin-bottom: 20px;
  padding: 16px 20px;
  border: 1px solid var(--plum-light);
  border-radius: var(--radius-sm);
  background: var(--plum-xlight);
  font-size: 14px;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 4px 0;
}

.order-summary-row.total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--plum-light);
  font-size: 16px;
  font-weight: 700;
}

.secure-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
}

.payment-email-reminder {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 12px;
  text-align: center;
}

.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
}

.wizard-actions-spacer {
  flex: 1;
}

.testimonials-section {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.testimonial-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 2px;
}

.testimonial-text {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--plum-light);
  font-size: 18px;
}

.testimonial-author-info {
  font-size: 13px;
}

.testimonial-author-info strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
}

.testimonial-author-info span {
  color: var(--ink-soft);
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
}

.stat span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.faq-section {
  background: var(--cream2);
}

.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.faq-question:hover {
  color: var(--plum);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--plum-light);
  font-size: 14px;
  transition: transform 0.25s;
}

.faq-icon.open {
  transform: rotate(45deg);
  background: var(--plum);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(.22, .68, 0, 1.2);
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 0 20px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.footer {
  padding: 56px 24px 32px;
  background: var(--ink);
  color: oklch(80% 0.01 50);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px 48px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.footer-brand h3 {
  margin-bottom: 12px;
  color: white;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}

.footer-brand h3 span {
  color: var(--plum-mid);
}

.footer-brand p {
  max-width: 240px;
  font-size: 13px;
  line-height: 1.65;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  color: oklch(55% 0.02 50);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.footer-col h4 {
  margin-bottom: 16px;
  color: oklch(65% 0.02 50);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: oklch(75% 0.01 50);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.18s;
}

.footer-col a:hover {
  color: white;
}

.footer-payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-chip {
  padding: 4px 10px;
  border: 1px solid oklch(100% 0 0 / 0.12);
  border-radius: 6px;
  background: oklch(100% 0 0 / 0.07);
  color: oklch(70% 0.01 50);
  font-size: 11px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid oklch(100% 0 0 / 0.08);
  color: oklch(55% 0.01 50);
  font-size: 12px;
}

.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 -8px 32px oklch(18% 0.025 50 / 0.12);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(.22, .68, 0, 1.2);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-info {
  flex: 1;
  min-width: 0;
}

.sticky-cta-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.sticky-cta-info span {
  color: var(--ink-soft);
  font-size: 12px;
}

.sticky-cta .btn-primary {
  flex-shrink: 0;
  padding: 13px 24px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

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

@media (max-width: 640px) {
  section {
    padding: 72px 20px;
  }

  .nav {
    padding: 0 16px;
  }

  .nav-right {
    gap: 8px;
  }

  .nav-select {
    max-width: 92px;
    font-size: 12px;
  }

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

  .wizard-actions {
    flex-wrap: wrap;
  }

  .wizard-actions .btn-primary,
  .wizard-actions .btn-secondary {
    width: 100%;
  }

  .wizard-actions-spacer {
    display: none;
  }
}

.embedded-inline {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(67, 91, 124, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(251,245,234,0.94) 100%);
  box-shadow: 0 18px 50px rgba(74, 59, 42, 0.08);
}

.embedded-inline-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.embedded-inline-header h3 {
  margin: 8px 0 10px;
  font-family: var(--display-font);
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.embedded-inline-header p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.embedded-inline-close {
  flex-shrink: 0;
}

.embedded-inline-shell {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(67, 91, 124, 0.12);
  border-radius: 26px;
  min-height: 560px;
  padding: 14px;
}

.embedded-inline-loading {
  position: absolute;
  inset: 14px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(255, 251, 245, 0.88);
  z-index: 1;
  color: var(--ink-soft);
  font-weight: 700;
}

.embedded-checkout-frame {
  min-height: 532px;
}

.embedded-inline-note {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 8px;
  color: var(--ink-soft);
  font-weight: 700;
}

@media (max-width: 720px) {
  .embedded-inline {
    margin-top: 18px;
    padding: 16px;
    border-radius: 22px;
  }

  .embedded-inline-header {
    flex-direction: column;
    align-items: stretch;
  }

  .embedded-inline-header h3 {
    font-size: 2rem;
  }

  .embedded-inline-close {
    width: 100%;
  }

  .embedded-inline-shell {
    min-height: 500px;
    padding: 10px;
  }

  .embedded-checkout-frame {
    min-height: 480px;
  }
}
