:root {
  color-scheme: light;
  --ink: #111318;
  --muted: #59616f;
  --line: #dfe5ec;
  --paper: #f7fafc;
  --white: #ffffff;
  --green: #09a56f;
  --green-dark: #057954;
  --amber: #ffb020;
  --coral: #ff5d4d;
  --blue: #2457ff;
  --shadow: 0 24px 80px rgba(17, 19, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

section[id] {
  scroll-margin-top: 96px;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(9, 11, 16, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(9, 11, 16, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, #30d57d, #f2c94c 58%, #ff6b35);
  color: #101216;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: rgba(255, 255, 255, 0.78);
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--white);
}

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

.header-action {
  justify-self: end;
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
}

.primary-action {
  padding: 0 24px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 34px rgba(9, 165, 111, 0.32);
}

.secondary-action {
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

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

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0e1014;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.88), rgba(7, 9, 13, 0.48) 48%, rgba(7, 9, 13, 0.18)),
    linear-gradient(0deg, rgba(7, 9, 13, 0.78), rgba(7, 9, 13, 0.12) 54%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 104px);
  padding: 148px 0 58px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 720px;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(640px, 100%);
  margin: 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  font-size: 1.45rem;
  font-weight: 950;
}

.hero-stats dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 64px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-band {
  background: var(--white);
}

.intro-grid,
.final-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro-grid > p,
.final-layout p,
.faq-list p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.trust-band {
  padding: 26px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: var(--ink);
}

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

.trust-grid div {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 8px;
  font-size: 1.03rem;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.showcase {
  background: #edf4f7;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.section-heading.compact {
  display: block;
}

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

.video-tile {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 46px rgba(17, 19, 24, 0.08);
}

.video-tile.feature-video {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  align-items: center;
}

.video-tile video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 560px;
  background: #101216;
  object-fit: cover;
}

.feature-video video {
  aspect-ratio: 9 / 16;
}

.video-tile div {
  display: grid;
  gap: 4px;
  padding: 16px;
}

.feature-video div {
  gap: 10px;
  padding: clamp(22px, 4vw, 42px);
}

.feature-video strong {
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
}

.video-tile strong {
  font-size: 1rem;
}

.video-tile span,
.video-tile p,
.step p,
.price-card p {
  color: var(--muted);
}

.workflow {
  background: var(--paper);
}

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

.step {
  min-height: 240px;
  padding: 26px;
  border-top: 4px solid var(--green);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(17, 19, 24, 0.07);
}

.step:nth-child(2) {
  border-color: var(--amber);
}

.step:nth-child(3) {
  border-color: var(--coral);
}

.step span {
  color: var(--green-dark);
  font-weight: 950;
}

.step h3 {
  margin: 24px 0 10px;
  font-size: 1.45rem;
}

.pricing {
  background: var(--white);
}

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

.price-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.price-card.highlight {
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.price-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--green);
  font-weight: 950;
}

.price-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.price-card.highlight p {
  color: rgba(255, 255, 255, 0.72);
}

.faq {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(17, 19, 24, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.final-cta {
  padding: clamp(60px, 8vw, 108px) clamp(18px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(135deg, #111318, #263238 55%, #057954);
}

.final-layout {
  grid-template-columns: minmax(0, 1fr) auto;
}

.final-layout h2 {
  max-width: 760px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 64px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--green-dark);
  font-weight: 800;
}

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

  .nav-links {
    display: none;
  }

  .hero-content {
    margin-left: 18px;
  }

  .hero-stats,
  .intro-grid,
  .final-layout,
  .faq-layout,
  .steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

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

  .video-tile.feature-video {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px;
  }

  .brand small {
    display: none;
  }

  .header-action {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-bottom: 36px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .hero-stats,
  .video-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .video-tile.feature-video {
    grid-column: auto;
  }

  .feature-video video {
    aspect-ratio: 9 / 16;
  }

  .video-tile.feature-video {
    display: block;
  }

  .section-heading {
    display: block;
  }

  .site-footer {
    flex-direction: column;
  }
}
