:root {
  color-scheme: dark;
  --ink: #f7f8fb;
  --muted: #9ea8b8;
  --muted-strong: #c8d0dc;
  --line: rgba(255, 255, 255, 0.14);
  --panel: #10141d;
  --panel-2: #161c29;
  --paper: #090d14;
  --accent: #36d399;
  --accent-2: #7aa8ff;
  --danger: #ff5f7a;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(54, 211, 153, 0.12), transparent 28%),
    linear-gradient(245deg, rgba(122, 168, 255, 0.16), transparent 34%),
    var(--paper);
  line-height: 1.7;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

img {
  width: auto;
  height: auto;
  max-height: 500px;
  object-fit: contain;
}

video {
  width: 100%;
  border-radius: 8px;
  background: #05070b;
}

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

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

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.headline-line {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

p {
  color: var(--muted-strong);
}

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

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

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(54, 211, 153, 0.5);
  border-radius: 8px;
  background: rgba(54, 211, 153, 0.12);
  color: var(--accent);
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

nav a {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 8px 13px;
  border: 1px solid rgba(54, 211, 153, 0.48);
  border-radius: 8px;
  background: rgba(54, 211, 153, 0.1);
  color: var(--accent);
  font-weight: 760;
}

main {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100dvh - 68px);
  padding: 44px 0 34px;
}

.hero-shell {
  display: grid;
  min-height: calc(100dvh - 146px);
  align-content: center;
  gap: 22px;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.52fr);
  gap: 34px;
  align-items: end;
}

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

.kicker {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(122, 168, 255, 0.34);
  border-radius: 8px;
  background: rgba(122, 168, 255, 0.1);
  color: #b9ccff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead {
  max-width: 58ch;
  margin-bottom: 28px;
  color: #d9dfeb;
  font-size: 19px;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 820;
  transition: transform 140ms ease, background 160ms ease, border-color 160ms ease;
}

.primary-button {
  border: 1px solid #6beab6;
  background: var(--accent);
  color: #05110d;
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.primary-button:active,
.secondary-button:active {
  transform: translateY(1px);
}

.hero-proof {
  align-self: stretch;
  display: grid;
  align-content: space-between;
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(54, 211, 153, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(54, 211, 153, 0.16), rgba(16, 20, 29, 0.76) 42%),
    rgba(16, 20, 29, 0.76);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.proof-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.proof-row strong {
  color: #8d98aa;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
}

.proof-row-strong strong {
  color: var(--accent);
}

.proof-track {
  height: 1px;
  margin: 14px 0;
  background: rgba(255, 255, 255, 0.16);
}

.proof-track span {
  display: block;
  width: 78%;
  height: 1px;
  background: linear-gradient(90deg, rgba(54, 211, 153, 0), var(--accent));
}

.hero-proof p {
  max-width: 42ch;
  margin: 18px 0 0;
  color: var(--muted-strong);
  font-size: 14px;
}

.hero-brief {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.82fr) minmax(220px, 0.72fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hero-brief article {
  min-height: 150px;
  padding: 20px;
  background: rgba(16, 20, 29, 0.9);
}

.hero-brief .brief-current {
  background: rgba(122, 168, 255, 0.1);
}

.hero-brief span,
.hero-demand strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.hero-brief p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.68;
}

.hero-demand {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(54, 211, 153, 0.28);
  border-radius: 8px;
  background: rgba(54, 211, 153, 0.075);
}

.hero-demand strong {
  margin: 0;
}

.hero-demand div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-demand span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 13px;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: 68px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.signal-strip div {
  min-height: 128px;
  padding: 24px;
  background: rgba(16, 20, 29, 0.94);
}

.signal-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.signal-strip span {
  color: var(--muted-strong);
}

.content {
  display: grid;
  gap: 34px;
}

.section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 20, 29, 0.78);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.section-copy {
  max-width: 720px;
}

.narrow-copy {
  max-width: 820px;
}

.pain-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.9fr);
  gap: 34px;
  padding: 46px;
}

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

