:root {
  --bg: #152351;
  --bg-soft: #112046;
  --surface: #1a2a55;
  --surface-raised: #1e315f;
  --ink: #f4f3ef;
  --muted: #9aa3bd;
  --line: rgba(224, 197, 144, 0.16);
  --brand: #e0c590;
  --brand-dark: #edd9a8;
  --brand-soft: rgba(224, 197, 144, 0.12);
  --accent: #e0c590;
  --accent-soft: rgba(224, 197, 144, 0.1);
  --success: #b7c4ae;
  --on-brand: #152351;
  --charcoal: #243568;
  --navy: #152351;
  --navy-deep: #0f1a3a;
  --radius: 0.85rem;
  --radius-sm: 0.55rem;
  --radius-btn: 0.65rem;
  --shadow: 0 8px 24px rgba(8, 14, 32, 0.28);
  --shadow-lg: 0 20px 48px rgba(8, 14, 32, 0.4);
  --container: 70rem;
  --header-h: 4.1rem;
  --section-y: clamp(3.5rem, 6vw, 5.5rem);
  --font: "YekanBakh", "Vazirmatn", Tahoma, system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

a,body,h1,h2,h3,h4,h5,h6,p,span,input,textarea,ul,li,ol,div,button {
   font-family: 'Yekan Bakh'  !important;
}


@font-face {
  font-family: 'Yekan Bakh';
  src: url('/wp-content/uploads/2026/07/YekanBakhFaNum-Regular.woff2') format('woff2'),
         url('#') format('woff'),
         url('#') format('truetype');
	font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

/* Zavie ambient pattern + glows — fades out softly, no hard horizon */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 12%,
    rgba(0, 0, 0, 0.75) 28%,
    rgba(0, 0, 0, 0.35) 48%,
    rgba(0, 0, 0, 0.1) 65%,
    transparent 82%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 12%,
    rgba(0, 0, 0, 0.75) 28%,
    rgba(0, 0, 0, 0.35) 48%,
    rgba(0, 0, 0, 0.1) 65%,
    transparent 82%
  );
}

.ambient-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("../assets/pattern-angle.svg");
  background-size: 140px 140px;
  background-repeat: repeat;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.ambient-glow-a {
  width: 42vw;
  height: 42vw;
  top: -12%;
  inset-inline-end: -10%;
  background: rgba(224, 197, 144, 0.14);
  animation: glow-drift 14s ease-in-out infinite alternate;
}

.ambient-glow-b {
  width: 36vw;
  height: 36vw;
  top: 35%;
  inset-inline-start: -14%;
  background: rgba(224, 197, 144, 0.07);
  animation: glow-drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes glow-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-4%, 6%) scale(1.08); }
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  z-index: 60;
}

.mobile-buy {
  z-index: 70;
}

.toast {
  z-index: 80;
}

body.is-ready .reveal {
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

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

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

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: var(--radius-btn);
  font-weight: 700;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  white-space: nowrap;
	padding: 6px 14px;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.9rem 1.45rem;
  font-size: 0.95rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--brand);
  color: var(--on-brand);
  box-shadow: 0 6px 18px rgba(224, 197, 144, 0.2);
}

