@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --sage-50: #f7f4ee;
  --sage-100: #ece8df;
  --sage-200: #dce4d4;
  --sage-300: #c5d0bc;
  --sage-500: #8fa382;
  --sage-600: #6b8f71;
  --sage-700: #4f6b55;
  --sage-800: #33473a;
  --sage-900: #1f2a22;
  --coral-200: #f6c7b9;
  --coral-400: #eba08a;
  --coral-500: #e8917a;
  --amber-300: #e9c98d;
  --amber-500: #d4a054;
  --cream-100: #fffdf9;
  --cream-200: #faf7f2;
  --ink-900: #26231e;
  --ink-700: #59534b;
  --ink-500: #8a8278;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-soft: #f3eee6;
  --divider: rgba(80, 107, 85, 0.12);
  --shadow-soft: 0 28px 80px rgba(41, 36, 31, 0.12);
  --shadow-card: 0 20px 40px rgba(61, 55, 47, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(232, 145, 122, 0.18), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(143, 163, 130, 0.22), transparent 26%),
    linear-gradient(180deg, #fffdf9 0%, #f6f1e8 100%);
  color: var(--ink-900);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: var(--sage-700);
}

.site-shell {
  margin: 0 auto;
  max-width: 1440px;
  padding: 24px 20px 64px;
}

.section-shell,
.site-header,
.site-footer {
  margin: 0 auto;
  max-width: var(--max-width);
}

