:root {
  --bg: #f5efe7;
  --bg-strong: #efe4d7;
  --card: rgba(255, 252, 248, 0.78);
  --card-strong: rgba(255, 249, 243, 0.92);
  --line: rgba(78, 47, 24, 0.12);
  --text: #241812;
  --muted: #645247;
  --accent: #1d7a57;
  --accent-strong: #0f5f40;
  --accent-warm: #b95d38;
  --accent-gold: #d7b26d;
  --shadow: 0 24px 80px rgba(41, 21, 8, 0.12);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Sora", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(185, 93, 56, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(29, 122, 87, 0.18), transparent 32%),
    linear-gradient(180deg, #f7f2ec 0%, #f0e4d4 52%, #ead3bc 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: 8%;
  left: -8%;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  background: rgba(29, 122, 87, 0.08);
  filter: blur(18px);
}

body::after {
  right: -10%;
  bottom: 14%;
  width: 30rem;
  height: 30rem;
  border-radius: 999px;
  background: rgba(185, 93, 56, 0.1);
  filter: blur(28px);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.25rem 0 4rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0 1.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, var(--accent), #32a06c);
  color: white;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 28px rgba(29, 122, 87, 0.18);
}

.brand-name {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.site-nav {
  display: inline-flex;
  gap: 1.15rem;
  font-size: 0.96rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.section {
  margin-top: 2rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  min-height: 78vh;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3,
.brand-name {
  letter-spacing: -0.04em;
}

h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 0.95;
}

h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.1rem, 3.6vw, 3.5rem);
  line-height: 1;
}

h3 {
  margin: 0 0 0.6rem;
  font-size: 1.22rem;
}

.hero-text,
.story-card p,
.process-card p,
.share-copy p,
.proof-card p,
.download-panel p,
.feature-list li,
.microcopy {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 36rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.hero-actions.centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 18px 36px rgba(29, 122, 87, 0.22);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(36, 24, 18, 0.08);
}

.hero-notes {
  display: grid;
  gap: 0.6rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-notes li {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-notes li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-gold));
}

.hero-art {
  display: flex;
  justify-content: center;
}

.device-frame {
  position: relative;
  width: min(100%, 28rem);
  padding: 1rem;
  border-radius: 2.7rem;
  background: linear-gradient(180deg, rgba(36, 24, 18, 0.94), rgba(51, 33, 24, 0.92));
  box-shadow: 0 40px 90px rgba(31, 19, 10, 0.28);
}

.device-status {
  width: 8.5rem;
  height: 1.75rem;
  margin: 0 auto 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.share-card-mock {
  position: relative;
  padding: 1.2rem;
  border-radius: 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(180deg, #4a1717 0%, #8f3b24 100%);
}

.share-card-mock::before,
.share-card-mock::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 12rem;
  height: 12rem;
  border-radius: 2.4rem;
  border: 2px solid rgba(255,255,255,0.15);
}

.share-card-mock::before {
  top: 1rem;
  left: 1rem;
}

.share-card-mock::after {
  bottom: 8rem;
  right: 1rem;
  width: 6rem;
  height: 0.95rem;
  border: none;
  border-radius: 999px;
  background: rgba(74, 196, 116, 0.55);
  transform: rotate(-42deg);
}

.mock-stage {
  position: relative;
  aspect-ratio: 0.87;
  border-radius: 2rem;
  overflow: hidden;
  border: 5px solid rgba(255,255,255,0.74);
  background:
    linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.2)),
    url("https://images.unsplash.com/photo-1502602898657-3e91760cbb34?auto=format&fit=crop&w=900&q=80") center/cover;
}

.mock-badge {
  position: absolute;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  background: rgba(28, 28, 30, 0.54);
  backdrop-filter: blur(16px);
}

.mock-badge.top {
  top: 1rem;
  right: 1rem;
}

.mock-badge.bottom {
  bottom: 1rem;
  left: 1rem;
}

.route-line {
  position: absolute;
  inset: auto;
  left: 12%;
  bottom: 24%;
  width: 55%;
  height: 36%;
  border-left: 4px solid rgba(236, 201, 92, 0.85);
  border-bottom: 4px solid rgba(236, 201, 92, 0.85);
  border-radius: 0 0 0 1.75rem;
  transform: skewX(-24deg);
}

.mock-meta {
  margin-top: 1.15rem;
  padding: 1.25rem;
  border-radius: 1.6rem;
  background: rgba(83, 30, 17, 0.72);
}

.mock-meta h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: white;
}

.mock-pills {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.25fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.pill {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.pill span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.76;
}

.pill strong {
  font-size: 1rem;
  line-height: 1.25;
}

.mock-wordmark {
  padding: 1.8rem 0 0.35rem;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(2.7rem, 5vw, 4rem);
  color: white;
  letter-spacing: -0.08em;
}

.story-strip,
.process-grid,
.proof-grid {
  display: grid;
  gap: 1.2rem;
}

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

.story-card,
.process-card,
.proof-card,
.quote-card,
.download-panel {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--card);
  backdrop-filter: blur(22px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.story-kicker,
.step-number {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 0.55rem;
  max-width: 44rem;
  margin-bottom: 1.4rem;
}

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

.share-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.2rem;
}

.share-statements {
  display: grid;
  gap: 1rem;
}

.quote-card p {
  margin: 0 0 0.8rem;
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  line-height: 1.1;
}

.quote-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-card-accent {
  background: linear-gradient(180deg, rgba(29, 122, 87, 0.94), rgba(15, 95, 64, 0.96));
}

.quote-card-accent p,
.quote-card-accent span {
  color: white;
}

.download-panel {
  text-align: center;
  padding: 2.3rem 1.6rem;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(246, 235, 223, 0.94));
}

code {
  padding: 0.15rem 0.35rem;
  border-radius: 0.45rem;
  background: rgba(36, 24, 18, 0.06);
  font-size: 0.92em;
}

.microcopy {
  margin-top: 1rem;
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .hero,
  .share-layout,
  .story-strip,
  .process-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-art {
    order: -1;
  }

  .mock-pills {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 1.2rem), var(--max-width));
    padding-top: 0.7rem;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .device-frame {
    width: 100%;
  }

  .mock-meta h2 {
    font-size: 1.9rem;
  }
}
