:root {
  color-scheme: light;
  --ink: #050505;
  --muted: #5f5f5f;
  --line: #d9d9d9;
  --paper: #f7f7f7;
  --surface: #ffffff;
  --accent: #111111;
  --accent-strong: #000000;
  --sun: #ffffff;
  --coral: #111111;
  --forest: #111111;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.hero-actions,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  padding-left: 4px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
}

.main-nav {
  gap: 6px;
  color: #333333;
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav a,
.header-action {
  border-radius: 999px;
  padding: 9px 13px;
}

.main-nav a:hover,
.header-action:hover {
  background: rgba(0, 0, 0, 0.08);
}

.header-action {
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 150px 24px 78px;
}

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

.hero-image {
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.48) 52%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.66), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.quote-band .eyebrow,
.final-cta .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 8vw, 6.7rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: #fff;
  color: #000;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: #fff;
}

.button.secondary.dark {
  border-color: var(--line);
  color: var(--ink);
}

.section,
.metrics,
.quote-band,
.final-cta,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.intro,
.split-section,
.quote-band,
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 56px;
  align-items: center;
}

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

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-band,
.pricing,
.faq {
  border-top: 1px solid var(--line);
}

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

.feature-card,
.price-card,
.showcase-panel,
.process-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

.feature-card,
.price-card,
.process-grid div {
  padding: 28px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: #eeeeee;
  color: #000;
  font-weight: 800;
}

.feature-card:nth-child(2) .feature-icon {
  background: #dedede;
  color: #000;
}

.feature-card:nth-child(3) .feature-icon {
  background: #cecece;
  color: #000;
}

.feature-card p,
.process-grid p,
.price-card p,
.faq p,
.split-copy p,
.quote-band p,
.final-cta p {
  color: var(--muted);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.metrics div {
  min-height: 150px;
  padding: 28px;
  background: #f0f0f0;
}

.metrics strong {
  display: block;
  color: var(--forest);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.split-copy p {
  max-width: 580px;
  font-size: 1.06rem;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent-strong);
  font-weight: 800;
}

.showcase-panel {
  padding: 30px;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  font-weight: 800;
}

.timeline {
  display: grid;
  gap: 24px;
  margin-top: 26px;
}

.timeline div {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.timeline strong {
  color: var(--ink);
}

.dot {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.12);
}

.process-grid span {
  display: block;
  color: var(--forest);
  font-size: 1.35rem;
  font-weight: 800;
}

.quote-band {
  margin-top: 26px;
  margin-bottom: 26px;
  border-radius: 8px;
  padding: 58px;
  background: var(--forest);
  color: #fff;
  box-shadow: var(--shadow);
}

.quote-band h2 {
  font-size: clamp(2rem, 3vw, 3.45rem);
}

.quote-band p {
  color: rgba(255, 255, 255, 0.76);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.price-card.featured {
  background: #050505;
  color: #fff;
  border-color: #050505;
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.74);
}

.price {
  margin: 22px 0 4px;
  color: var(--ink);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.featured .price {
  color: #fff;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
}

.featured .price span {
  color: rgba(255, 255, 255, 0.64);
}

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

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
}

.final-cta {
  margin-top: 20px;
  margin-bottom: 76px;
  border-radius: 8px;
  padding: 76px 32px;
  background: linear-gradient(135deg, #050505, #272727);
  color: #fff;
  text-align: center;
}

.final-cta h2,
.final-cta p {
  max-width: 760px;
  margin-inline: auto;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.final-cta .button {
  margin-top: 18px;
}

.site-footer {
  padding: 26px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer div {
  justify-content: end;
  gap: 18px;
  font-weight: 700;
}

@media (max-width: 860px) {
  .site-header {
    align-items: stretch;
    border-radius: 24px;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .header-action {
    margin-left: auto;
  }

  .hero {
    min-height: 86vh;
    padding-top: 172px;
  }

  .intro,
  .split-section,
  .quote-band,
  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-grid,
  .pricing-grid,
  .process-grid,
  .metrics {
    grid-template-columns: 1fr 1fr;
  }

  .quote-band {
    padding: 38px 28px;
  }

  .site-footer div {
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 10px;
  }

  .brand {
    max-width: 48%;
  }

  .header-action {
    padding-inline: 12px;
  }

  .hero {
    padding: 174px 18px 52px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .section,
  .metrics,
  .quote-band,
  .final-cta,
  .site-footer {
    width: calc(100% - 28px);
  }

  .section {
    padding: 68px 0;
  }

  .feature-grid,
  .pricing-grid,
  .process-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .metrics div {
    min-height: 126px;
  }

  .feature-card,
  .price-card,
  .showcase-panel,
  .process-grid div {
    padding: 22px;
  }

  .final-cta {
    padding: 56px 22px;
  }
}
