:root {
  --ink: #050506;
  --muted: #59606a;
  --paper: #fbfdff;
  --line: #d7ebff;
  --ice: #b9dcff;
  --ice-soft: #eef7ff;
  --ice-dark: #6bb8ff;
  --black: #050506;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 37, 68, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(220, 230, 242, 0.8);
  background: rgba(251, 252, 255, 0.88);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 118px;
  height: 58px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.94rem;
  color: var(--muted);
}

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

.header-cta,
.button,
.signup-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
}

.header-cta,
.button.primary,
.signup-form button {
  color: var(--white);
  background: var(--black);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(46px, 7vw, 92px) clamp(20px, 5vw, 72px) 56px;
  background:
    linear-gradient(135deg, rgba(185, 220, 255, 0.74), rgba(255, 255, 255, 0.42) 40%, rgba(185, 220, 255, 0.28)),
    var(--paper);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.05rem, 6vw, 4.9rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 660px;
  color: #343c46;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

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

.button {
  min-width: 150px;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.logo-card {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.logo-card img {
  width: min(100%, 430px);
  aspect-ratio: 640 / 420;
  object-fit: contain;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-row div,
.service-card,
.step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.metric-row div {
  padding: 18px;
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  margin-bottom: 8px;
  font-size: 0.96rem;
}

.metric-row span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.trust-strip div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 20px clamp(18px, 4vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-strip span {
  color: var(--ice);
  font-weight: 800;
}

.section,
.services,
.signup-band,
.site-footer {
  padding-right: clamp(20px, 5vw, 72px);
  padding-left: clamp(20px, 5vw, 72px);
}

.section {
  padding-top: clamp(64px, 8vw, 116px);
  padding-bottom: clamp(64px, 8vw, 116px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 8vw, 110px);
  align-items: start;
}

.section-copy {
  color: #343c46;
  font-size: 1.08rem;
  line-height: 1.8;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 18px;
  padding-bottom: clamp(64px, 8vw, 116px);
}

.service-card {
  min-height: 285px;
  padding: 26px;
  box-shadow: 0 14px 38px rgba(22, 43, 69, 0.06);
}

.service-card span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--ice-dark);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card p,
.step p,
.signup-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.process {
  background: var(--ice-soft);
}

.process-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  min-height: 250px;
  padding: 24px;
}

.step span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--black);
  font-weight: 800;
}

.signup-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
  padding-top: clamp(64px, 8vw, 116px);
  padding-bottom: clamp(64px, 8vw, 116px);
  color: var(--white);
  background: var(--black);
}

.signup-band .eyebrow {
  color: var(--ice);
}

.signup-copy p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.signup-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.signup-form label {
  display: grid;
  gap: 8px;
  color: #2c343d;
  font-size: 0.88rem;
  font-weight: 800;
}

.signup-form .full,
.signup-form button {
  grid-column: 1 / -1;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 12px;
  color: var(--ink);
  background: #f8fbff;
  font: inherit;
}

.signup-form textarea {
  resize: vertical;
}

.signup-form button {
  width: 100%;
  min-height: 52px;
  font-size: 1rem;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.4;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1040px) {
  .hero,
  .split,
  .signup-band {
    grid-template-columns: 1fr;
  }

  .services,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: auto;
  }

  .logo-card {
    min-height: 310px;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-top: 4px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .metric-row,
  .trust-strip,
  .services,
  .steps,
  .signup-form {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .service-card,
  .step {
    min-height: auto;
  }

  .signup-band {
    grid-template-columns: 1fr;
  }

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