:root {
  color-scheme: light;
  --ink: #17211d;
  --ink-soft: #5f6d66;
  --forest: #17211d;
  --forest-light: #1e6b55;
  --paper: #f7f5ef;
  --white: #ffffff;
  --mist: #cfe7dc;
  --sky: #dbe8f3;
  --cherry: #c94b36;
  --cherry-dark: #a53a29;
  --line: #d7ddd9;
  --line-dark: rgba(255, 255, 255, 0.22);
  --content: 1200px;
  --radius: 6px;
  --shadow: 0 20px 60px rgba(13, 35, 31, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Manrope", "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  width: min(var(--content), calc(100% - 48px));
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  transform: translateX(-50%);
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 178px;
  max-width: 42vw;
  height: auto;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 5px;
  background: var(--cherry);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.site-nav a,
.text-link {
  color: rgba(255, 255, 255, 0.87);
  font-size: 0.91rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  background: transparent;
  color: inherit;
}

.menu-button span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--cherry);
  color: var(--white);
}

.button-primary:hover {
  background: var(--cherry-dark);
}

.button-light {
  min-height: 42px;
  padding: 9px 15px;
  background: var(--white);
  color: var(--forest);
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(12, 29, 26, 0.28);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-dark {
  background: var(--forest);
  color: var(--white);
}

.button-block {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  min-height: 600px;
  height: 92svh;
  max-height: 900px;
  align-items: center;
  overflow: hidden;
  background: #172220;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(8, 18, 17, 0.94) 0%, rgba(8, 18, 17, 0.77) 35%, rgba(8, 18, 17, 0.18) 68%, rgba(8, 18, 17, 0.07) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--content), calc(100% - 48px));
  margin: 76px auto 0;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 16px;
  color: var(--cherry);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker {
  color: #f0a8a1;
}

.hero h1,
h2 {
  margin: 0;
  font-family: "Avenir Next", "Manrope", "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 690px;
  font-size: 4.75rem;
  line-height: 0.98;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  line-height: 1.65;
}

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

.hero-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

.proof-strip {
  display: grid;
  width: min(var(--content), calc(100% - 48px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-height: 105px;
  padding: 25px 24px;
  border-right: 1px solid var(--line);
}

.proof-strip div:first-child {
  padding-left: 0;
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 5px;
  font-size: 1.03rem;
}

.proof-strip span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.section-space {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0;
}

.section-intro h2 {
  max-width: 760px;
  font-size: 3.55rem;
  line-height: 1.05;
}

.compact-intro h2 {
  max-width: 680px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 100px;
  align-items: end;
}

.story-copy p,
.product-heading-copy p,
.pricing-lede,
.closing-section p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.7;
}

.story-copy p:first-child {
  margin-top: 0;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--forest-light);
  font-weight: 700;
  text-decoration: none;
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 62px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.steps li {
  min-height: 275px;
  padding: 23px 25px 30px;
  border-right: 1px solid var(--line);
}

.steps li:first-child {
  padding-left: 0;
}

.steps li:last-child {
  border-right: 0;
}

.step-number,
.outcome-list article > span {
  color: var(--cherry);
  font-size: 0.77rem;
  font-weight: 700;
}

.steps h3,
.outcome-list h3,
.price-card h3 {
  margin: 82px 0 10px;
  font-size: 1.13rem;
}

.steps p,
.outcome-list p,
.price-card li {
  color: var(--ink-soft);
  line-height: 1.6;
}

.product-section {
  width: 100%;
  padding-right: max(24px, calc((100% - var(--content)) / 2));
  padding-left: max(24px, calc((100% - var(--content)) / 2));
  background: var(--sky);
}

.product-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 90px;
  align-items: end;
}

.product-heading-copy .button {
  margin-top: 14px;
}

.product-browser {
  overflow: hidden;
  margin-top: 58px;
  border: 1px solid #a8bbb7;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  border-bottom: 1px solid var(--line);
  background: #edf3f2;
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #a6b3af;
}

.browser-bar span:first-child {
  background: var(--cherry);
}

.browser-bar strong {
  margin-left: 8px;
  color: #50605c;
  font-size: 0.78rem;
  font-weight: 600;
}

.product-browser iframe {
  width: 100%;
  height: 690px;
  border: 0;
  background: var(--white);
}

.outcomes-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
}

.outcome-list {
  border-top: 1px solid var(--ink);
}

.outcome-list article {
  display: grid;
  grid-template-columns: 45px 210px minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.outcome-list h3,
.outcome-list p {
  margin: 0;
}

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

.comparison-table {
  margin-top: 55px;
  border-top: 2px solid var(--ink);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) minmax(120px, 0.6fr) minmax(140px, 0.6fr);
  min-height: 62px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.comparison-row > * {
  padding: 13px 18px;
}

.comparison-row > *:first-child {
  padding-left: 0;
}

.comparison-row > *:last-child {
  background: rgba(30, 81, 72, 0.08);
  color: var(--forest-light);
  font-weight: 700;
}

.comparison-head {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-section {
  width: 100%;
  padding-right: max(24px, calc((100% - var(--content)) / 2));
  padding-left: max(24px, calc((100% - var(--content)) / 2));
  background: var(--mist);
}

.pricing-grid {
  display: grid;
  max-width: 900px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.price-card {
  display: flex;
  min-height: 570px;
  flex-direction: column;
  padding: 32px;
  border: 1px solid #afc0bc;
  border-radius: var(--radius);
  background: var(--white);
}

.featured-plan {
  background: var(--forest);
  color: var(--white);
}

.plan-name {
  margin: 0 0 14px;
  font-size: 1.06rem;
  font-weight: 700;
}

.price {
  margin: 0;
  color: var(--ink-soft);
}

.price span {
  color: var(--ink);
  font-family: "Avenir Next", "Manrope", "Segoe UI", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
}

.annual {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 35px 0 32px;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--forest-light);
  font-weight: 700;
}

.price-card .button {
  margin-top: auto;
}

.featured-plan .price,
.featured-plan .annual,
.featured-plan li {
  color: rgba(255, 255, 255, 0.73);
}

.featured-plan .price span,
.featured-plan li::before {
  color: var(--white);
}

.featured-plan ul {
  border-color: rgba(255, 255, 255, 0.2);
}

.plan-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.plan-topline span {
  color: #a9d1c9;
  font-size: 0.78rem;
  font-weight: 700;
}

.assisted-note {
  margin: 24px 0 0;
  color: var(--ink-soft);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 100px;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 42px 23px 0;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 21px;
  right: 4px;
  font-size: 1.25rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 680px;
  margin: -3px 0 25px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.closing-section {
  display: flex;
  min-height: 370px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 70px max(24px, calc((100% - var(--content)) / 2));
  background: var(--forest);
  color: var(--white);
}

.closing-section h2 {
  max-width: 760px;
  font-size: 4rem;
  line-height: 1;
}

.closing-section p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  display: grid;
  min-height: 190px;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 14px 40px;
  padding: 42px max(24px, calc((100% - var(--content)) / 2));
  background: #0a1c19;
  color: var(--white);
}

.footer-brand {
  width: fit-content;
}

.site-footer p,
.site-footer small {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer nav {
  display: flex;
  grid-column: 2;
  grid-row: 1 / span 2;
  gap: 24px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  text-decoration: none;
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .site-nav {
    gap: 18px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .story-section,
  .product-heading,
  .outcomes-section,
  .faq-section {
    gap: 55px;
  }

  .section-intro h2 {
    font-size: 3rem;
  }

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

  .steps li:nth-child(2) {
    border-right: 0;
  }

  .steps li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .product-browser iframe {
    height: 620px;
  }

  .outcome-list article {
    grid-template-columns: 36px minmax(150px, 0.7fr) minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .site-header {
    width: calc(100% - 32px);
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    display: grid;
    grid-column: 3;
    color: var(--white);
  }

  .site-nav {
    position: fixed;
    inset: 74px 16px auto;
    display: none;
    padding: 18px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
    gap: 6px;
  }

  .site-nav a {
    padding: 12px;
    color: var(--ink);
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 560px;
    height: 90svh;
    max-height: 820px;
  }

  .hero-content {
    width: calc(100% - 32px);
  }

  .hero h1 {
    max-width: 600px;
    font-size: 3.35rem;
  }

  .hero-copy {
    max-width: 520px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(8, 18, 17, 0.94) 0%, rgba(8, 18, 17, 0.74) 58%, rgba(8, 18, 17, 0.24) 100%);
  }

  .proof-strip,
  .section-space {
    width: calc(100% - 32px);
  }

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

  .proof-strip div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .proof-strip div:nth-child(3) {
    padding-left: 0;
  }

  .section-space {
    padding: 88px 0;
  }

  .story-section,
  .product-heading,
  .outcomes-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .product-section,
  .pricing-section {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .product-browser iframe {
    height: 720px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 520px;
  }

  .closing-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .closing-section h2 {
    font-size: 3.25rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    grid-column: 1;
    grid-row: auto;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 70px;
  }

  .brand {
    font-size: 0.94rem;
  }

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

  .hero {
    min-height: 560px;
  }

  .hero-content {
    margin-top: 62px;
  }

  .hero h1 {
    max-width: 410px;
    font-size: 2.75rem;
    line-height: 1;
  }

  .hero-copy {
    max-width: 390px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    width: min(100%, 360px);
  }

  .hero-image {
    object-position: 65% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(8, 18, 17, 0.9) 0%, rgba(8, 18, 17, 0.82) 57%, rgba(8, 18, 17, 0.48) 100%);
  }

  .proof-strip div {
    min-height: 92px;
    padding: 20px 16px;
  }

  .section-intro h2 {
    font-size: 2.45rem;
    line-height: 1.08;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps li,
  .steps li:first-child {
    min-height: auto;
    padding: 22px 0 30px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .steps h3 {
    margin-top: 32px;
  }

  .product-browser iframe {
    height: 750px;
  }

  .browser-bar strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .outcome-list article {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .outcome-list article p {
    grid-column: 2;
  }

  .comparison-section {
    overflow: hidden;
  }

  .comparison-row {
    grid-template-columns: minmax(150px, 1.4fr) 72px 94px;
    font-size: 0.78rem;
  }

  .comparison-row > * {
    padding: 12px 8px;
  }

  .comparison-head {
    font-size: 0.68rem;
  }

  .price-card {
    min-height: auto;
    padding: 25px;
  }

  .price-card .button {
    margin-top: 10px;
  }

  .closing-section {
    min-height: 410px;
  }

  .closing-section h2 {
    font-size: 2.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