.btn-primary:hover {
  background: var(--brand-dark);
  color: var(--on-brand);
  box-shadow: 0 8px 22px rgba(224, 197, 144, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(224, 197, 144, 0.35);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid transparent;
}

.btn-ghost:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.btn-ghost-light {
  background: rgba(224, 197, 144, 0.08);
  color: #fff;
  border: 1px solid rgba(224, 197, 144, 0.28);
}

.btn-ghost-light:hover {
  background: rgba(224, 197, 144, 0.16);
  border-color: var(--accent);
  color: var(--accent);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  background: rgba(21, 35, 81, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: transparent;
  box-shadow:
    0 1px 0 rgba(224, 197, 144, 0.1),
    0 12px 28px rgba(15, 26, 58, 0.35);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand{
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
 width: 60px;
}

.brand .site-logo {
    width: 50px !important;
    max-width: 50px !important;
    height: auto !important;
}

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.55rem;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: var(--on-brand);
  font-weight: 800;
  font-size: 1.1rem;
  border: 1px solid rgba(224, 197, 144, 0.55);
  box-shadow: 0 6px 16px rgba(224, 197, 144, 0.2);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 1rem;
  color: var(--ink);
}

.brand-text small {
  color: var(--accent);
  font-size: 0.72rem;
  opacity: 0.9;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-inline: auto;
}

.nav-menu a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.55rem;
  border: 1px solid var(--line);
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  margin-inline-start: auto;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Product hero — first page: mascot above, bars at the bottom */
.product-hero {
  padding: 0;
  position: relative;
  z-index: 50;
  overflow: hidden;
  height: calc(100svh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    radial-gradient(ellipse 50% 45% at 50% 70%, rgba(72, 168, 92, 0.16), transparent 58%),
    radial-gradient(ellipse 55% 40% at 50% 12%, rgba(224, 197, 144, 0.16), transparent 55%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(224, 197, 144, 0.08), transparent 60%),
    linear-gradient(180deg, var(--navy-deep) 0%, #132048 48%, var(--bg) 100%);
}

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

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

.hero-glow-gold {
  width: 42vw;
  height: 42vw;
  top: -6%;
  left: 50%;
  transform: translateX(-50%);
  inset-inline-end: auto;
  background: rgba(224, 197, 144, 0.2);
  animation: glow-drift 16s ease-in-out infinite alternate;
}

.hero-glow-green {
  width: 36vw;
  height: 36vw;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  inset-inline-start: auto;
  background: rgba(74, 170, 95, 0.18);
  animation: glow-drift 20s ease-in-out infinite alternate-reverse;
}

.hero-grid-fade {
  position: absolute;
  inset: 0;
  bottom: 18%;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(224, 197, 144, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 197, 144, 0.35) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 38%, #000 18%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 38%, #000 18%, transparent 72%);
  pointer-events: none;
}

/* Title + mascot move together; tuck under the bottom bars */
.hero-composition {
  position: relative;
  z-index: 2;
  width: min(100%, 72rem);
  margin-inline: auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 0;
  padding: 0;
  /* Pull stage under the bars */
  margin-bottom: clamp(-5.5rem, -9vh, -3.75rem);
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title-wrap {
  position: absolute;
  inset-inline: 0;
  top: 16%;
  z-index: 1;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding-inline: 0.5rem;
}

.hero-title-bg {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10rem, 28vw, 22rem);
  font-size: 100px !important;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  text-align: center;
  color: var(--ink);
  text-shadow: 0 8px 40px rgba(8, 14, 32, 0.35);
}

.product-visual {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(100% - 1rem, 42rem, calc(100dvh - var(--header-h) - 7.5rem));
  margin-inline: auto;
  margin-top: 0;
  pointer-events: none;
}

.mascot-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
}

.hero-mascot {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 28px rgba(8, 14, 32, 0.28));
}

.mascot-ring,
.mascot-floor {
  display: none;
}

/* Dual marquees — bottom of first page, above the mascot */
.marquees-rail {
  position: relative;
  z-index: 55;
  flex: 0 0 auto;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.product-hero .marquees {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 0;
  outline: none;
  box-shadow: none;
  background: transparent;
  transform: none;
}

.product-hero .marquees::before,
.product-hero .marquees::after {
  display: none;
}

.marquee {
  overflow: hidden;
  padding: 0;
  margin: 0;
  direction: ltr;
  border: 0;
  box-shadow: none;
}

.marquee-fa {
  background: #121c3a;
  padding: 0.9rem 0;
  border: 0;
}

.marquee-fa .marquee-content {
  color: var(--brand);
}

.marquee-accent {
  background: var(--brand);
  padding: 0.72rem 0;
  border: 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  animation: marquee-scroll var(--marquee-duration, 35s) linear infinite;
}

.marquee.is-reverse .marquee-track {
  animation-name: marquee-scroll-reverse;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1.75rem;
  padding-inline-end: 1.75rem;
  white-space: nowrap;
  color: var(--brand);
  font-weight: 800;
  font-size: clamp(0.88rem, 1.7vw, 1.1rem);
  letter-spacing: 0.04em;
}

.marquee-content .dot {
  opacity: 0.55;
  font-weight: 400;
}

.marquee-fa .marquee-content .dot {
  color: var(--brand);
}

.marquee-accent .marquee-content {
  color: var(--on-brand);
  font-size: clamp(0.72rem, 1.3vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.marquee-accent .marquee-content .dot {
  color: rgba(21, 35, 81, 0.4);
}

@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(var(--marquee-distance, 50%) * -1), 0, 0); }
}

@keyframes marquee-scroll-reverse {
  from { transform: translate3d(calc(var(--marquee-distance, 50%) * -1), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.cream-rule {
  display: none;
}

.why {
  position: relative;
}

.section-head .eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1px;
  background: var(--accent);
  margin-inline-end: 0.5rem;
  vertical-align: middle;
  opacity: 0.7;
}

.journey-step,
.feature-card,
.price-card,
.need-chip {
  backdrop-filter: none;
}

.journey-step::before {
  display: none;
}

/* Customer journey */
.journey {
  position: relative;
  z-index: 1;
  padding: clamp(3.25rem, 6vw, 5rem) 0 var(--section-y);
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  position: relative;
}

.journey-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.journey-shot {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
  border-bottom: 1px solid rgba(224, 197, 144, 0.18);
  background: var(--navy-deep);
}

.journey-step .journey-num {
  margin: 1.1rem 1.35rem 0;
}

.journey-body {
  padding: 0.85rem 1.35rem 1.35rem;
}

.journey-step.is-current {
  border-color: rgba(224, 197, 144, 0.45);
  box-shadow: var(--shadow);
}

.journey-num {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  border: 1px solid rgba(224, 197, 144, 0.35);
}

.journey-step.is-current .journey-num {
  background: var(--brand);
  color: var(--on-brand);
  border-color: var(--brand);
}

.journey-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.journey-body p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.journey-action {
  align-self: flex-start;
}

/* Need finder */
.need-finder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.need-chip {
  text-align: start;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.05rem;
  box-shadow: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.need-chip strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.need-chip span {
  color: var(--muted);
  font-size: 0.8rem;
}

.need-chip:hover {
  border-color: rgba(224, 197, 144, 0.55);
  transform: translateY(-2px);
}

.need-chip.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(224, 197, 144, 0.35), var(--shadow);
}

.recommend-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: linear-gradient(90deg, rgba(224, 197, 144, 0.1), var(--surface));
  border: 1px solid rgba(224, 197, 144, 0.4);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-bottom: 1.25rem;
}

.recommend-banner p {
  color: var(--muted);
  font-size: 0.92rem;
}

.recommend-banner strong {
  color: var(--accent);
}

.pkg-for {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-btn);
  margin-bottom: 0.55rem;
  border: 1px solid rgba(224, 197, 144, 0.22);
}

.price-card.is-recommended {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(224, 197, 144, 0.14), var(--surface) 42%);
}

.price-card.is-dimmed {
  opacity: 0.55;
  filter: grayscale(0.15);
}

.feature-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.feature-more {
  margin-top: 1rem;
}

.feature-more[hidden] {
  display: none;
}

.how-tag {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: var(--brand);
  color: var(--on-brand);
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
  border: 0;
}

.cta-selected {
  margin-top: 0.65rem;
  color: var(--accent);
  font-size: 0.92rem;
}

.toast {
  position: fixed;
  bottom: 5.5rem;
  inset-inline: 0;
  margin-inline: auto;
  width: fit-content;
  max-width: min(90vw, 22rem);
  z-index: 80;
  background: var(--brand);
  color: var(--on-brand);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-btn);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: toast-in 0.35s var(--ease);
}

