:root {
  color-scheme: light;
  --ink: #111314;
  --muted: #7e858b;
  --soft: #f5f7f7;
  --soft-2: #eef5f2;
  --line: rgba(17, 19, 20, 0.1);
  --mint: #09c98d;
  --blue: #1597ff;
  --apricot: #ffae2f;
  --violet: #9d4be8;
  --cyan: #18c9d0;
  --rose: #ef776d;
  --max: 1160px;
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: var(--header);
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  white-space: nowrap;
}

.brand-link em {
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

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

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.site-nav a,
.site-footer a {
  transition: color 160ms ease;
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 48px;
  overflow: hidden;
  min-height: calc(100svh - var(--header));
  padding: 56px max(24px, calc((100vw - var(--max)) / 2)) 72px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 560px;
  animation: rise-in 720ms ease both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

.hero h1 {
  margin-bottom: 12px;
  font-size: 104px;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-line {
  margin-bottom: 18px;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0;
}

.hero-subcopy,
.section-copy p,
.story-copy p,
.company-columns p,
.final-cta p,
.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 850;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.primary-action {
  color: white;
  background: var(--ink);
}

.secondary-action {
  color: var(--ink);
  border: 1px solid var(--line);
  background: white;
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.secondary-action:hover {
  border-color: rgba(17, 19, 20, 0.24);
}

.hero-stage {
  position: relative;
  min-height: 690px;
  animation: rise-in 820ms 100ms ease both;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 70px 10px 120px 118px;
  background:
    linear-gradient(90deg, rgba(9, 201, 141, 0.18), rgba(255, 174, 47, 0.16)),
    var(--soft-2);
  border-radius: 8px;
}

.hero-phone {
  position: absolute;
  display: block;
  width: 330px;
  border: 1px solid rgba(17, 19, 20, 0.12);
  border-radius: 34px;
  background: white;
  box-shadow: 0 28px 70px rgba(31, 42, 44, 0.18);
}

.hero-phone-main {
  right: 120px;
  top: 12px;
  width: 376px;
  z-index: 2;
}

.hero-phone-side {
  right: 0;
  bottom: 10px;
  width: 300px;
  z-index: 1;
  transform: translateX(20px) rotate(2deg);
}

.method-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 24px;
  border-bottom: 1px solid var(--line);
}

.method-strip div {
  padding: 16px 22px;
  border-left: 1px solid var(--line);
}

.method-strip div:first-child {
  border-left: 0;
}

.method-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 23px;
  line-height: 1.1;
}

.method-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.narrative-section,
.story-band,
.analysis-section,
.calendar-section,
.milestone-section,
.company-section,
.final-cta,
.document-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 108px 24px;
}

.narrative-section,
.calendar-section,
.milestone-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: center;
}

.narrative-section.reverse {
  grid-template-columns: 1.18fr 0.82fr;
}

.narrative-section.reverse .section-copy {
  grid-column: 2;
}

.narrative-section.reverse .media-pair {
  grid-column: 1;
  grid-row: 1;
}

.section-copy h2,
.story-copy h2,
.company-section h2,
.final-cta h2,
.document-page h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-copy.compact h2 {
  font-size: 44px;
}

.media-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.phone-shot,
.wide-shot,
.calendar-shot,
.milestone-shot {
  position: relative;
  margin: 0;
}

.phone-shot img,
.calendar-shot img,
.milestone-shot img {
  display: block;
  width: 100%;
  border: 1px solid rgba(17, 19, 20, 0.1);
  border-radius: 32px;
  background: white;
  box-shadow: 0 26px 58px rgba(31, 42, 44, 0.14);
}

.phone-shot.elevated {
  margin-top: 58px;
}

figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(520px, 1.2fr);
  gap: 60px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.phone-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.phone-row img {
  display: block;
  width: 100%;
  border: 1px solid rgba(17, 19, 20, 0.1);
  border-radius: 32px;
  box-shadow: 0 22px 54px rgba(31, 42, 44, 0.14);
}

