:root {
  --red: #d50012;
  --red-dark: #9f000e;
  --ink: #172737;
  --graphite: #252b31;
  --graphite-soft: #343d46;
  --steel: #e7eef4;
  --line: #cbd8e3;
  --muted: #607083;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(118deg, rgba(37, 43, 49, .96) 0 46%, rgba(231, 238, 244, .98) 46.2% 100%),
    #eef3f7;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(460px, 1fr);
}

.brand-panel {
  min-height: 100vh;
  padding: 54px 58px 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.brand-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .48)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 76px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .032) 0 1px, transparent 1px 76px);
  pointer-events: none;
}

.brand-top,
.brand-links {
  position: relative;
  z-index: 1;
}

.logo {
  width: min(330px, 86vw);
  height: auto;
  display: block;
  margin-bottom: 72px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .34));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-copy h1 {
  margin: 0;
  max-width: 520px;
  font-size: 46px;
  line-height: 1;
  letter-spacing: 0;
}

.claim {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 22px;
  line-height: 1.35;
}

.brand-links {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.brand-links a,
.quick-links a {
  text-decoration: none;
  font-weight: 800;
}

.brand-links a {
  color: rgba(255, 255, 255, .76);
}

.brand-links a:hover {
  color: var(--white);
}

.brand-links a::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--red);
  vertical-align: 1px;
}

.access-panel {
  min-height: 100vh;
  padding: 58px 64px;
  display: grid;
  align-content: center;
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .98)),
    linear-gradient(45deg, transparent 0 48%, rgba(23, 39, 55, .05) 48% 52%, transparent 52% 100%);
}

.access-head {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.access-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: 0;
}

.secure {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.cards {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.access-card {
  min-height: 124px;
  padding: 20px;
  display: grid;
  grid-template-columns: 54px 1fr 32px;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(23, 39, 55, .09);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.access-card:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  box-shadow: 0 22px 52px rgba(23, 39, 55, .15);
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
}

.portal .icon {
  background: linear-gradient(180deg, var(--graphite-soft), var(--graphite));
}

.card-text strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 24px;
}

.card-text small {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.arrow {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
}

.portal .arrow {
  background: var(--graphite);
}

.quick-links {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-links a {
  min-height: 42px;
  padding: 11px 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, .74);
}

.quick-links a:hover {
  color: var(--red-dark);
  border-color: rgba(213, 0, 18, .42);
}

footer {
  max-width: 760px;
  width: 100%;
  margin: 8px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 920px) {
  body {
    background: #eef3f7;
  }

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

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

  .logo {
    width: 220px;
    margin-bottom: 30px;
  }

  .brand-copy h1 {
    font-size: 34px;
  }

  .claim {
    font-size: 18px;
  }

  .access-panel {
    min-height: auto;
    padding: 34px 18px;
  }

  .access-head {
    display: block;
  }

  .access-head h2 {
    font-size: 32px;
  }

  .secure {
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
  }
}

@media (max-width: 560px) {
  .access-card {
    grid-template-columns: 48px 1fr;
  }

  .icon {
    width: 48px;
    height: 48px;
  }

  .arrow {
    display: none;
  }

  footer {
    display: block;
  }

  footer span {
    display: block;
    margin-bottom: 6px;
  }
}