.toast[hidden] {
  display: none;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Shared media frames */
.media-frame {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: none;
}

.media-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.media-frame figcaption {
  padding: 0.7rem 1rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  border-top: 1px solid rgba(224, 197, 144, 0.2);
  background: rgba(224, 197, 144, 0.06);
}

/* Shop tabs */
.shop-tabs-section {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(21, 35, 81, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-block: 1px solid var(--line);
}

.shop-tabs {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  padding: 0.35rem 0;
  scrollbar-width: none;
}

.shop-tabs::-webkit-scrollbar {
  display: none;
}

.shop-tab {
  padding: 0.85rem 1.15rem;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.shop-tab:hover {
  color: var(--accent);
}

.shop-tab.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Sections shared */
.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.65rem;
  letter-spacing: -0.025em;
  font-weight: 800;
  line-height: 1.35;
}

.section-head p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 0.55rem;
  letter-spacing: 0.06em;
}

/* Intro */
.intro-section {
  padding: var(--section-y) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 3vw, 2.75rem);
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.intro-copy h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.intro-copy > p {
  color: var(--muted);
  margin-bottom: 1.35rem;
  max-width: 34rem;
  line-height: 1.8;
}

.intro-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.intro-points {
  display: grid;
  gap: 0.75rem;
}

.intro-points li {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-inline-start: 2px solid rgba(224, 197, 144, 0.35);
  padding-inline-start: 1rem;
}

.intro-points strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ink);
  font-size: 0.98rem;
}

