:root {
  color-scheme: light;
  --bg: #f4efe7;
  --bg-soft: #fbf6ef;
  --panel: rgba(255, 251, 245, 0.88);
  --panel-strong: #fff9f0;
  --ink: #1d1a17;
  --muted: #655d54;
  --line: rgba(95, 76, 56, 0.16);
  --accent: #cb5c32;
  --accent-deep: #9e4521;
  --accent-soft: #f3d8c7;
  --forest: #23443b;
  --gold: #d5a94d;
  --shadow: 0 24px 80px rgba(61, 38, 17, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 244, 229, 0.95) 0, transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(203, 92, 50, 0.12) 0, transparent 18%),
    linear-gradient(180deg, #fbf7f0 0%, var(--bg) 56%, #efe7db 100%);
}

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

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

.page-shell {
  overflow: clip;
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(251, 246, 239, 0.72);
  border-bottom: 1px solid rgba(95, 76, 56, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(29, 26, 23, 0.12);
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-wordmark {
  font-size: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.hero {
  padding: 52px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 249, 240, 0.9);
  border: 1px solid rgba(95, 76, 56, 0.12);
  color: var(--accent-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.hero-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 58ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 40px rgba(203, 92, 50, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(95, 76, 56, 0.14);
  color: var(--ink);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.trust-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(95, 76, 56, 0.1);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-stage {
  position: relative;
  min-height: 660px;
}

.glow {
  position: absolute;
  inset: 80px 36px auto auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(203, 92, 50, 0.24) 0, transparent 68%);
  filter: blur(12px);
}

.phone {
  position: relative;
  width: min(100%, 420px);
  margin-left: auto;
  padding: 18px;
  border-radius: 42px;
  background: linear-gradient(180deg, #2c2824 0%, #141210 100%);
  box-shadow: 0 32px 80px rgba(31, 20, 11, 0.28);
}

.phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 24px;
  border-radius: 0 0 18px 18px;
  background: #111;
}

.screen {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 24px 18px 18px;
  min-height: 624px;
  background:
    radial-gradient(circle at top right, rgba(213, 169, 77, 0.18) 0, transparent 24%),
    linear-gradient(180deg, #fff9f2 0%, #f7f2ea 100%);
}

.screen-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.mini-pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  border: 1px solid rgba(95, 76, 56, 0.1);
}

.screen-stack {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.hero-icon-card {
  width: 188px;
  margin-left: auto;
  padding: 12px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(95, 76, 56, 0.08);
  box-shadow: 0 24px 60px rgba(29, 26, 23, 0.14);
}

.hero-icon-card img {
  width: 100%;
  border-radius: 26px;
  display: block;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 20px;
}

.hero-card h2 {
  margin: 10px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.hero-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tag {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(203, 92, 50, 0.08);
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 700;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(95, 76, 56, 0.1);
}

.stat strong {
  display: block;
  font-size: 1.4rem;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
}

.stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.feature-ribbon {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.feature-chip,
.memory-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(95, 76, 56, 0.1);
}

.memory-card {
  background: linear-gradient(180deg, #fff4ea 0%, #fffaf6 100%);
}

section {
  padding: 42px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  max-width: 46ch;
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-panel {
  padding: 24px;
  min-height: 240px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(203, 92, 50, 0.16) 0%, rgba(213, 169, 77, 0.22) 100%);
  color: var(--accent-deep);
  font-weight: 700;
}

.feature-panel h3,
.story-panel h3,
.faq-item h3 {
  margin: 18px 0 8px;
  font-size: 1.15rem;
}

.feature-panel p,
.story-panel p,
.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 18px;
}

.story-panel {
  padding: 28px;
}

.journey {
  display: grid;
  gap: 12px;
}

.journey-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(95, 76, 56, 0.1);
}

.journey-index {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}

.quote-band {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #243f37 0%, #1a2d28 100%);
  color: #f5ede2;
  overflow: hidden;
  position: relative;
}

.quote-band::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 169, 77, 0.28) 0, transparent 68%);
}

.quote-band p {
  margin: 0;
  max-width: 36ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.25;
}

.quote-band small {
  display: inline-block;
  margin-top: 16px;
  color: rgba(245, 237, 226, 0.72);
  font-size: 0.92rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.audience-card {
  padding: 24px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.check::before {
  content: "•";
  color: var(--accent);
  font-size: 1.3rem;
  line-height: 1;
}

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

.faq-item {
  padding: 24px;
}

.cta-panel {
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(213, 169, 77, 0.22) 0, transparent 24%),
    linear-gradient(135deg, #fff8ee 0%, #f7ecde 100%);
  border: 1px solid rgba(95, 76, 56, 0.12);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.cta-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.7;
}

.site-footer {
  padding: 30px 0 46px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(95, 76, 56, 0.12);
}

.footer-support {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-support a {
  color: var(--ink);
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal-delay-3 {
  transition-delay: 240ms;
}

@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .story-grid,
  .audience-grid,
  .faq-grid,
  .feature-ribbon {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
  }

  .phone {
    margin: 0 auto;
  }

  .section-head,
  .footer-row {
    align-items: start;
    justify-content: start;
  }
}

@media (max-width: 720px) {
  .site-header-inner {
    min-height: 68px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 30px;
  }

  .container {
    width: min(var(--max-width), calc(100% - 20px));
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .screen {
    min-height: 590px;
  }

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

  .cta-panel,
  .story-panel,
  .feature-panel,
  .faq-item,
  .audience-card {
    padding: 22px;
  }
}
