:root {
  --navy-950: #031d35;
  --navy-900: #06365f;
  --blue-100: #e8f3fb;
  --yellow-500: #ffbe18;
  --yellow-400: #ffd35c;
  --white: #ffffff;
  --ink: #102338;
  --muted: #526476;
  --card: rgba(255, 255, 255, 0.97);
  --shadow: 0 28px 75px rgba(0, 17, 34, 0.34);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--navy-950);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 15%, rgba(19, 109, 169, 0.44), transparent 38rem),
    radial-gradient(circle at 90% 90%, rgba(255, 190, 24, 0.12), transparent 30rem),
    linear-gradient(145deg, var(--navy-900), var(--navy-950) 68%);
}

body::before {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.page-shell {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 32px 20px 52px;
  overflow: hidden;
}

.page-shell::after {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 360px;
  height: 360px;
  content: "";
  border: 70px solid rgba(255, 190, 24, 0.08);
  border-radius: 50%;
}

.layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1.1fr);
  width: min(1040px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(4, 37, 66, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.brand-panel {
  display: grid;
  place-items: center;
  min-height: 590px;
  padding: 48px 38px;
  background:
    linear-gradient(180deg, rgba(0, 27, 52, 0.12), rgba(0, 27, 52, 0.52)),
    linear-gradient(150deg, #0a4a78, #032746);
}

.brand-panel img {
  display: block;
  width: min(100%, 440px);
  height: auto;
  border-radius: 20px;
  box-shadow: 0 24px 55px rgba(0, 9, 20, 0.3);
}

.content-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 62px clamp(32px, 6vw, 70px);
  color: var(--ink);
  background: var(--card);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  margin: 0 0 20px;
  padding: 8px 12px;
  color: #173a56;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #c9deed;
  border-radius: 999px;
  background: var(--blue-100);
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--yellow-500);
  box-shadow: 0 0 0 4px rgba(255, 190, 24, 0.18);
}

h1 {
  max-width: 12ch;
  margin: 0;
  color: #082744;
  font-size: clamp(2.35rem, 5.3vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.lead {
  max-width: 58ch;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  line-height: 1.65;
}

.replacement {
  margin: 26px 0 0;
  padding: 20px 21px;
  border-left: 4px solid var(--yellow-500);
  border-radius: 0 14px 14px 0;
  background: #f3f8fc;
}

.replacement strong {
  display: block;
  margin-bottom: 5px;
  color: #0b3556;
  font-size: 1.04rem;
}

.replacement span {
  display: block;
  color: #536678;
  line-height: 1.52;
}

.ownership {
  margin: 22px 0 0;
  color: #304a61;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.5;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 20px;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 24px;
  color: #072642;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid #e2a400;
  border-radius: 13px;
  background: linear-gradient(180deg, var(--yellow-400), var(--yellow-500));
  box-shadow: 0 12px 28px rgba(217, 152, 0, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.primary-action:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 16px 34px rgba(217, 152, 0, 0.32);
}

.primary-action:focus-visible {
  outline: 4px solid rgba(8, 76, 126, 0.25);
  outline-offset: 3px;
}

.primary-action svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.destination {
  color: #607184;
  font-size: 0.83rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 27px;
  color: #627486;
  font-size: 0.86rem;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-line span::before {
  color: #0b699d;
  font-weight: 900;
  content: "✓";
}

footer {
  position: absolute;
  z-index: 1;
  bottom: 11px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  text-align: center;
}

@media (max-width: 820px) {
  .page-shell {
    display: block;
    padding: 18px 14px 30px;
  }

  .layout {
    grid-template-columns: 1fr;
    margin: 0 auto;
  }

  .brand-panel {
    min-height: auto;
    padding: 24px;
  }

  .brand-panel img {
    width: min(100%, 350px);
  }

  .content-panel {
    padding: 38px 27px 42px;
  }

  h1 {
    max-width: 14ch;
  }

  footer {
    position: static;
    margin-top: 18px;
  }
}

@media (max-width: 480px) {
  .brand-panel img {
    width: 100%;
  }

  .content-panel {
    padding-inline: 22px;
  }

  .actions {
    align-items: stretch;
  }

  .primary-action {
    width: 100%;
  }
}

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