.intro-points span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Features */
.features {
  padding: var(--section-y) 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:has(.feature-shot) {
  padding: 0;
}

.feature-shot {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-bottom: 1px solid var(--line);
  background: var(--navy-deep);
}

.feature-body {
  padding: 1.15rem 1.15rem 1.3rem;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 197, 144, 0.4);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--accent);
  margin-bottom: 0.8rem;
  border: 1px solid rgba(224, 197, 144, 0.28);
}

.feature-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  font-weight: 800;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* How */
.how {
  padding: var(--section-y) 0;
}

.how-media {
  margin-bottom: 1.5rem;
  max-width: 52rem;
  margin-inline: auto;
}

.how-media img {
  aspect-ratio: 1100 / 640;
}

.how-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.how-modules article {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  border-inline-start: 2px solid rgba(224, 197, 144, 0.35);
  padding-inline-start: 1.1rem;
}

.how-modules h3 {
  color: var(--ink);
  margin-bottom: 0.4rem;
  font-weight: 800;
}

.how-modules p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Pricing */
.pricing {
  padding: var(--section-y) 0;
  background: transparent;
}

.token-usage {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  margin-bottom: 1.75rem;
  box-shadow: none;
}

.token-usage h3 {
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
}

.token-usage ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.token-usage li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  border: 1px solid var(--line);
}

.token-usage span {
  color: var(--muted);
  font-size: 0.82rem;
}

.token-usage strong {
  color: var(--accent);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.1rem 1.25rem;
  text-align: center;
  box-shadow: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.price-card img {
  margin: 0 auto 0.75rem;
}

.price-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.pkg-meta {
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 0.65rem;
}

.pkg-price {
  margin-bottom: 0.9rem;
}

.pkg-price strong {
  font-size: 1.25rem;
  display: block;
  color: var(--accent);
}

.price-card ul {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
  text-align: start;
}

.price-card li {
  background: var(--bg-soft);
  border-radius: 0.55rem;
  padding: 0.45rem 0.65rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.price-card li strong {
  color: var(--ink);
}

.price-card.is-popular {
  border-color: rgba(224, 197, 144, 0.5);
  background: linear-gradient(180deg, rgba(224, 197, 144, 0.1), var(--surface) 48%);
  transform: none;
  box-shadow: var(--shadow);
}

.price-card.is-popular:hover {
  transform: translateY(-3px);
}

.price-card.is-selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(224, 197, 144, 0.4), var(--shadow-lg);
}

.popular-tag {
  position: absolute;
  top: -0.65rem;
  inset-inline: 0;
  margin-inline: auto;
  width: fit-content;
  background: var(--accent);
  color: var(--on-brand);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-btn);
}

/* Why */
.why {
  padding: var(--section-y) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 3vw, 2.75rem);
  align-items: center;
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  padding: 0;
  overflow: visible;
  position: relative;
  border: 0;
}

.why-grid::before {
  display: none;
}

.why-copy .eyebrow {
  color: var(--accent);
}