.phone-row img:nth-child(2) {
  transform: translateY(44px);
}

.analysis-section {
  border-bottom: 1px solid var(--line);
}

.analysis-section .section-copy {
  max-width: 760px;
  margin-bottom: 42px;
}

.analysis-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.36fr 0.82fr;
  gap: 22px;
  align-items: center;
}

.wide-shot {
  display: grid;
  align-content: center;
  min-height: 430px;
}

.wide-shot img {
  display: block;
  width: 100%;
  border: 1px solid rgba(17, 19, 20, 0.1);
  border-radius: 24px;
  background: white;
  box-shadow: 0 28px 64px rgba(31, 42, 44, 0.13);
}

.calendar-section {
  grid-template-columns: 0.92fr 0.8fr;
}

.calendar-shot {
  max-width: 430px;
  justify-self: center;
}

.calendar-shot img {
  border-radius: 8px;
}

.milestone-section {
  grid-template-columns: 0.9fr 0.74fr;
  border-top: 1px solid var(--line);
}

.milestone-shot {
  max-width: 400px;
  justify-self: center;
}

.milestone-shot img {
  object-fit: contain;
}

.company-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-columns {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  max-width: 760px;
}

.final-cta {
  text-align: center;
}

.final-cta h2,
.final-cta p {
  margin-left: auto;
  margin-right: auto;
}

.document-page {
  max-width: 860px;
}

.document-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.document-section h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.document-section p,
.document-section li {
  color: var(--muted);
  line-height: 1.7;
}

.document-section a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 28px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--muted);
}

.site-footer > span:last-child {
  text-align: right;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 750;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-stage {
    min-height: 640px;
  }

  .hero-phone-main {
    left: 50%;
    right: auto;
    transform: translateX(-56%);
  }

  .hero-phone-side {
    right: 12%;
  }

  .method-strip,
  .analysis-grid {
    grid-template-columns: 1fr 1fr;
  }

  .narrative-section,
  .narrative-section.reverse,
  .story-band,
  .calendar-section,
  .milestone-section {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .narrative-section.reverse .section-copy,
  .narrative-section.reverse .media-pair {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --header: auto;
  }

  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 18px 18px;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .hero {
    padding: 46px 18px 40px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-line {
    font-size: 30px;
  }

  .hero-subcopy,
  .section-copy p,
  .story-copy p,
  .company-columns p,
  .final-cta p,
  .lead {
    font-size: 16px;
  }

  .hero-stage {
    min-height: 560px;
  }

  .hero-stage::before {
    inset: 70px 0 110px 46px;
  }

  .hero-phone-main {
    width: min(78vw, 330px);
    left: 45%;
  }

  .hero-phone-side {
    width: min(62vw, 250px);
    right: -8px;
    bottom: 30px;
  }

  .method-strip {
    grid-template-columns: 1fr 1fr;
    padding: 18px;
  }

  .method-strip div {
    padding: 14px;
  }

  .method-strip div:nth-child(3) {
    border-left: 0;
  }

  .method-strip strong {
    font-size: 22px;
  }

  .narrative-section,
  .story-band,
  .analysis-section,
  .calendar-section,
  .milestone-section,
  .company-section,
  .final-cta,
  .document-page {
    padding: 72px 18px;
  }

  .section-copy h2,
  .story-copy h2,
  .company-section h2,
  .final-cta h2,
  .document-page h1,
  .section-copy.compact h2 {
    font-size: 34px;
  }

  .media-pair,
  .phone-row,
  .analysis-grid,
  .company-columns {
    grid-template-columns: 1fr;
  }

  .phone-shot.elevated,
  .phone-row img:nth-child(2) {
    margin-top: 0;
    transform: none;
  }

  .wide-shot {
    min-height: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 26px 18px;
  }

  .site-footer > span:last-child {
    text-align: left;
  }
}
