:root {
  --ink: #0b1219;
  --ink-soft: #13202b;
  --blue: #1d84f5;
  --blue-dark: #096acb;
  --paper: #f6f8fb;
  --muted: #536170;
  --line: #cbd5df;
}

* { box-sizing: border-box; }

html { color-scheme: light; }

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 42px);
  background: #e9eef4;
  color: var(--ink);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
}

.card {
  width: min(1180px, 100%);
  min-height: min(680px, calc(100vh - 48px));
  display: grid;
  grid-template-columns: minmax(330px, 36%) 1fr;
  overflow: hidden;
  border: 1px solid #dbe2e9;
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 0 32px 90px #0b121928;
}

.brand-panel,
.content-panel { min-width: 0; }

.brand-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 5vw, 58px);
  overflow: hidden;
  color: white;
  background-color: var(--ink);
  background-image:
    linear-gradient(#ffffff0a 1px, transparent 1px),
    linear-gradient(90deg, #ffffff0a 1px, transparent 1px),
    radial-gradient(circle at 20% 80%, #1d84f527, transparent 42%);
  background-size: 48px 48px, 48px 48px, auto;
}

.brand-panel::after {
  content: "";
  position: absolute;
  width: 210px;
  aspect-ratio: 1;
  right: -110px;
  top: 20%;
  border: 1px solid #1d84f540;
  border-radius: 32px;
  transform: rotate(18deg);
}

.logo-frame {
  position: relative;
  z-index: 1;
  width: min(290px, 100%);
  padding: 12px 16px;
  border-radius: 13px;
  background: white;
  box-shadow: 0 12px 34px #0003;
}

.logo { display: block; width: 100%; height: auto; }

.brand-copy { position: relative; z-index: 1; }

.eyebrow,
.process-line {
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow { margin: 0 0 18px; color: var(--blue); }

.slogan {
  margin: 0;
  color: #93a5b6;
  font-size: clamp(.92rem, 1.3vw, 1.08rem);
  line-height: 1.55;
}

.slogan span { white-space: nowrap; }

.content-panel {
  display: grid;
  align-items: center;
  padding: clamp(42px, 7vw, 90px);
}

.content { max-width: 680px; }

h1 {
  max-width: 650px;
  margin: 0 0 22px;
  font-size: clamp(2.7rem, 5.2vw, 5.1rem);
  line-height: .96;
  letter-spacing: -.055em;
}

.lead {
  max-width: 620px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.65;
}

.process {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.process span {
  padding: 9px 13px;
  border-radius: 8px;
  background: #e8f2ff;
  color: var(--blue-dark);
  font-size: .78rem;
  font-weight: 850;
}

.process span.active { background: var(--blue); color: white; }
.process b { color: #8da0b2; font-size: .9rem; }

.process-line { margin: 11px 0 32px; color: #758696; }

.actions { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid #1d84f555; outline-offset: 3px; }
.button.primary { color: white; background: var(--blue); box-shadow: 0 10px 24px #1d84f52f; }
.button.secondary { color: var(--ink); border-color: var(--line); background: transparent; }
.button.secondary:hover { border-color: var(--blue); }

.phone { margin: 11px 0 0; color: #81909e; font-size: .72rem; }

@media (max-width: 760px) {
  body { padding: 0; background: var(--paper); }
  .card { min-height: 100vh; grid-template-columns: 1fr; border: 0; border-radius: 0; box-shadow: none; }
  .brand-panel { min-height: 310px; padding: 30px; }
  .logo-frame { width: min(250px, 82%); }
  .content-panel { padding: 42px 26px 48px; }
  h1 { font-size: clamp(2.6rem, 13vw, 4.4rem); }
}

@media (max-width: 420px) {
  .process { gap: 6px; }
  .process span { padding: 8px 9px; font-size: .7rem; }
  .process b { font-size: .72rem; }
  .actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
