:root {
  --ink: #1f1814;
  --muted: #5c4f49;
  --soft-ink: #74645b;
  --cream: #fbf2e7;
  --cream-2: #f4e7d9;
  --paper: rgba(255, 251, 246, 0.84);
  --paper-strong: rgba(255, 248, 240, 0.94);
  --line: rgba(74, 48, 33, 0.12);
  --line-strong: rgba(74, 48, 33, 0.2);
  --accent: #b35f3e;
  --accent-deep: #8d452d;
  --accent-soft: #ffd3ae;
  --shadow: 0 24px 70px rgba(92, 56, 37, 0.12);
  --shadow-soft: 0 18px 42px rgba(92, 56, 37, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 192, 121, 0.28), transparent 30%),
    radial-gradient(circle at 11% 0%, rgba(255, 255, 255, 0.9), transparent 36%),
    linear-gradient(180deg, #fff7ec 0%, #fbefe2 50%, var(--cream-2) 100%);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(rgba(66, 44, 31, 0.9) 0.5px, transparent 0.5px);
  background-size: 11px 11px;
  z-index: -1;
}

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

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

button,
summary {
  font: inherit;
}

.site-header,
.hero,
.section-shell,
.footer-cta {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 700;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 700;
}

.nav-cta,
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  background: var(--ink);
  color: #fff7ec;
  box-shadow: 0 16px 34px rgba(31, 24, 20, 0.16);
}

.nav-cta:hover,
.button:hover,
.store-badge:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 16px 0 70px;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(440px, 0.95fr) minmax(360px, 1fr);
  gap: clamp(38px, 5vw, 74px);
  align-items: center;
}

