/* =============================================
   Eye Appeal — Marketing Website
   Brand: Gold #D4AF37 · Cream #FDFBF7 · Dark #171717
   ============================================= */

:root {
  --gold: #D4AF37;
  --gold-light: #E5C76B;
  --gold-muted: #C9AE5D;
  --gold-pale: #F5EFE0;
  --gold-ring: #F0E6D2;
  --cream: #FDFBF7;
  --cream-dark: #FBF8F1;
  --dark: #171717;
  --gray-700: #374151;
  --gray-600: #525252;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E5E5;
  --white: #ffffff;
  --dark-card: #2D2D2D;
  --shadow-gold: 0 4px 24px rgba(212, 175, 55, 0.15);
  --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.06);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --transition: 0.25s ease;
}

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

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

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

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

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

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

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

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

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section__header--light .section__title,
.section__header--light .section__subtitle {
  color: var(--white);
}

.section__header--light .section__subtitle {
  opacity: 0.75;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.section__text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  background: #C09A2F;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 175, 55, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border-color: rgba(212, 175, 55, 0.35);
}

.btn--outline:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1.0625rem;
  border-radius: var(--radius-full);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

.nav__logo-icon {
  font-size: 1.5rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__cta {
  padding: 10px 20px !important;
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: var(--radius-full);
}

.nav__cta:hover {
  background: #C09A2F !important;
  color: var(--white) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle--open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 80px;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__glow--tl {
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: var(--gold-light);
  opacity: 0.15;
}

.hero__glow--br {
  bottom: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: var(--gold);
  opacity: 0.08;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__title-accent {
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.hero__stat-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
}

/* Phone mockup */
.phone-mockup {
  display: flex;
  justify-content: center;
}

.phone-mockup__frame {
  width: 280px;
  background: var(--dark);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone-mockup__screen {
  position: relative;
  background: var(--cream);
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 9/16;
}

.phone-mockup__hero-img {
  width: 100%;
  height: 55%;
  object-fit: cover;
  opacity: 0.85;
}

.phone-mockup__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  display: flex;
  justify-content: center;
  background: linear-gradient(to top, var(--cream) 60%, transparent);
}

.progress-ring {
  position: relative;
  width: 160px;
  height: 160px;
}

.progress-ring svg {
  width: 100%;
  height: 100%;
}

.progress-ring__fill {
  stroke-dasharray: 0 534;
  transition: stroke-dasharray 1.2s ease-out;
}

.progress-ring__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.progress-ring__value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
}

.progress-ring__label {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* Problem section */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem__image-wrap {
  position: relative;
}

.problem__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: var(--gold-light);
  opacity: 0.2;
  border-radius: 50%;
  filter: blur(40px);
}

.problem__image {
  position: relative;
  border-radius: var(--radius-lg);
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.problem__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.problem__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.problem__icon {
  font-size: 1.375rem;
  flex-shrink: 0;
}

.problem__list strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.problem__list p {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Transform / Before-After */
.transform__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.transform__card {
  text-align: center;
  flex: 0 1 280px;
}

.transform__img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  margin-bottom: 12px;
}

.transform__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transform__img-wrap--before {
  border: 2px solid var(--gray-200);
}

.transform__img-wrap--after {
  border: 2px solid rgba(212, 175, 55, 0.4);
  background: var(--gold-pale);
}

.transform__label {
  font-size: 0.875rem;
  font-weight: 600;
}

.transform__label--before {
  color: var(--gray-500);
}

.transform__label--after {
  color: var(--gold-muted);
}

.transform__arrow {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
}

/* Features */
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.feature-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card__text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Steps */
.steps {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.step:last-child {
  border-bottom: none;
}

.step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
}

.step__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.step__text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Routines tabs */
.routines__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.routines__tab {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--white);
  color: var(--dark);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  border: 1px solid var(--gray-200);
}

.routines__tab--active,
.routines__tab:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.routines__panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: var(--shadow-soft);
  max-width: 720px;
  margin: 0 auto;
}

.routines__panel-desc {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.6;
}

.routines__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  font-size: 0.9375rem;
}

.routines__list li:last-child {
  border-bottom: none;
}

.routines__list em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.routines__badge {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.routines__badge--am {
  background: var(--gold-pale);
  color: var(--gold-muted);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.routines__badge--pm {
  background: var(--dark-card);
  color: var(--white);
}

.routines__badge--both {
  background: var(--gray-200);
  color: var(--gray-700);
}

/* Metrics */
.metrics__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.metric-chip {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition);
}

.metric-chip:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
}

