:root {
  --primary: #fe6c05;
  --primary-dark: #1f1208;
  --accent: #ffb347;
  --text: #22140a;
  --text-muted: rgba(34, 20, 10, 0.65);
  --bg: #fff9f4;
  --card: rgba(255, 255, 255, 0.95);
  --shadow: 0 24px 60px rgba(254, 108, 5, 0.18);
  --heading-font: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", "Plus Jakarta Sans", sans-serif;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 5vw, 4rem) clamp(4.5rem, 10vw, 6rem);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, #fff9f4 45%, #ffeede 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.95), transparent 55%),
              radial-gradient(circle at 78% 18%, rgba(255, 205, 170, 0.6), transparent 62%),
              radial-gradient(circle at 50% 85%, rgba(255, 226, 192, 0.5), transparent 72%);
  animation: gradientFlow 12s ease-in-out infinite alternate;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 62% 78%, rgba(255, 214, 170, 0.38), transparent 72%),
              radial-gradient(circle at 24% 72%, rgba(255, 181, 118, 0.34), transparent 78%);
  mix-blend-mode: screen;
  opacity: 0.6;
  animation: pulseGlow 10s ease-in-out infinite;
  z-index: -1;
}

@keyframes gradientFlow {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
    background-position: 0% 50%;
  }
  50% {
    transform: scale(1.05) translate3d(2%, -1%, 0);
    background-position: 50% 60%;
  }
  100% {
    transform: scale(1.03) translate3d(-2%, 2%, 0);
    background-position: 100% 40%;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.hero-top, .footer {
  position: relative;
  z-index: 1;
}

.hero-brand {
  width: min(1100px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 6vw, 4rem);
  padding-top: clamp(1rem, 4vw, 2rem);
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 4vw, 1.8rem);
  color: var(--text);
  text-align: left;
  align-items: flex-start;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  width: fit-content;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.brand-chip img {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.hero-title {
  font-family: var(--heading-font);
  font-size: clamp(2.7rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--text);
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}


.hero-subhead {
  margin: 0;
  font-size: clamp(1.15rem, 3.5vw, 1.45rem);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 520px;
}

.cta-note {
  margin-top: 0.35rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--text);
  padding: 0.35rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.marketing-ticker {
  --marketing-height: auto;
  --marketing-slide-offset: 0.65rem;
  width: 100%;
  max-width: 560px;
  padding: clamp(0.35rem, 1vw, 0.6rem) clamp(0.5rem, 2vw, 1rem);
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 2vw, 1rem);
}

.marketing-ticker__icon {
  width: clamp(4.6rem, 12vw, 6.4rem);
  height: clamp(4.6rem, 12vw, 6.4rem);
  border-radius: 20%;
  object-fit: cover;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.14);
}

.marketing-ticker__messages {
  position: relative;
  flex: 1;
  min-height: var(--marketing-height, auto);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: clamp(1.05rem, 3.5vw, 1.5rem);
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--primary);
  text-align: left;
}

.marketing-ticker__message {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.1rem 0;
  opacity: 0;
  transform: translateX(var(--marketing-slide-offset));
  transition: opacity 450ms ease, transform 450ms ease;
  will-change: transform, opacity;
}

.marketing-ticker__message.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.marketing-ticker__message.is-exiting {
  opacity: 0;
  transform: translateX(calc(-1 * var(--marketing-slide-offset)));
}

.marketing-ticker__measure {
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
  pointer-events: none;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: clamp(1.1rem, 3.5vw, 1.6rem);
  letter-spacing: 0.02em;
}

.marketing-ticker__sr {
  display: inline;
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.hero-media {
  --hero-media-width: clamp(260px, 34vw, 400px);
  flex: 0 0 var(--hero-media-width);
  width: var(--hero-media-width);
  max-width: clamp(260px, 34vw, 420px);
  position: relative;
}

.story-spotlight {
  position: relative;
  width: 100%;
  padding: clamp(0.5rem, 3vw, 0.85rem);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 214, 170, 0.9));
  box-shadow: 0 32px 80px rgba(34, 20, 10, 0.22);
  overflow: visible;
  animation: floatFrame 10s ease-in-out infinite alternate;
}

.story-spotlight__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 30px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.4), transparent 55%);
}

.story-spotlight__slides {
  position: relative;
  width: 100%;
  height: 100%;
}


.story-spotlight__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateY(12px) scale(1.02);
  transition: opacity 900ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 1200ms cubic-bezier(0.4, 0, 0.2, 1);
  filter: saturate(1.05);
}

.story-spotlight__image.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 2;
}

.story-spotlight__image.is-leaving {
  opacity: 0;
  transform: translate3d(-10px, -6px, 0) scale(0.99);
  z-index: 1;
}

.story-spotlight__image.is-entering {
  z-index: 3;
}

.story-spotlight__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.4) 90%),
              linear-gradient(120deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0) 45%);
  border-radius: 30px;
  mix-blend-mode: soft-light;
}

.story-spotlight__perforations {
  position: absolute;
  top: 18%;
  bottom: 18%;
  left: clamp(0.5rem, 3vw, 1rem);
  width: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  z-index: 4;
}

.story-spotlight__perforations--right {
  left: auto;
  right: clamp(0.5rem, 3vw, 1rem);
}

.story-spotlight__perforations span {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.12);
}