.quote-card,
.platform-card,
.faq-list details {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(255, 246, 237, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.hero-copy {
  max-width: 610px;
  padding: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.eyebrow {
  max-width: 26ch;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 8ch;
  margin-top: 0;
  font-size: clamp(3.8rem, 7vw, 6rem);
  line-height: 0.9;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.4rem;
  line-height: 1.08;
}

.hero-lede {
  max-width: 24ch;
  margin: 18px 0 12px;
  color: #302722;
  font-size: clamp(1.25rem, 1.82vw, 1.64rem);
  line-height: 1.28;
}

.hero-support,
.section-intro p,
.problem-copy p,
.protect-copy,
.difference-copy p,
.platform-card p,
.article-group li,
.faq-list p,
.moment-card p {
  color: var(--muted);
}

.hero-support {
  max-width: 43ch;
  margin: 0 0 20px;
  font-size: 1.02rem;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.button {
  border: 1px solid transparent;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff8f0;
  box-shadow: 0 18px 30px rgba(141, 69, 45, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border-color: var(--line);
}

.trust-strip {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.trust-strip li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #3d302a;
  font-size: 0.95rem;
  font-weight: 650;
}

.trust-strip li::before {
  content: "✓";
  width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ffc398;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(179, 95, 62, 0.16);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.store-badge {
  width: 158px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(11, 17, 24, 0.12);
}

.store-badge img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-art {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.hero-art::before {
  content: "";
  position: absolute;
  width: min(660px, 100%);
  aspect-ratio: 1.1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 177, 84, 0.22), rgba(255, 234, 202, 0.03) 65%, transparent 72%);
  filter: blur(6px);
}

.mascot-stack {
  position: relative;
  width: min(565px, 98%);
  z-index: 1;
}

.mascot-base,
.mascot-fire-layer {
  width: 100%;
}

.mascot-base {
  filter: drop-shadow(0 34px 32px rgba(107, 68, 31, 0.13));
}

.mascot-fire-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  transform-origin: 50% 46%;
  filter: saturate(1.04) brightness(1.08);
  animation: firePulse 3.1s ease-in-out infinite;
}

.spark {
  position: absolute;
  width: 8px;
  height: 18px;
  border-radius: 50% 50% 45% 45%;
  background: #ff8c32;
  opacity: 0.92;
  transform: rotate(-12deg);
  animation: sparkPulse 3.1s ease-in-out infinite;
}

.spark-a { top: 70px; left: 16%; }
.spark-b { top: 175px; left: 7%; width: 6px; height: 6px; background: #fff; animation-delay: 0.45s; }
.spark-c { top: 109px; right: 23%; width: 7px; height: 22px; animation-delay: 0.2s; }
.spark-d { top: 208px; right: 8%; width: 9px; height: 15px; animation-delay: 0.7s; }
.spark-e { top: 70px; right: 1%; width: 4px; height: 4px; background: #fff; animation-delay: 0.35s; }

@keyframes firePulse {
  0%, 100% {
    opacity: 0.18;
    transform: scale(1);
  }
  50% {
    opacity: 0.43;
    transform: scale(1.018);
  }
}

@keyframes sparkPulse {
  0%, 100% {
    opacity: 0.62;
    transform: translateY(0) scale(1) rotate(-12deg);
  }
  50% {
    opacity: 1;
    transform: translateY(-4px) scale(1.08) rotate(-12deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mascot-fire-layer,
  .spark {
    animation: none;
  }
}

.section-shell {
  padding: 88px 0;
}

.section-intro {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.section-intro.narrow {
  max-width: 720px;
}

.section-intro p {
  max-width: 58ch;
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.65;
}

.problem-section {
  width: 100%;
  padding: 108px max(24px, calc((100vw - 1180px) / 2)) 116px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 145, 69, 0.18), transparent 28%),
    radial-gradient(circle at 14% 18%, rgba(111, 127, 166, 0.16), transparent 34%),
    linear-gradient(180deg, #07131b 0%, #0a1722 100%);
  color: #fff7ec;
}

.problem-section .section-intro {
  max-width: 780px;
  margin-bottom: 24px;
}

.problem-section h2 {
  color: #fff7ec;
}

.problem-grid {
  max-width: 840px;
}

.problem-copy {
  display: grid;
  gap: 18px;
}

.problem-copy p {
  margin: 0;
  color: rgba(255, 247, 236, 0.78);
  font-size: clamp(1.12rem, 1.55vw, 1.34rem);
  line-height: 1.64;
}

.problem-emphasis {
  color: #fff7ec !important;
  font-size: clamp(1.28rem, 2vw, 1.7rem) !important;
  font-weight: 700;
}

.quote-card {
  padding: 30px;
  border-radius: 26px;
}

.quote-card p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.2;
}

.protect-section {
  width: 100%;
  padding: 92px max(24px, calc((100vw - 1180px) / 2)) 96px;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(600px, 1.32fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(246, 229, 208, 0.64));
}

.protect-copy {
  display: grid;
  gap: 22px;
  color: #302722;
}

.protect-copy h2 {
  max-width: 8ch;
  color: var(--ink);
  font-size: clamp(3.4rem, 5.4vw, 5.6rem);
  line-height: 0.92;
}

.steps-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 22px;
}

.steps-list li {
  color: #302722;
  font-size: 1.02rem;
  line-height: 1.58;
}

.steps-list strong {
  color: var(--ink);
}

.phone-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: clamp(18px, 2.6vw, 30px);
  align-items: center;
}

.phone {
  border-radius: 38px;
  background: #060b10;
  padding: 10px;
  box-shadow: 0 18px 44px rgba(7, 19, 27, 0.22);
}

.app-screen {
  width: 100%;
  border-radius: 30px;
}

.moments-section {
  width: 100%;
  padding: 104px max(24px, calc((100vw - 1180px) / 2)) 106px;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 145, 69, 0.16), transparent 30%),
    linear-gradient(180deg, #07131b 0%, #0a1722 100%);
  color: #fff7ec;
  overflow: hidden;
}

.moments-section .section-intro {
  width: min(1180px, 100%);
  margin: 0 auto 44px;
}

.moments-section h2 {
  color: #fff7ec;
}

.moment-carousel {
  position: relative;
}

.moment-carousel::before {
  content: none;
}

.moment-grid {
  display: flex;
  gap: clamp(10px, 1.4vw, 18px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 54px;
  padding: 14px 54px 22px;
  scrollbar-width: none;
}

.moment-grid::-webkit-scrollbar {
  display: none;
}

.moment-card {
  display: grid;
  grid-template-rows: auto minmax(2.3em, auto) auto;
  flex: 0 0 clamp(124px, 12.4vw, 148px);
  justify-items: center;
  align-content: start;
  gap: 10px;
  padding: 8px 4px 14px;
  text-align: center;
  font: inherit;
  appearance: none;
  border: 0;
  border-radius: 22px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  scroll-snap-align: center;
  opacity: 0.72;
  transition: opacity 240ms ease, transform 240ms ease;
}

.moment-card.is-active {
  opacity: 1;
}

.moment-card:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.moment-card:focus-visible {
  outline: 2px solid rgba(255, 122, 31, 0.9);
  outline-offset: 6px;
}

.moment-card.is-active:hover {
  opacity: 1;
}

.moment-card img,
.moment-art img {
  width: clamp(96px, 9.8vw, 126px);
  height: clamp(96px, 9.8vw, 126px);
  object-fit: contain;
  transition: transform 240ms ease, filter 240ms ease;
}

.moment-card.is-active img,
.moment-card.is-active .moment-art img {
  filter: drop-shadow(0 12px 20px rgba(179, 95, 62, 0.16));
  animation: mascotLift 2.8s ease-in-out infinite;
}

.moment-art {
  display: inline-flex;
}

.moment-card h3 {
  min-height: 2.3em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff7ec;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  line-height: 1.15;
  letter-spacing: 0;
  margin: 0;
}

.moment-card p {
  margin: 0;
  max-width: 17ch;
  color: rgba(255, 247, 236, 0.72);
  font-size: 0.91rem;
  line-height: 1.48;
}

.moment-arrow {
  position: absolute;
  top: 78px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 214, 181, 0.92);
  color: #e86f22;
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(179, 95, 62, 0.08);
}

.moment-arrow-prev {
  left: 0;
}

.moment-arrow-next {
  right: 0;
}

.moment-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
}

.moment-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 247, 236, 0.24);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.moment-dot.is-active {
  background: #ff7a1f;
  transform: scale(1.15);
}

@keyframes mascotLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.difference-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.difference-copy {
  display: grid;
  gap: 16px;
}

.difference-copy p {
  max-width: 58ch;
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.68;
}

.facts-card,
.platform-card,
.article-group,
.footer-content {
  border-radius: 28px;
}

.facts-card {
  padding: 30px;
}

.facts-card h3 {
  margin-bottom: 18px;
}

.facts-card ul {
  margin: 0;
  padding-left: 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.facts-card .facts-list {
  margin: 0;
}

.facts-card .facts-list li {
  color: #3d302a;
}

.platform-card {
  padding: 30px;
}

.platform-card p {
  margin: 0 0 12px;
  font-size: 1.04rem;
  line-height: 1.68;
}

.platform-card p:last-child {
  margin-bottom: 0;
}

.faq-section {
  width: 100%;
  padding: 104px max(24px, calc((100vw - 1180px) / 2)) 112px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 145, 69, 0.13), transparent 28%),
    linear-gradient(180deg, #07131b 0%, #0a1722 100%);
  color: #fff7ec;
}

.faq-section .section-intro {
  width: min(1180px, 100%);
  margin: 0 auto 34px;
}

.faq-section .section-kicker {
  color: #ffc398;
}

.faq-section h2 {
  color: #fff7ec;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list details {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 247, 236, 0.08);
  border: 1px solid rgba(255, 247, 236, 0.12);
  box-shadow: none;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #fff7ec;
  font-weight: 700;
}

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

.faq-list summary::after {
  content: "+";
  color: #ffc398;
  font-size: 1.5rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 14px 0 0;
  color: rgba(255, 247, 236, 0.74);
  line-height: 1.65;
}

.article-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

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

@media (max-width: 900px) {
  .article-columns-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.article-group {
  padding: 28px;
}

.article-group h3 {
  margin-bottom: 16px;
}

.article-group ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
}

.article-group li {
  line-height: 1.5;
}

.article-group a {
  color: var(--accent-deep);
  font-weight: 700;
}

.footer-cta {
  width: 100%;
  padding: 106px max(24px, calc((100vw - 1180px) / 2)) 40px;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 145, 69, 0.17), transparent 30%),
    linear-gradient(180deg, #07131b 0%, #0a1722 100%);
  color: #fff7ec;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
}

.footer-copy {
  display: grid;
  gap: 18px;
}

.footer-content h2 {
  max-width: 9ch;
  color: #fff7ec;
}

.footer-content p {
  max-width: 32ch;
  color: rgba(255, 247, 236, 0.78);
}

.footer-content .store-row {
  margin-top: 10px;
}

.footer-mascot {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
}

.footer-mascot::before {
  content: "";
  position: absolute;
  width: min(480px, 104%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 177, 84, 0.18), transparent 68%);
  filter: blur(7px);
}

