/* ── Visual Movement Digital Store ── */
/* Warm palette only. No blue. */

:root {
  --amber: #f4a940;
  --deep-orange: #e8734a;
  --burnt-sienna: #d4603a;
  --cream: #faf7f2;
  --sand: #f5f0e8;
  --charcoal: #1a1a1a;
  --gray-900: #111111;
  --gray-800: #222222;
  --gray-700: #333333;
  --gray-600: #555555;
  --gray-500: #777777;
  --gray-400: #999999;
  --gray-300: #bbbbbb;
  --gray-200: #dddddd;
  --gray-100: #eeeeee;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.06);
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

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

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

/* ── Typography ── */

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }

@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.25rem; }
}

.text-gradient {
  background: linear-gradient(135deg, var(--amber), var(--deep-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ── */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

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

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

/* ── Navigation ── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--gray-900);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav__logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav__logo span {
  color: var(--amber);
}

.nav__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav__links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--amber);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.25rem;
}

@media (max-width: 640px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--gray-900);
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav__links.open {
    display: flex;
  }
  .nav__toggle {
    display: block;
  }
}

/* ── Hero ── */

.hero {
  background: var(--gray-900);
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero__credential {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(244,169,64,0.3);
  border-radius: 100px;
}

.hero h1 {
  max-width: 720px;
  margin: 0 auto 1.25rem;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero__credits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__credit {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

.hero__credit strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn--primary {
  background: var(--deep-orange);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--burnt-sienna);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn--outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn--dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--gray-800);
}

.btn--sm {
  font-size: 0.8125rem;
  padding: 0.5rem 1.25rem;
}

.btn--block {
  width: 100%;
  justify-content: center;
}

/* ── Product Grid ── */

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-grid--2col {
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .product-grid--2col { grid-template-columns: repeat(2, 1fr); }
}

/* ── Product Card ── */

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.card__image {
  aspect-ratio: 16 / 10;
  background: var(--gray-900);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.card__image-placeholder {
  color: var(--gray-500);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.card__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--deep-orange);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card__body {
  padding: 1.25rem;
}

.card__category {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--deep-orange);
  margin-bottom: 0.5rem;
}

.card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.card__description {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

.card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
}

.card__price--original {
  font-size: 0.875rem;
  color: var(--gray-400);
  text-decoration: line-through;
  margin-left: 0.5rem;
  font-weight: 400;
}

/* ── Feature List ── */

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features { grid-template-columns: repeat(3, 1fr); }
}

.feature {
  text-align: center;
  padding: 1.5rem;
}

.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(244,169,64,0.15), rgba(232,115,74,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--deep-orange);
}

.feature__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

/* ── Page Header (sub-pages) ── */

.page-header {
  background: var(--gray-900);
  color: var(--white);
  padding: 3.5rem 0 3rem;
  text-align: center;
}

.page-header__category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0.75rem auto 0;
  font-size: 1.0625rem;
}

/* ── Product Detail Section ── */

.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .product-detail { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.product-detail__image {
  aspect-ratio: 4 / 3;
  background: var(--gray-900);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-detail__info h3 {
  margin-bottom: 0.75rem;
}

.product-detail__info p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.product-detail__list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.product-detail__list li {
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  color: var(--gray-700);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.product-detail__list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.product-detail__price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ── Testimonial / Credibility ── */

.credibility {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 0;
}

.credibility__quote {
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.credibility__source {
  font-size: 0.875rem;
  color: var(--amber);
  font-weight: 600;
}

/* ── CTA Section ── */

.cta {
  text-align: center;
  padding: 4rem 0;
}

.cta h2 {
  margin-bottom: 1rem;
}

.cta p {
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta--dark p {
  color: rgba(255,255,255,0.6);
}

/* ── Footer ── */

.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.5);
  padding: 3rem 0 2rem;
  font-size: 0.8125rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer__links a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

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

/* ── Utility ── */

.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* ── Bundle Banner ── */

.bundle-banner {
  background: linear-gradient(135deg, var(--deep-orange), var(--burnt-sienna));
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .bundle-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.bundle-banner__text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.bundle-banner__text p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}

.bundle-banner .btn {
  white-space: nowrap;
}

/* ── Prompt Pack List ── */

.prompt-list {
  counter-reset: prompt;
}

.prompt-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.prompt-item::before {
  counter-increment: prompt;
  content: counter(prompt);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--deep-orange);
  background: rgba(232,115,74,0.1);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prompt-item__text {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.5;
}
