* {
  box-sizing: border-box;
}

:root {
  --ink: #101828;
  --muted: #667085;
  --line: #e7ebef;
  --page: #f7faf8;
  --card: rgba(255,255,255,.94);
  --red: #ed1c24;
  --blue: #0c2c91;
  --green: #15944a;
  --deep-green: #086334;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 4% 8%, rgba(21,148,74,.11) 0 2px, transparent 2.4px) 0 0/24px 24px,
    radial-gradient(circle at 96% 12%, rgba(237,28,36,.07) 0 2px, transparent 2.4px) 0 0/28px 28px,
    linear-gradient(145deg, #ffffff 0%, #f8fbf9 43%, #eef7f1 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
}

body::before {
  width: 520px;
  height: 520px;
  left: -260px;
  bottom: -300px;
  background: rgba(21,148,74,.08);
  box-shadow: 0 0 0 80px rgba(21,148,74,.035);
}

body::after {
  width: 480px;
  height: 480px;
  right: -250px;
  top: -260px;
  background: rgba(12,44,145,.045);
  box-shadow: 0 0 0 80px rgba(237,28,36,.025);
}

.page-shell {
  min-height: 100vh;
  width: min(1540px, calc(100% - 44px));
  margin: 0 auto;
  padding: 42px 0 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(21,148,74,.20);
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  color: var(--deep-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  box-shadow: 0 5px 18px rgba(16,24,40,.035);
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(21,148,74,.10);
}

.hero h1 {
  margin: 15px 0 9px;
  font-size: clamp(31px, 3.2vw, 54px);
  line-height: 1.06;
  letter-spacing: -.045em;
  font-weight: 850;
}

.hero h1 span {
  font-weight: 520;
  color: #344054;
  font-size: .70em;
  letter-spacing: -.025em;
}

.hero p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.brand-card {
  --accent: var(--green);
  --accent-soft: rgba(21,148,74,.08);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16,24,40,.08);
  border-radius: 24px;
  padding: 20px;
  background: var(--card);
  box-shadow:
    0 25px 65px rgba(16,24,40,.08),
    0 2px 8px rgba(16,24,40,.035);
  backdrop-filter: blur(12px);
}

.brand-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 54%, white));
}

.brand-card::after {
  content: "";
  width: 160px;
  height: 160px;
  position: absolute;
  right: -70px;
  top: -55px;
  border-radius: 50%;
  background: var(--accent-soft);
  pointer-events: none;
}

.card-red {
  --accent: var(--red);
  --accent-soft: rgba(237,28,36,.075);
}

.card-green {
  --accent: var(--green);
  --accent-soft: rgba(21,148,74,.075);
}

.card-deepgreen {
  --accent: var(--deep-green);
  --accent-soft: rgba(8,99,52,.075);
}

.card-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #98a2b3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}

.logo-panel {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eef1f4;
  border-radius: 17px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(251,252,252,.96));
}

.logo-panel-new {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 4%, white), white);
  border-color: color-mix(in srgb, var(--accent) 13%, #eef1f4);
}

.logo {
  display: block;
  max-width: 92%;
  max-height: 86px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-easirent {
  max-width: 62%;
}

.logo-drivemore {
  max-width: 94%;
  max-height: 82px;
}

.logo-easihire {
  max-width: 90%;
}

.logo-hanley {
  max-width: 94%;
}

.logo-campers {
  max-width: 96%;
  max-height: 90px;
}

.transition {
  height: 72px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 11px;
  color: var(--accent);
}

.transition-label {
  justify-self: end;
  color: #667085;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .10em;
}

.arrow-line {
  width: 72px;
  height: 2px;
  border-radius: 99px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0 8px,
    transparent 8px 13px
  );
}

.arrow-head {
  justify-self: start;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  font-size: 18px;
  font-weight: 900;
}

.links {
  display: grid;
  gap: 9px;
  margin-top: 15px;
}

.links a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 47px;
  padding: 9px 14px 9px 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 25%, #e9edf0);
  border-radius: 14px;
  color: #344054;
  text-decoration: none;
  font-size: 14px;
  font-weight: 680;
  letter-spacing: -.01em;
  transition: transform .17s ease, box-shadow .17s ease, border-color .17s ease;
}

.links a:hover,
.links a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 10px 20px var(--accent-soft);
  outline: none;
}

.link-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
}

.links .primary-link {
  color: white;
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 7px 18px var(--accent-soft);
}

.links .primary-link .link-icon {
  background: rgba(255,255,255,.15);
  color: white;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: #667085;
  font-size: 13px;
}

footer p {
  margin: 0;
}

.footer-mark {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(21,148,74,.10);
  color: var(--green);
  font-weight: 900;
}

@media (max-width: 980px) {
  .page-shell {
    width: min(760px, calc(100% - 28px));
    justify-content: flex-start;
    padding-top: 30px;
  }

  .brand-grid {
    grid-template-columns: 1fr;
  }

  .brand-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
    grid-template-areas:
      "top top top"
      "old trans new"
      "links links links";
    align-items: center;
  }

  .card-topline { grid-area: top; }
  .brand-card > .logo-panel:first-of-type { grid-area: old; }
  .transition { grid-area: trans; grid-template-columns: 1fr; height: auto; justify-items: center; }
  .transition-label { justify-self: center; }
  .arrow-line { width: 2px; height: 36px; background: repeating-linear-gradient(180deg, var(--accent) 0 7px, transparent 7px 12px); }
  .arrow-head { justify-self: center; }
  .logo-panel-new { grid-area: new; }
  .links { grid-area: links; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 520px);
    padding: 24px 0;
  }

  .hero {
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(28px, 8.5vw, 38px);
  }

  .hero h1 br {
    display: none;
  }

  .brand-card {
    display: block;
    padding: 16px;
    border-radius: 20px;
  }

  .transition {
    height: 66px;
    grid-template-columns: 1fr auto 1fr;
  }

  .transition-label { justify-self: end; }
  .arrow-line { width: 58px; height: 2px; background: repeating-linear-gradient(90deg, var(--accent) 0 7px, transparent 7px 12px); }
  .arrow-head { justify-self: start; }

  .links {
    grid-template-columns: 1fr;
  }

  footer {
    text-align: center;
    padding: 0 12px;
  }
}