.pain-list div {
  padding: 18px 18px 18px 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.pain-list span {
  float: left;
  width: 36px;
  margin-left: -40px;
  color: var(--accent);
  font-weight: 850;
}

.pain-list p {
  margin-bottom: 0;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 0.82fr);
  gap: 36px;
  align-items: center;
  padding: 28px;
}

.proof-media img {
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #111827;
}

.proof-media img {
  width: auto;
  max-height: 500px;
  margin: 0 auto;
  object-fit: contain;
}

.proof-section .section-copy {
  padding: 16px 18px 16px 0;
}

.cases-section {
  padding: 46px;
}

.case-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  margin-top: 26px;
}

.case-stack {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.case-placeholder {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.case-image-slot,
.case-text-slot,
.case-extra-slot,
.case-reason-slot {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.case-image-slot {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(54, 211, 153, 0.12), rgba(122, 168, 255, 0.06)),
    rgba(255, 255, 255, 0.04);
}

.case-image-slot img {
  width: auto;
  height: auto;
  max-height: 500px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.case-image-slot span,
.case-text-slot > span,
.case-extra-slot span,
.case-reason-slot span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.case-text-slot {
  display: grid;
  align-content: center;
  padding: 38px;
}

.case-text-slot h3 {
  margin: 14px 0 12px;
  font-size: clamp(26px, 3vw, 42px);
}

.case-text-slot p {
  max-width: 54ch;
  margin: 0;
}

.case-reason-slot {
  display: grid;
  align-content: center;
  padding: 26px;
  background: rgba(255, 255, 255, 0.035);
}

.case-reason-slot p {
  margin: 12px 0 0;
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.72;
}

.case-extra-slot {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.035);
}

.case-extra-slot video {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.feature-section {
  padding: 48px;
  background:
    linear-gradient(135deg, rgba(54, 211, 153, 0.14), transparent 42%),
    #0b111a;
}

.feature-intro {
  max-width: 860px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 30px 0;
}

.feature-card {
  min-height: 232px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.feature-card span {
  display: block;
  margin-bottom: 32px;
  color: var(--accent);
  font-weight: 850;
}

.highlight-card {
  background: rgba(54, 211, 153, 0.12);
  border-color: rgba(54, 211, 153, 0.38);
}

.prompt-block {
  max-width: 920px;
  padding-top: 4px;
}

blockquote {
  margin: 20px 0;
  padding: 20px 22px;
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.06);
  color: #f0f4fb;
}

.compare-section {
  padding: 46px;
}

.compare-stack {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.compare-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.compare-column {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.compare-prompt-column {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(122, 168, 255, 0.28);
  border-radius: 8px;
  background: rgba(122, 168, 255, 0.06);
}

.compare-prompt-column p {
  margin: 0;
  color: #d8e0ee;
  font-size: 15px;
  line-height: 1.85;
}

.prompt-thumb {
  width: auto;
  max-width: min(180px, 100%);
  max-height: 220px;
  margin-top: 2px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
}

.compare-column video {
  width: auto;
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.new-column {
  border-color: rgba(54, 211, 153, 0.38);
  background: rgba(54, 211, 153, 0.08);
}

.column-title {
  color: var(--ink);
  font-weight: 850;
}

.apply-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 28px;
  padding: 46px;
  border-color: rgba(54, 211, 153, 0.42);
  background: linear-gradient(135deg, rgba(54, 211, 153, 0.16), rgba(122, 168, 255, 0.08));
}

.apply-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.apply-list li {
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(8, 12, 18, 0.32);
  color: var(--muted-strong);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1220px, calc(100% - 40px));
  margin: 30px auto 48px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1020px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 20px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-main,
  .pain-section,
  .proof-section,
  .case-grid,
  .case-placeholder,
  .compare-row,
  .apply-section {
    grid-template-columns: 1fr;
  }

  .hero-brief,
  .hero-demand {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .signal-strip,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .section,
  .pain-section,
  .cases-section,
  .feature-section,
  .compare-section,
  .apply-section {
    padding: 26px 20px;
  }

  .proof-section {
    padding: 20px;
  }

  .headline-line {
    white-space: normal;
  }
}