.site-header {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(255, 252, 246, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(70, 61, 49, 0.06);
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  padding: 14px 18px;
  position: sticky;
  top: 18px;
  z-index: 10;
}

.brand {
  align-items: center;
  color: var(--ink-900);
  display: inline-flex;
  font-size: 0.98rem;
  font-weight: 800;
  gap: 12px;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(72, 82, 66, 0.16);
  height: 42px;
  width: 42px;
}

.site-nav {
  align-items: center;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a {
  color: var(--ink-700);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover,
.doc-header .back:hover,
.landing .contact a:hover {
  text-decoration: underline;
}

.hero {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  padding: 58px 0 80px;
}

.eyebrow {
  color: var(--sage-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.76);
}

.hero h1,
.section-heading h2,
.story-copy h2,
.cta-card h2 {
  color: var(--ink-900);
  font-size: clamp(2.7rem, 6vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.hero h1 em {
  color: var(--sage-700);
  display: inline-block;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 600;
}

.hero-body,
.section-heading p,
.story-copy p,
.cta-card p {
  color: var(--ink-700);
  font-size: 1.05rem;
  margin-top: 22px;
  max-width: 40rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

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

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

.button-primary {
  background: linear-gradient(135deg, var(--sage-700), var(--sage-500));
  box-shadow: 0 18px 32px rgba(79, 107, 85, 0.2);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(79, 107, 85, 0.12);
  color: var(--ink-900);
}

.button-light {
  background: var(--cream-100);
  color: var(--sage-800);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin-top: 30px;
}

.hero-pills li {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(79, 107, 85, 0.08);
  border-radius: 999px;
  color: var(--ink-700);
  font-size: 0.87rem;
  font-weight: 700;
  padding: 10px 14px;
}

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

.phone-stage {
  min-height: 580px;
  position: relative;
  width: min(100%, 440px);
}

.orb {
  border-radius: 999px;
  filter: blur(0);
  position: absolute;
}

.orb-coral {
  background: radial-gradient(circle, rgba(235, 160, 138, 0.45), rgba(235, 160, 138, 0));
  height: 260px;
  left: 0;
  top: 20px;
  width: 260px;
}

.orb-amber {
  background: radial-gradient(circle, rgba(212, 160, 84, 0.33), rgba(212, 160, 84, 0));
  bottom: 30px;
  height: 290px;
  right: 0;
  width: 290px;
}

.phone-frame {
  background: linear-gradient(160deg, #22211e, #10100f);
  border: 10px solid #1d1c19;
  border-radius: 48px;
  box-shadow: 0 40px 90px rgba(39, 35, 30, 0.28);
  margin: 16px auto 0;
  padding: 14px;
  position: relative;
  width: 310px;
}

.phone-notch {
  background: #0f0f0e;
  border-radius: 999px;
  height: 28px;
  left: 50%;
  position: absolute;
  top: 12px;
  transform: translateX(-50%);
  width: 118px;
}

.phone-screen {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 234, 0.98)),
    linear-gradient(150deg, rgba(143, 163, 130, 0.15), transparent 46%);
  border-radius: 34px;
  min-height: 560px;
  overflow: hidden;
  padding: 54px 18px 18px;
}

.phone-appbar {
  align-items: center;
  display: flex;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 10px;
  margin-bottom: 18px;
}

.phone-appbar img {
  border-radius: 12px;
  height: 32px;
  width: 32px;
}

.phone-card,
.phone-summary {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(79, 107, 85, 0.08);
  border-radius: 22px;
  box-shadow: 0 16px 30px rgba(70, 61, 49, 0.08);
  padding: 16px;
}

.phone-card + .phone-card,
.phone-card + .phone-summary {
  margin-top: 14px;
}

.phone-card-soft {
  background: linear-gradient(180deg, rgba(143, 163, 130, 0.18), rgba(255, 255, 255, 0.82));
}

.mini-label {
  color: var(--sage-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.mini-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.mini-meta {
  color: var(--ink-500);
  font-size: 0.82rem;
  margin-top: 8px;
}

.mini-row {
  align-items: center;
  color: var(--ink-700);
  display: flex;
  font-size: 0.88rem;
  gap: 10px;
}

.mini-row + .mini-row {
  margin-top: 10px;
}

.mini-dot {
  border-radius: 999px;
  display: inline-block;
  height: 10px;
  width: 10px;
}

.dot-self {
  background: var(--sage-600);
}

.dot-partner {
  background: #7e9fbd;
}

.dot-shared {
  background: #a584b7;
}

.phone-summary {
  background: linear-gradient(135deg, rgba(232, 145, 122, 0.2), rgba(255, 255, 255, 0.82));
}

.phone-summary span {
  color: var(--ink-500);
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.phone-summary strong {
  color: var(--ink-900);
  font-size: 1rem;
}

.feature-intro,
.story-grid,
.capture-section,
.trust-section,
.cta-band {
  padding: 34px 0;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  max-width: 15ch;
}

.section-heading.center {
  text-align: center;
}

.section-heading.center h2,
.section-heading.center p {
  margin-left: auto;
  margin-right: auto;
  max-width: 34rem;
}

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

.feature-card,
.trust-card,
.capture-card,
.quote-card,
.story-panel {
  background: var(--surface);
  border: 1px solid rgba(79, 107, 85, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.feature-card,
.trust-card {
  padding: 24px;
}

.feature-icon {
  color: var(--sage-700);
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}

.feature-card h3,
.capture-card h3,
.trust-card h3 {
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.feature-card p,
.capture-card p,
.trust-card p,
.quote-card p {
  color: var(--ink-700);
}

.story-grid {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
}

.story-art {
  min-height: 360px;
  position: relative;
}

.story-glow {
  background: radial-gradient(circle at center, rgba(232, 145, 122, 0.25), rgba(232, 145, 122, 0));
  inset: 10% 0 auto auto;
  position: absolute;
}

.story-panel {
  align-items: end;
  background:
    linear-gradient(145deg, rgba(255, 248, 239, 0.92), rgba(227, 214, 194, 0.9)),
    radial-gradient(circle at top right, rgba(143, 163, 130, 0.28), rgba(143, 163, 130, 0));
  display: grid;
  gap: 20px;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  padding: 28px;
}

.story-panel img {
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(68, 64, 58, 0.16);
  justify-self: start;
  width: 132px;
}

.story-panel-copy {
  max-width: 18rem;
}

.story-kicker {
  color: var(--ink-500);
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.story-panel-copy strong {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.story-panel-copy p {
  color: var(--ink-700);
}

.story-copy h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
}

.quote-card {
  margin-top: 24px;
  padding: 22px 24px;
}

.quote-card p {
  font-size: 1rem;
  font-weight: 600;
}

.capture-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.capture-card {
  min-height: 210px;
  padding: 24px;
}

.capture-card-wide {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(243, 238, 230, 0.95)),
    linear-gradient(140deg, rgba(143, 163, 130, 0.14), rgba(143, 163, 130, 0));
}

.capture-card-accent {
  background: linear-gradient(160deg, rgba(79, 107, 85, 0.96), rgba(107, 143, 113, 0.88));
}

.capture-card-accent,
.capture-card-accent h3,
.capture-card-accent p,
.capture-card-accent .capture-label {
  color: #fff;
}

.capture-label {
  color: var(--sage-700);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.trust-card {
  min-height: 190px;
}

.cta-card {
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #54725b, #6b8f71);
  border-radius: 36px;
  box-shadow: var(--shadow-soft);
  color: #fff;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  overflow: hidden;
  padding: 36px;
}

.cta-card h2,
.cta-card p {
  color: #fff;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--divider);
  color: var(--ink-700);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 36px;
  padding: 28px 0 8px;
}

.site-footer p {
  color: var(--ink-500);
  margin-top: 8px;
}

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

.site-footer a {
  color: var(--ink-700);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.container {
  margin: 0 auto;
  max-width: 760px;
  padding: 56px 24px 88px;
}

.doc-header {
  border-bottom: 1px solid var(--divider);
  margin-bottom: 32px;
  padding-bottom: 24px;
}

.doc-header .back {
  color: var(--sage-700);
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-decoration: none;
}

.doc-header h1 {
  color: var(--ink-900);
  font-size: 2rem;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}

.doc-header .meta {
  color: var(--ink-500);
  font-size: 0.88rem;
}

h2 {
  border-bottom: 1px solid var(--divider);
  color: var(--sage-800);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  margin-top: 40px;
  padding-bottom: 8px;
}

h3 {
  color: var(--sage-700);
  font-size: 1.08rem;
  margin-bottom: 12px;
  margin-top: 24px;
}

p {
  color: var(--ink-700);
  margin-bottom: 16px;
}

strong {
  color: var(--ink-900);
}

ul,
ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  color: var(--ink-700);
  margin-bottom: 8px;
}

table {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 24px;
  overflow-x: auto;
  width: 100%;
}

table,
tbody,
thead,
tr {
  border-collapse: collapse;
}

thead th {
  background: var(--sage-100);
  color: var(--sage-800);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 10px 12px;
  text-align: left;
  white-space: nowrap;
}

tbody td {
  border-bottom: 1px solid var(--divider);
  color: var(--ink-700);
  padding: 10px 12px;
  vertical-align: top;
}

tbody tr:last-child td {
  border-bottom: none;
}

hr {
  border: none;
  border-top: 1px solid var(--divider);
  margin: 40px 0;
}

.doc-footer {
  border-top: 1px solid var(--divider);
  color: var(--ink-500);
  font-size: 0.88rem;
  font-style: italic;
  margin-top: 48px;
  padding-top: 24px;
}

@media (max-width: 980px) {
  .site-header,
  .site-footer,
  .hero,
  .feature-grid,
  .story-grid,
  .capture-grid,
  .trust-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer,
  .cta-card {
    border-radius: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 14px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 720px) {
  .site-shell {
    padding: 16px 14px 48px;
  }

  .site-header {
    border-radius: 24px;
    padding: 16px;
    position: static;
  }

  .site-nav {
    font-size: 0.88rem;
    gap: 12px;
  }

  .hero {
    gap: 28px;
    padding: 22px 0 54px;
  }

  .hero h1,
  .section-heading h2,
  .story-copy h2,
  .cta-card h2 {
    font-size: clamp(2.2rem, 12vw, 3.3rem);
  }

  .phone-frame {
    width: min(100%, 300px);
  }

  .feature-grid,
  .capture-grid,
  .trust-grid {
    display: flex;
    flex-direction: column;
  }

  .container {
    padding: 40px 18px 72px;
  }
}
