:root {
  --ink: #101528;
  --navy: #111a4d;
  --paper: #f8f5ef;
  --panel: #ffffff;
  --mist: #e8f5f3;
  --line: #d9ded8;
  --muted: #59606d;
  --teal: #087568;
  --teal-dark: #044f47;
  --violet: #7467e8;
  --coral: #d95f45;
  --gold: #b67818;
  --shadow: 0 24px 70px rgba(11, 20, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

button,
input,
textarea {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(16, 21, 40, 0.88);
  color: #fff;
  padding: 10px clamp(18px, 4vw, 56px);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 23px;
  font-weight: 900;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.3vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="true"] {
  color: #fff;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  padding: 0 14px;
}

.header-cta svg,
.button svg,
.feature-list svg,
.integration-grid svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2.4;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(620px, 86svh, 780px);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

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

.hero-backdrop {
  z-index: -3;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11, 14, 30, 0.88) 0%, rgba(11, 14, 30, 0.72) 46%, rgba(11, 14, 30, 0.22) 100%),
    rgba(11, 14, 30, 0.22);
}

.hero-content {
  width: auto;
  max-width: 760px;
  margin: 0 18px 0 clamp(18px, 7vw, 88px);
  padding: 56px 0 72px;
}

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

.hero h1 {
  margin: 0;
  font-size: clamp(76px, 14vw, 158px);
  font-weight: 950;
  line-height: 0.88;
}

.hero-copy {
  width: min(680px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(20px, 2.4vw, 31px);
  font-weight: 720;
  line-height: 1.18;
}

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

.button {
  border: 1px solid transparent;
  padding: 0 18px;
}

.button.primary {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 14px 34px rgba(116, 103, 232, 0.34);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button.dark {
  background: var(--ink);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  padding: 0 12px;
  font-size: 14px;
  font-weight: 800;
}

.hero-stats strong {
  color: #fff;
  margin-right: 4px;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-item {
  display: grid;
  gap: 6px;
  min-height: 118px;
  border-right: 1px solid var(--line);
  padding: 24px clamp(18px, 4vw, 52px);
}

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

.proof-item span,
.screen-card span,
.display-card span,
.video-card span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.proof-item strong {
  font-size: clamp(19px, 2.2vw, 27px);
  line-height: 1.08;
}

.section {
  padding: clamp(72px, 10vw, 124px) clamp(18px, 4vw, 56px);
}

.section-heading {
  display: grid;
  gap: 12px;
  width: min(900px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.origin-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 950;
  line-height: 0.98;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.origin-copy p,
.final-cta p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 650;
  line-height: 1.45;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.screen-card,
.display-card,
.video-card,
.device-frame,
.quote-panel,
.integration-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 44px rgba(16, 21, 40, 0.08);
  overflow: hidden;
}

.screen-card {
  margin: 0;
}

.screen-card.wide {
  grid-column: 1 / -1;
}

.screen-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

.screen-card figcaption,
.display-card figcaption {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.screen-card strong,
.display-card strong,
.video-card strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #eef7f4;
}

.split-copy {
  display: grid;
  gap: 18px;
  max-width: 660px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(8, 117, 104, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 14px;
}

.feature-list svg {
  width: 34px;
  height: 34px;
  color: var(--teal);
}

.feature-list div {
  display: grid;
  gap: 3px;
}

.feature-list strong {
  font-size: 18px;
}

.feature-list span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.4;
}

.device-frame {
  margin: 0;
}

.device-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.device-frame figcaption {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.display-section {
  background: #fff;
}

.display-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 18px;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.display-card {
  margin: 0;
}

.display-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top center;
  background: #f3f0e9;
}

.display-card:first-child img {
  object-position: center;
}

.growth-band {
  background: var(--navy);
  color: #fff;
}

.section-heading.light p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.integration-grid article {
  display: grid;
  gap: 10px;
  min-height: 184px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 20px;
  box-shadow: none;
}

.integration-grid svg {
  width: 30px;
  height: 30px;
  color: #91e3d7;
}

.integration-grid strong {
  font-size: 20px;
  line-height: 1.15;
}

.integration-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.42;
}

.walkthroughs {
  background: #f7fbfb;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.video-card {
  display: grid;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #111;
  object-fit: cover;
}

.video-card div {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.origin-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
  background: #fff;
}

.origin-copy {
  display: grid;
  gap: 18px;
  max-width: 890px;
}

.quote-panel {
  display: grid;
  gap: 18px;
  border-color: rgba(217, 95, 69, 0.24);
  background: #fff7f3;
  padding: clamp(24px, 4vw, 38px);
}

.quote-panel strong {
  color: var(--coral);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.quote-panel span {
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.42;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: var(--teal);
  color: #fff;
}

.final-cta .eyebrow {
  color: #ffd8c9;
}

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

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background: rgba(11, 14, 30, 0.76);
  }

  .proof-band,
  .screen-grid,
  .split-band,
  .display-grid,
  .integration-grid,
  .video-grid,
  .origin-band,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .split-copy {
    max-width: none;
  }

  .display-card img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .final-cta .button {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    min-height: 68px;
    padding-inline: 12px;
  }

  .brand span {
    font-size: 20px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 10px;
    font-size: 13px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
  }

  .hero h1 {
    font-size: clamp(62px, 24vw, 96px);
  }

  .hero-copy {
    font-size: 19px;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .section {
    padding-block: 64px;
  }

  .section-heading {
    text-align: left;
  }

  .screen-grid,
  .display-grid,
  .integration-grid,
  .video-grid {
    gap: 12px;
  }

  .screen-card figcaption,
  .display-card figcaption,
  .video-card div {
    padding: 14px;
  }
}