.why-copy h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  color: var(--ink);
  margin-bottom: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.why-copy > p {
  color: var(--muted);
  position: relative;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.why-media {
  position: relative;
  z-index: 1;
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.why-media img {
  aspect-ratio: 800 / 520;
  display: block;
}

.why-list {
  display: grid;
  gap: 0.55rem;
  position: relative;
}

.why-list li {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0.35rem 0;
  font-weight: 600;
  color: var(--muted);
}

.why-list li::before {
  content: "✓";
  color: var(--accent);
  margin-inline-end: 0.55rem;
  font-weight: 800;
}

/* FAQ */
.faq {
  padding: var(--section-y) 0;
}

.faq-list {
  max-width: 44rem;
  margin: 0 auto;
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 1.2rem;
  box-shadow: none;
}

.faq-item[open] {
  border-color: rgba(224, 197, 144, 0.35);
  background: rgba(26, 42, 85, 0.45);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 0;
  font-weight: 700;
  position: relative;
  padding-inline-end: 1.8rem;
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  color: var(--muted);
  padding-bottom: 1.15rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Reviews */
.reviews {
  padding: 0 0 var(--section-y);
}

.review-card {
  max-width: 38rem;
  margin: 0 auto;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: none;
}

.review-stars {
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.review-card > p {
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  line-height: 1.8;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.review-card footer strong {
  color: var(--ink);
}

/* Final CTA */
.final-cta {
  padding: 0 0 var(--section-y);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--navy-deep);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.1rem 2.2rem;
  border: 1px solid var(--line);
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.final-cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(224, 197, 144, 0.12), transparent 60%);
  pointer-events: none;
}

.final-cta-inner > * {
  position: relative;
}

.final-cta-inner h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  margin-bottom: 0.4rem;
}

.final-cta-inner p {
  color: rgba(244, 243, 239, 0.7);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: var(--muted);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .brand-text small,
.footer-brand .brand-text strong {
  color: var(--ink);
}

.footer-desc {
  margin-top: 0.9rem;
  max-width: 22rem;
  font-size: 0.92rem;
}

.site-footer h3 {
  color: #fff;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.site-footer a {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  font-size: 0.82rem;
}

/* Mobile sticky buy bar */
.mobile-buy {
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  background: rgba(21, 35, 81, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(224, 197, 144, 0.28);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
}

.mobile-buy strong {
  display: block;
  font-size: 0.92rem;
  color: var(--accent);
}

.mobile-buy span {
  color: var(--muted);
  font-size: 0.75rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.stagger > * {
  opacity: 0;
  transform: translateY(18px);
}

.stagger.is-visible > * {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
  transition-delay: calc(var(--i, 0) * 0.06s);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .stagger > *,
  .ambient-glow,
  .hero-glow,
  .marquee-track,
  .hero-mascot,
  .mascot-ring {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .price-card.is-popular {
    transform: none;
  }

  .token-usage ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .need-finder {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .product-hero-grid,
  .intro-grid,
  .why-grid,
  .footer-grid,
  .journey-track {
    grid-template-columns: 1fr;
  }

  .hero-composition {
    margin-bottom: clamp(-4.5rem, -8vh, -3rem);
  }

  .product-visual {
    width: min(100% - 1rem, 34rem, calc(100dvh - var(--header-h) - 7rem));
    margin-top: 0;
  }

  .hero-title-wrap {
    top: 14%;
  }

  .hero-title-bg {
    font-size: 40px !important;
    gap: clamp(8rem, 24vw, 16rem);
  }

  .steps,
  .how-modules {
    grid-template-columns: 1fr;
  }

  .how-media {
    margin-bottom: 1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    inset-inline: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    margin: 0;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 0.85rem 0.9rem;
    border-radius: 0.6rem;
  }

  .nav-menu a:hover {
    background: var(--bg-soft);
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .nav {
    position: relative;
  }
}

@media (max-width: 720px) {
  .price-grid,
  .need-finder {
    grid-template-columns: 1fr;
  }

  .token-usage ul {
    grid-template-columns: 1fr;
  }

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

  .hero-composition {
    margin-bottom: 45px;
  }

  .marquees-rail {
    margin-top: 0;
  }

  .product-visual {
    width: min(100% - 1rem, 20rem, calc(100dvh - var(--header-h) - 6.5rem));
    margin-top: 16px;
  }

  .hero-title-wrap {
    top: 12%;
  }

  .hero-title-bg {
    font-size: 14px;
    gap: clamp(5.5rem, 26vw, 10rem);
  }

  .mascot-stage {
    width: 100%;
  }

  .hero-mascot {
    width: 100%;
  }

  .product-hero {
    min-height: calc(100svh - var(--header-h));
    min-height: calc(100dvh - var(--header-h));
  }

  .product-hero-grid {
    padding-bottom: 0;
  }

  .product-brand {
    font-size: 1.45rem;
  }

  .product-hero .marquees {
    margin-block: 0;
  }

  .final-cta-inner {
    padding: 1.5rem;
  }

  .how-media {
    display: none;
  }

  .recommend-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-buy {
    display: flex;
  }

  body {
    padding-bottom: 4.5rem;
  }

  .toast {
    bottom: 5.25rem;
  }

  .ambient-pattern {
    opacity: 0.05;
  }
}