.footer-mascot-stack {
  position: relative;
  width: min(410px, 104%);
  z-index: 1;
}

.footer-mascot-base,
.footer-mascot-fire {
  width: 100%;
}

.footer-mascot-base {
  filter: drop-shadow(0 26px 30px rgba(0, 0, 0, 0.24));
}

.footer-mascot-fire {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  transform-origin: 50% 46%;
  filter: saturate(1.04) brightness(1.08);
  animation: firePulse 3.1s ease-in-out infinite;
}

.footer-spark {
  position: absolute;
  z-index: 2;
  width: 7px;
  height: 16px;
  border-radius: 50% 50% 45% 45%;
  background: #ff8c32;
  opacity: 0.78;
  transform: rotate(-12deg);
  animation: sparkPulse 3.1s ease-in-out infinite;
}

.footer-spark-a {
  top: 48px;
  left: 22%;
}

.footer-spark-b {
  top: 88px;
  right: 15%;
  animation-delay: 0.25s;
}

.footer-spark-c {
  top: 176px;
  right: 6%;
  width: 5px;
  height: 5px;
  background: #fff7ec;
  animation-delay: 0.48s;
}

.footer-actions {
  margin-bottom: 0;
  align-items: center;
}

.footer-note {
  margin: 0;
  font-size: 0.96rem;
}

