* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #191815;
  --muted: #665f58;
  --paper: #fbf7f0;
  --surface: #ffffff;
  --line: rgba(25, 24, 21, 0.12);
  --clay: #97472e;
  --clay-dark: #6f2e1b;
  --teal: #2e6d65;
  --blue: #315f9f;
  --gold: #c18d34;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(22, 20, 17, 0.92) 0%, rgba(22, 20, 17, 0.76) 42%, rgba(22, 20, 17, 0.22) 100%),
    var(--hero-image),
    linear-gradient(135deg, #2e6d65, #315f9f);
  background-position: center, right center, center;
  background-size: cover, min(58vw, 740px), cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: end;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(0deg, var(--paper), rgba(251, 247, 240, 0));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0 118px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #f4c46a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(46px, 8vw, 86px);
  line-height: 0.96;
  font-weight: 800;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: #ffffff;
  color: var(--clay-dark);
  font-weight: 750;
  text-decoration: none;
}

.store-button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.store-button svg {
  width: 22px;
  height: 22px;
  margin-right: 9px;
  fill: currentColor;
}

.hero-note {
  max-width: 540px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 80px;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-header {
  max-width: 780px;
}

.section-header .lead {
  margin-top: 12px;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 54px 0 8px;
}

.phone-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eee4da;
}

.phone-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
}

.transformation-section {
  margin-top: 64px;
}

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

.example-grid.single-example {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.example-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.example-type {
  margin: 0;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.example-copy {
  padding: 14px 16px;
  border-left: 4px solid var(--line);
  background: #f8f1e9;
}

.example-copy.before {
  border-left-color: rgba(25, 24, 21, 0.26);
}

.example-copy.after {
  border-left-color: var(--teal);
  background: #edf3f0;
}

.example-copy span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.example-copy p {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}

.example-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.feature-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.feature-link {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-decoration: none;
}

.feature-link h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
}

.feature-link p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.proof-band {
  margin-top: 70px;
  padding: 44px;
  border-radius: 8px;
  background: #efe5db;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.proof-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.proof-item span {
  color: var(--muted);
  line-height: 1.55;
}

.proof-disclaimer {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 56px;
  align-items: start;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: #ffffff;
  font-weight: 800;
}

.step h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.quote-panel {
  border-left: 4px solid var(--gold);
  padding: 22px 0 22px 24px;
}

.quote-panel p {
  margin: 0;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 750;
}

.quote-panel span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

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

.feature {
  min-height: 172px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.bottom-cta {
  margin-top: 72px;
  padding: 38px;
  border-radius: 8px;
  background: #192d2a;
  color: #ffffff;
}

.feature-page-cta {
  margin-top: 56px;
}

.bottom-cta h2 {
  max-width: 760px;
}

.bottom-cta .lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

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

.footer-links a {
  color: var(--clay-dark);
  text-decoration: none;
}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 28px, 1120px);
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 92vh;
    background:
      linear-gradient(180deg, rgba(22, 20, 17, 0.8) 0%, rgba(22, 20, 17, 0.82) 100%),
      var(--hero-image),
      linear-gradient(135deg, #2e6d65, #315f9f);
    background-position: center, center top, center;
    background-size: cover, 92vw, cover;
  }

  .hero-inner {
    width: min(100% - 28px, 1120px);
    padding: 104px 0 86px;
  }

  .store-buttons {
    flex-direction: column;
  }

  .store-button {
    width: 100%;
  }

  .content {
    width: min(100% - 28px, 1120px);
    padding: 48px 0 58px;
  }

  .intro-grid,
  .feature-row,
  .feature-link-grid,
  .example-grid,
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 38px;
  }

  .proof-band {
    margin-top: 48px;
    padding: 26px;
  }

  .transformation-section {
    margin-top: 46px;
  }

  .feature-row {
    margin-top: 44px;
  }

  .bottom-cta {
    margin-top: 50px;
    padding: 26px;
  }
}
