:root {
  --bg: #f4efe3;
  --bg-deep: #efe6d5;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #fffdf8;
  --ink: #182215;
  --muted: #5f6953;
  --accent: #6b7b4d;
  --accent-deep: #415032;
  --accent-soft: #dfe8cf;
  --line: rgba(24, 34, 21, 0.12);
  --shadow: 0 24px 80px rgba(45, 52, 35, 0.14);
  --shadow-soft: 0 18px 44px rgba(45, 52, 35, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(107, 123, 77, 0.18), transparent 36%),
    radial-gradient(circle at right 20%, rgba(255, 176, 80, 0.15), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, #f7f2e8 48%, var(--bg-deep) 100%);
}

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

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

code {
  font-family: "SFMono-Regular", Consolas, monospace;
}

.page-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 20px 0 56px;
}

.site-header,
.hero,
.trust-band,
.feature-strip,
.steps,
.audiences,
.closing-banner,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: relative;
  top: auto;
  align-self: auto;
  padding: 0;
  margin-bottom: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 252, 246, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(52, 58, 39, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 56px;
  height: 56px;
}

.brand-wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-wordmark strong {
  font-size: 1.28rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand-wordmark span {
  color: var(--muted);
  font-size: 0.88rem;
}

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

.site-nav a {
  position: relative;
  padding: 4px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-copy {
  flex: 1;
  max-width: 420px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 44px;
}

.hero-copy,
.hero-visual,
.site-footer {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.trust-band,
.feature-strip,
.steps,
.audiences,
.story-block,
.closing-banner {
  margin-bottom: 36px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-copy {
  padding: 40px 42px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at top left, rgba(223, 232, 207, 0.28), transparent 32%),
    linear-gradient(180deg, rgba(255, 254, 250, 0.96), rgba(255, 252, 245, 0.84));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  max-width: 7.5ch;
  text-wrap: balance;
}

.hero-kicker {
  margin-top: 16px;
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-text {
  max-width: 31rem;
  margin-top: 18px;
  font-size: 1.06rem;
  line-height: 1.72;
  color: var(--muted);
}

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

.store-card {
  min-width: 190px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.store-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(38, 46, 27, 0.14);
  border-color: rgba(65, 80, 50, 0.18);
}

.store-card.primary {
  background: linear-gradient(135deg, #182215 0%, #39462c 100%);
  color: #f6f3eb;
  border-color: rgba(24, 34, 21, 0.2);
}

.store-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.74;
}

.store-card strong {
  font-size: 1.18rem;
}

.feature-strip h2,
.step-card h3,
.audience-card h2 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.feature-strip p,
.step-card p,
.audience-card p,
.closing-banner p {
  color: var(--muted);
  line-height: 1.66;
}

.hero-inline-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-inline-points span {
  position: relative;
  padding-left: 18px;
}

.hero-inline-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.hero-visual {
  overflow: hidden;
  padding: 18px;
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(124, 170, 106, 0.14), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 214, 149, 0.08), transparent 26%),
    linear-gradient(180deg, #203020 0%, #182518 100%);
}

.phone-frame {
  width: min(100%, 298px);
  margin: 0 auto;
  padding: 11px;
  border-radius: 30px;
  background: linear-gradient(180deg, #0f1512 0%, #273125 100%);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.3);
  position: relative;
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 34%;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 0 0 14px 14px;
  background: rgba(6, 10, 8, 0.92);
}

.phone-screen {
  padding: 24px 15px 15px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(103, 221, 188, 0.18), transparent 28%),
    linear-gradient(180deg, #f6f6ef 0%, #ebe7dc 100%);
}

.screen-top,
.detail-row,
.phone-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pill,
.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
}

.pill {
  background: #d7ead9;
  color: #24422b;
}

.screen-meta {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.request-card {
  margin-top: 16px;
  padding: 16px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.status-chip {
  width: fit-content;
  margin-bottom: 14px;
  background: #f0dfc8;
  color: #8b4f05;
}

.request-card h2 {
  font-size: 1.12rem;
  line-height: 1.05;
}

.request-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.detail-row {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--muted);
  gap: 12px;
}

.phone-summary {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 34, 21, 0.06);
}

.phone-summary span {
  display: block;
  margin-top: 4px;
  font-size: 0.86rem;
  color: var(--muted);
}

.phone-summary strong:last-child {
  font-size: 0.9rem;
  color: var(--accent-deep);
}

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

.trust-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  padding: 0;
  border: 0;
}

.trust-band-copy h2 {
  margin-top: 14px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.trust-band-copy p {
  max-width: 660px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.74;
}

.trust-points {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-points li {
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(24, 34, 21, 0.08);
}

.trust-points li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.trust-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.14rem;
}

.trust-points span {
  color: var(--muted);
  line-height: 1.65;
}

.steps,
.story-block,
.closing-banner {
  padding: 0;
}

.section-heading h2,
.closing-banner h2 {
  margin-top: 14px;
  font-size: clamp(1.9rem, 3.4vw, 2.95rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.step-grid,
.audiences {
  display: grid;
  gap: 20px;
}

.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.step-card {
  padding: 0 20px 0 0;
  border-right: 1px solid rgba(24, 34, 21, 0.08);
}

.step-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.step-index {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
}

.audiences {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 36px;
}

.story-block {
  padding-top: 0;
  border: 0;
}

.story-block p {
  max-width: 780px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}

.audience-card {
  padding: 0 20px 0 0;
  border-right: 1px solid rgba(24, 34, 21, 0.08);
}

.audience-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.audience-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.audience-card li + li {
  margin-top: 10px;
}

.closing-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 0;
  border: 0;
}

.compact {
  margin-top: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.small {
  width: 34px;
  height: 34px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .page-shell {
    width: min(100vw - 24px, 100%);
    padding-top: 12px;
    display: block;
  }

  .hero,
  .trust-band,
  .feature-strip,
  .step-grid,
  .audiences,
  .closing-banner,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero,
  .closing-banner,
  .site-footer,
  .site-header {
    display: grid;
  }

  .site-header {
    position: static;
    margin-bottom: 20px;
  }

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

  .header-inner {
    display: grid;
    gap: 16px;
  }

  .hero-copy,
  .hero-visual {
    padding: 24px;
  }

  .steps,
  .closing-banner,
  .feature-strip,
  .trust-band,
  .story-block {
    padding: 0;
  }

  .hero {
    gap: 20px;
  }

  h1 {
    max-width: 10ch;
  }

  .hero-inline-points {
    gap: 12px;
  }

  .step-card,
  .audience-card {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(24, 34, 21, 0.08);
  }

  .step-card:last-child,
  .audience-card:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .site-footer {
    justify-content: start;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100vw - 20px, 100%);
    padding-top: 10px;
  }

  .site-header {
    padding: 0;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-copy {
    padding: 24px 20px;
  }

  .hero-visual {
    padding: 20px;
  }

  .header-copy {
    max-width: none;
  }

  .hero-text,
  .story-block p {
    font-size: 1rem;
  }

  .hero-inline-points {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cta-row {
    flex-direction: column;
  }

  .store-card {
    width: 100%;
  }
}