.site-footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 247, 236, 0.13);
  color: rgba(255, 247, 236, 0.68);
  font-size: 0.94rem;
}

.site-footer a {
  color: rgba(251, 242, 231, 0.85);
  transition: color 0.2s ease;
}

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

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

@media (max-width: 1120px) {
  .hero,
  .problem-grid,
  .difference-section,
  .article-columns {
    grid-template-columns: 1fr;
  }

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

  .protect-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header,
  .hero,
  .section-shell,
  .footer-cta {
    width: min(100%, calc(100% - 32px));
  }

  .site-header {
    padding: 18px 0;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero {
    padding-top: 12px;
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 0;
  }

  h1 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .hero-art {
    min-height: 320px;
  }

  .section-shell {
    padding: 70px 0;
  }

  .problem-section {
    width: 100%;
    padding: 78px 16px 86px;
  }

  .moments-section {
    width: 100%;
    padding: 78px 16px 86px;
  }

  .faq-section {
    width: 100%;
    padding: 78px 16px 86px;
  }

  .footer-cta {
    width: 100%;
    padding: 72px 16px 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-content h2 {
    max-width: 8ch;
  }

  .footer-mascot {
    min-height: 286px;
  }

  .footer-mascot-stack {
    width: min(300px, 86%);
  }

  .protect-section {
    padding: 76px 16px;
  }

  .phone-row,
  .moment-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