.metric-chip--highlight {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  font-weight: 700;
}

/* Commitment cards */
.commitment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.commitment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 2px solid var(--gray-200);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.commitment-card:hover {
  transform: translateY(-4px);
}

.commitment-card--featured {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.commitment-card__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.commitment-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.commitment-card__text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Pricing */
.pricing__included {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  max-width: 560px;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-gold);
}

.pricing__included-title {
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.pricing__included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pricing__included-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 14px;
  font-size: 0.8125rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.pricing__included-item span {
  font-size: 1.125rem;
}

.pricing__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto 32px;
}

.pricing-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.pricing-card--selected {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.4);
}

.pricing-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--gold);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-full);
}

.pricing-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card--selected .pricing-card__name,
.pricing-card--selected .pricing-card__amount,
.pricing-card--selected .pricing-card__period,
.pricing-card--selected .pricing-card__note {
  color: var(--white);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-card__amount {
  font-size: 1.75rem;
  font-weight: 700;
}

.pricing-card__period {
  font-size: 0.8125rem;
  color: var(--gray-600);
}

.pricing-card__note {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.pricing-card--selected .pricing-card__note {
  font-weight: 600;
}

.pricing-card__select {
  width: 100%;
  padding: 10px;
  border-radius: var(--radius-full);
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.pricing-card--selected .pricing-card__select {
  background: var(--white);
  color: var(--gold);
  border-color: var(--white);
}

.pricing__cta {
  text-align: center;
}

.pricing__terms {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 12px;
}

/* Download */
.download {
  position: relative;
  overflow: hidden;
}

.download__inner {
  position: relative;
  text-align: center;
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  padding: 72px 32px;
  color: var(--white);
}

.download__glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.download__title {
  position: relative;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.download__text {
  position: relative;
  font-size: 1rem;
  opacity: 0.8;
  max-width: 480px;
  margin: 0 auto 32px;
}

.download__buttons {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--white);
  color: var(--dark);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.store-btn span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.store-btn small {
  font-size: 0.6875rem;
  font-weight: 400;
  opacity: 0.7;
}

/* Footer */
.footer {
  padding: 48px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
}

.footer__tagline {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--gray-600);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__copy {
  width: 100%;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gray-400);
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
}

/* Scroll animations */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .nav__links--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .features__grid,
  .commitment__grid {
    grid-template-columns: 1fr;
  }

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

  .transform__arrow {
    transform: rotate(90deg);
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ==========================
   Legal Pages
========================== */

.legal-page {
    background: var(--cream);
    min-height: 100vh;
    padding: calc(var(--header-h) + 60px) 0 80px;
}

.legal {
    max-width: 850px;
    margin: 0 auto;
    padding: 48px;
    background: var(--white);
    border: 1px solid rgba(212,175,55,.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.legal h1 {
    font-size: 2.4rem;
    margin-bottom: .5rem;
    color: var(--dark);
}

.legal .last-updated {
    color: var(--gray-500);
    font-size: .9rem;
    margin-bottom: 2.5rem;
}

.legal h2 {
    margin-top: 2.5rem;
    margin-bottom: .9rem;
    font-size: 1.35rem;
    color: var(--gold);
}

.legal p,
.legal li {
    color: var(--gray-600);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.legal ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.legal a {
    color: var(--gold);
    font-weight: 600;
}

.legal a:hover {
    text-decoration: underline;
}

@media (max-width:768px) {

    .legal-page {
        padding: calc(var(--header-h) + 30px) 0 50px;
    }

    .legal {
        padding: 28px 24px;
        border-radius: var(--radius-md);
    }

    .legal h1 {
        font-size: 2rem;
    }

    .legal h2 {
        font-size: 1.2rem;
    }
}

.store-btn--disabled {
    opacity: .7;
    cursor: default;
    pointer-events: none;
}

.store-btn--disabled:hover {
    transform: none;
    box-shadow: none;
}

.store-btn {
    position: relative;
}

.coming-soon-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: white;
    font-size: .65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 10px 18px;
    color: #d4af37;
    text-decoration: none;
    border: 1px solid #d4af37;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.back-btn:hover {
    background: #d4af37;
    color: #111;
}

.back-btn:active {
    transform: scale(0.98);
}
