:root {
  --ink: #10121a;
  --muted: #5d6678;
  --paper: #fbfbf7;
  --panel: #ffffff;
  --line: #d9dee8;
  --navy: #010028;
  --cyan: #10dce8;
  --blue: #1d6fd1;
  --green: #6cbf84;
  --gold: #c9a34a;
  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;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(clamp(20px, 5vw, 72px), calc((100% - 1400px) / 2));
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.brand img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  max-width: 220px;
  font-size: 0.9rem;
  line-height: 1.05;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: #252a36;
  font-size: 0.94rem;
}

.nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: 6px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  min-height: 460px;
  padding: clamp(32px, 4vw, 56px) max(clamp(20px, 5vw, 72px), calc((100% - 1400px) / 2));
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: -0.01em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.lede {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--navy);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--navy);
}

.button.secondary {
  background: transparent;
}

.hero-panel {
  position: relative;
  min-height: 520px;
  padding: 34px;
  color: #fff;
  background: linear-gradient(145deg, rgba(1, 0, 40, 0.95), rgba(13, 38, 72, 0.88));
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(16, 18, 26, 0.16);
}

.portrait-panel {
  padding: 0;
  background: var(--navy);
}

.hero-portrait {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.portrait-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(1, 0, 40, 0.74) 100%);
  pointer-events: none;
}

.hero-mark {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.signal-list {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  z-index: 2;
}

.signal-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  font-weight: 800;
}

.statement {
  padding: clamp(28px, 3vw, 48px) max(clamp(20px, 10vw, 140px), calc((100% - 1400px) / 2));
  background: #eef5f1;
  border-bottom: 1px solid var(--line);
}

.statement p {
  max-width: 1040px;
  margin: 0 auto;
  font-size: clamp(1.55rem, 3.2vw, 3.1rem);
  line-height: 1.12;
}

.section {
  padding: clamp(28px, 3vw, 48px) max(clamp(20px, 5vw, 72px), calc((100% - 1400px) / 2));
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
}

.direct {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.scenario-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.scenario-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 900;
  font-size: 0.82rem;
}

.scenario-card p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card p,
.about-copy p,
.contact p,
.process li {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 7vw, 92px);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process li {
  position: relative;
  min-height: 112px;
  padding: 24px 24px 24px 78px;
  border-left: 4px solid var(--cyan);
  background: #f6f7f4;
  border-radius: 8px;
}

.process li::before {
  counter-increment: process;
  content: counter(process);
  position: absolute;
  top: 24px;
  left: 24px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.process strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.comparison {
  background: #eef5f1;
  border-bottom: 1px solid var(--line);
}

.comparison-table {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1fr;
  border-top: 1px solid var(--line);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row > div {
  padding: 18px;
  color: var(--muted);
  border-left: 1px solid var(--line);
}

.comparison-row > div:first-child {
  color: var(--ink);
  border-left: 0;
  font-weight: 800;
}

.comparison-row.header {
  background: var(--navy);
}

.comparison-row.header > div {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-left-color: rgba(255, 255, 255, 0.16);
}

.comparison-row > div:last-child {
  color: var(--navy);
  background: color-mix(in srgb, var(--cyan) 9%, white);
  font-weight: 800;
}

.comparison-row.header > div:last-child {
  color: #fff;
  background: color-mix(in srgb, var(--blue) 34%, var(--navy));
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.about img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 3vw, 48px) max(clamp(20px, 5vw, 72px), calc((100% - 1400px) / 2));
  color: #fff;
  background: var(--navy);
}

.contact .eyebrow,
.contact p {
  color: color-mix(in srgb, var(--cyan) 76%, white);
}

.contact h2 {
  max-width: 720px;
}

.contact p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.1rem;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.contact-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 14px 18px;
  color: var(--navy);
  background: #fff;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.contact-note {
  margin: 0;
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--cyan) 76%, white);
  text-align: right;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px max(clamp(20px, 5vw, 72px), calc((100% - 1400px) / 2));
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1050px) {
  .hero,
  .split,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-row {
    min-width: 820px;
  }

  .contact-link {
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .hero-panel {
    min-height: 420px;
    padding: 24px;
  }

  .signal-list {
    right: 18px;
    bottom: 18px;
    left: 18px;
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .scenario-grid {
    grid-template-columns: 1fr;
  }

  .process li {
    padding-right: 18px;
  }

  .comparison-row {
    min-width: unset;
    grid-template-columns: 1.15fr 1fr;
  }

  .comparison-row > div:nth-child(2),
  .comparison-row > div:nth-child(3) {
    display: none;
  }

  .contact-cta {
    align-items: flex-start;
  }

  .contact-note {
    text-align: left;
  }

  .footer {
    flex-direction: column;
  }
}
