:root {
  --ink: #071116;
  --ink-soft: #102129;
  --mist: #effbfb;
  --paper: #f8fcfb;
  --line: rgba(13, 145, 149, 0.22);
  --cyan: #22d6d0;
  --teal: #0b8b8d;
  --violet: #7555ff;
  --gold: #f2c36b;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(1, 18, 24, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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;
  min-height: 72px;
  padding: 16px 48px;
  color: var(--white);
  background: rgba(4, 15, 20, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

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

.brand__mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
}

.brand__mark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand__text {
  font-size: 1rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.nav-links a {
  padding: 8px 0;
}

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

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 82svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__bg,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(4, 14, 19, 0.92) 0%, rgba(4, 14, 19, 0.72) 34%, rgba(4, 14, 19, 0.12) 68%),
    linear-gradient(0deg, rgba(4, 14, 19, 0.38), rgba(4, 14, 19, 0.1));
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding-top: 90px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  font-size: 5.25rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 2.7rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero__copy {
  width: min(610px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.16rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__agent-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 8px 12px 8px 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.hero__agent-pill img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.hero__agent-pill span {
  font-size: 0.92rem;
  font-weight: 720;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 720;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  color: #061115;
  background: var(--gold);
  border-color: rgba(255, 255, 255, 0.2);
}

.button--secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

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

.intro {
  padding: 76px 0;
  background: var(--paper);
}

.intro__grid,
.cori-band__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 52px;
  align-items: center;
}

.intro__copy p:not(.section-kicker),
.cori-copy p,
.cta-band p,
.section-heading + .feature-grid p {
  color: #516267;
}

.intro__copy p:not(.section-kicker) {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

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

.process-step,
.feature-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 45px rgba(5, 42, 48, 0.08);
}

.process-step {
  min-height: 218px;
  padding: 22px;
}

.process-step__number {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 780;
}

.process-step p,
.feature-card p {
  margin: 12px 0 0;
  color: #58676b;
}

.feature-band {
  padding: 78px 0 88px;
  color: var(--white);
  background: #0a171d;
}

.section-heading {
  width: min(690px, 100%);
}

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

.feature-card {
  min-height: 250px;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(18, 51, 58, 0.92), rgba(8, 27, 33, 0.96));
  border-color: rgba(70, 234, 229, 0.18);
  box-shadow: none;
}

.feature-card__icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 32px;
  margin-bottom: 46px;
  color: var(--cyan);
  border: 1px solid rgba(34, 214, 208, 0.36);
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 840;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
}

.cori-band {
  padding: 88px 0;
  background:
    linear-gradient(90deg, rgba(117, 85, 255, 0.07), rgba(34, 214, 208, 0.08)),
    var(--paper);
}

.cori-portrait {
  display: grid;
  place-items: center;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(225, 249, 249, 0.78)),
    repeating-linear-gradient(90deg, rgba(11, 139, 141, 0.08) 0 1px, transparent 1px 44px);
  box-shadow: var(--shadow);
}

.cori-portrait img {
  width: min(360px, 82%);
  filter: drop-shadow(0 30px 60px rgba(22, 28, 52, 0.24));
}

.cori-copy p:not(.section-kicker) {
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.signal-list span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #17343b;
  background: rgba(255, 255, 255, 0.7);
  font-weight: 680;
}

.cta-band {
  padding: 82px 0;
  background: var(--white);
}

.cta-band__inner {
  display: grid;
  gap: 18px;
  justify-items: start;
  max-width: 780px;
}

.cta-band p {
  max-width: 660px;
  margin: 0;
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 48px;
  color: rgba(255, 255, 255, 0.64);
  background: var(--ink);
  font-size: 0.9rem;
}

.footer-brand,
.legal-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 720;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.legal-links {
  color: rgba(255, 255, 255, 0.68);
}

.legal-links a {
  padding: 8px 0;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .hero {
    min-height: 78svh;
  }

  .hero__content {
    width: min(620px, calc(100% - 40px));
    margin-left: 20px;
  }

  h1 {
    font-size: 3.85rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .intro__grid,
  .cori-band__grid {
    grid-template-columns: 1fr;
  }

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

  .process-step {
    min-height: auto;
  }

  .process-step__number,
  .feature-card__icon {
    margin-bottom: 24px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding: 14px 18px;
  }

  .nav-links {
    gap: 14px;
    font-size: 0.82rem;
  }

  .brand__text {
    display: none;
  }

  .hero {
    min-height: 76svh;
  }

  .hero__bg {
    object-position: 62% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(4, 14, 19, 0.94), rgba(4, 14, 19, 0.72)),
      linear-gradient(0deg, rgba(4, 14, 19, 0.38), rgba(4, 14, 19, 0.12));
  }

  .hero__content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding-top: 84px;
  }

  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 1.86rem;
  }

  .hero__copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero__agent-pill {
    width: 100%;
    justify-content: center;
  }

  .section-shell {
    width: calc(100% - 36px);
  }

  .intro,
  .feature-band,
  .cori-band,
  .cta-band {
    padding: 58px 0;
  }

  .cori-portrait {
    min-height: 320px;
  }

  .signal-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 18px;
  }

  .legal-links {
    flex-wrap: wrap;
  }
}
