:root {
  --c-canvas: #ffffff;
  --c-surface: #f4f4f4;
  --c-card: #ececec;
  --c-hairline: #d8d8d8;
  --c-on-dark: #14191b;
  --c-body: #44505a;
  --c-muted: #828a90;
  --c-accent: #CD3831;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --tracking-machined: 0.15em;
  --tracking-label: 0.08em;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--c-canvas);
}

body {
  font-family: var(--font);
  font-weight: 300;
  color: var(--c-on-dark);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

a {
  color: var(--c-on-dark);
  text-decoration: none;
}

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

::selection { background: var(--c-accent); color: var(--c-on-dark); }

/* Stage */
.stage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 32px;
  position: relative;
}
.stage::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--c-accent);
}
.stage__inner {
  width: 100%;
  max-width: 1100px;
  text-align: center;
}

/* Eyebrow */
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.eyebrow__rule {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--c-accent);
}
.eyebrow__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-machined);
  color: var(--c-on-dark);
}

/* Display headline */
.display {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0 0 64px;
  color: var(--c-on-dark);
}
.display__accent {
  color: var(--c-accent);
}

/* Logo transition */
.logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 16px 0;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.logos__old {
  height: 44px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.35;
}
.logos__arrow {
  font-size: 28px;
  font-weight: 300;
  color: var(--c-accent);
  line-height: 1;
}
.logos__new {
  height: 56px;
  width: auto;
}

/* Lead */
.lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--c-body);
  max-width: 640px;
  margin: 0 auto 56px;
}

/* CTA */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 18px 36px;
  border: 1px solid var(--c-on-dark);
  background: transparent;
  color: var(--c-on-dark);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-machined);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cta:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-on-dark);
}
.cta__arrow {
  font-size: 18px;
  transition: transform 0.2s ease;
}
.cta:hover .cta__arrow { transform: translateX(6px); }

/* Responsive */
@media (max-width: 720px) {
  .stage { padding: 64px 24px; }
  .eyebrow { margin-bottom: 32px; }
  .display { margin-bottom: 48px; }
  .logos {
    gap: 24px;
    padding: 24px 0;
    margin-bottom: 36px;
  }
  .logos__old { height: 32px; }
  .logos__new { height: 40px; }
  .logos__arrow { font-size: 22px; }
  .lead { margin-bottom: 40px; }
  .cta { width: 100%; justify-content: space-between; }
}

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