.story-spotlight::before {
  content: "";
  position: absolute;
  inset: 8% 14%;
  border-radius: 28px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.55), transparent 60%);
  opacity: 0.65;
  pointer-events: none;
}

@keyframes floatFrame {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.01);
  }
  100% {
    transform: translateY(4px) scale(0.995);
  }
}


.footer {
  width: 100%;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.85);
}

.footer-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
  color: var(--text-muted);
}

.footer small {
  font-size: 0.95rem;
}

.social-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: left;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2.5vw, 1.5rem);
  margin-top: clamp(0.5rem, 2vw, 1rem);
  margin-bottom: clamp(0.75rem, 3vw, 1.1rem);
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 18px 36px rgba(0, 113, 227, 0.08);
}

.social-bar__label {
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-links li {
  display: inline-flex;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(254, 108, 5, 0.2);
  color: var(--primary-dark);
  box-shadow: 0 18px 34px rgba(254, 108, 5, 0.18);
  backdrop-filter: blur(10px);
  transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(254, 108, 5, 0.28);
  color: #fff7f2;
  background: linear-gradient(135deg, rgba(254, 108, 5, 0.95), rgba(255, 179, 71, 0.9));
  outline: none;
}

.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;
}

.footer-nav {
  display: flex;
  justify-content: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.footer-links li + li::before {
  content: "•";
  margin-right: 0.5rem;
}

.footer a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

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


.cta-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: clamp(0.5rem, 2vw, 1.25rem);
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.25rem 0;
}

.store-availability {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  padding: 0 0.5rem;
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  max-width: 320px;
}

.cta-divider {
  width: 1px;
  height: auto;
  min-height: 64px;
  background: rgba(245, 243, 255, 0.16);
  border-radius: 999px;
  align-self: center;
}

.availability-label {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
}

.availability-label--live {
  color: var(--primary);
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  text-decoration: none;
  background: none;
  border: 0;
  box-shadow: none;
  transition: transform 0.18s ease, opacity 0.18s ease;
  cursor: default;
}

.store-button--active {
  cursor: pointer;
}

.store-button--active:hover {
  transform: translateY(-4px);
}

.store-button--disabled {
  opacity: 0.65;
  pointer-events: none;
}

.store-button img {
  width: 90%;
  max-width: 220px;
  height: auto;
  display: block;
}

.cta-note {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0.85rem auto 0;
  width: auto;
  gap: 0.1rem;
  text-align: center;
  color: var(--text);
}

.cta-note__primary {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-note__sub {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .story-spotlight {
    animation: none;
  }

  .story-spotlight__image,
  .marketing-ticker__message {
    transition-duration: 0ms;
  }
}

@media (max-width: 980px) {
  .hero-brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(1.5rem, 7vw, 2.75rem);
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .brand-chip {
    margin-inline: auto;
  }

  .hero-media {
    flex: 0 0 clamp(260px, 70vw, 420px);
    max-width: clamp(260px, 70vw, 420px);
    width: 100%;
    order: -1;
  }

  .social-bar {
    align-items: center;
    text-align: center;
  }

  .hero-nav {
    width: 100%;
  }

  .store-availability {
    flex: 1 1 45%;
    min-width: 0;
  }

  .cta-note {
    width: auto;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-bottom: clamp(7rem, 18vw, 9rem);
  }

  .hero-brand {
    gap: 2rem;
  }

  .hero-media {
    width: min(100%, var(--hero-media-width, 360px));
    max-width: min(100%, var(--hero-media-width, 360px));
    order: -1;
  }

  .social-bar {
    position: static;
    transform: none;
    width: 100%;
    max-width: 420px;
    padding: 0.9rem 1.1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 113, 227, 0.16);
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(0, 113, 227, 0.08);
    margin: 1.25rem auto 0;
  }

  .social-links li {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .social-link {
    width: 48px;
    height: 48px;
  }

  .cta-row {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: clamp(0.35rem, 3vw, 0.75rem);
  }

  .store-availability {
    flex: 1 1 45%;
    min-width: 0;
  }

  .store-button img {
    width: 100%;
    max-width: 140px;
  }

  .cta-note {
    width: auto;
    margin-top: 0.5rem;
  }
}


@media (min-width: 640px) {
  .store-availability {
    max-width: 260px;
  }

  .cta-divider {
    min-height: 72px;
    background: rgba(245, 243, 255, 0.12);
  }
}

.content {
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 4vw, 2.5rem);
}

.content h1 {
  font-size: clamp(2.25rem, 6vw, 3rem);
  margin-bottom: 1rem;
}

.content h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.content p,
.content li {
  color: var(--text-muted);
  line-height: 1.75;
}

.content ul {
  padding-left: 1.25rem;
}

.content a {
  color: var(--primary);
}

.hero-top {
  width: min(1100px, 100%);
  margin: auto;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1), transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 4vw, 2.25rem);
}

.hero-brand {
  width: min(1100px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 6vw, 4rem);
}

.hero-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.15s, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
  width: 100%;
  max-width: 560px;
}

.hero-top.show-cta .hero-nav {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 720px) {
  .hero-nav {
    flex-direction: column;
    align-items: center;
    max-width: none;
  }

  .cta-row {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.5rem;
    padding: 0;
  }

  .hero-copy {
    max-width: 640px;
  }
