:root {
  --navy: #06142f;
  --navy-2: #081b3e;
  --ink: #07152f;
  --red: #e41d2b;
  --white: #ffffff;
  --muted: #6f7585;
  --soft: #f6f7fb;
  --shadow: 0 16px 38px rgba(6, 20, 47, 0.13);
  --shadow-hover: 0 22px 46px rgba(6, 20, 47, 0.19);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.page-shell {
  width: 100%;
  overflow: hidden;
}

.hero-banner {
  background: radial-gradient(circle at 50% 0%, #153564 0%, #06142f 60%, #020815 100%);
  line-height: 0;
}

.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  margin: 0 auto;
}

.links-section {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 54px) 18px clamp(36px, 5vw, 74px);
  background:
    radial-gradient(circle at top center, rgba(228, 29, 43, 0.05), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  text-align: center;
}

.brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 4vw, 34px);
  margin-bottom: 8px;
}

.brand-line,
.footer-line {
  width: min(28vw, 240px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.brand-mark,
.footer-mark {
  position: relative;
  width: 62px;
  height: 52px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.brand-g,
.brand-a {
  font-size: 44px;
}

.brand-g {
  color: var(--navy);
}

.brand-a {
  color: var(--red);
  margin-left: -11px;
  transform: translateY(9px);
}

h1 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(38px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-shadow: 0 3px 12px rgba(6, 20, 47, 0.09);
}

.intro-text {
  margin: 12px 0 clamp(24px, 4vw, 42px);
  color: var(--muted);
  font-size: clamp(15px, 2vw, 21px);
  letter-spacing: 0.01em;
}

.link-list {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  gap: clamp(14px, 2vw, 22px);
}

.link-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: clamp(76px, 11vw, 118px) 1fr 42px;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  padding: clamp(12px, 1.7vw, 18px) clamp(14px, 2.5vw, 28px) clamp(12px, 1.7vw, 18px) clamp(12px, 1.7vw, 18px);
  border: 1px solid rgba(6, 20, 47, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(228, 29, 43, 0.28);
  outline: none;
}

.icon-box {
  position: relative;
  min-height: clamp(76px, 11vw, 104px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(90deg, var(--red) 0 7px, transparent 7px),
    linear-gradient(145deg, #041029 0%, #081b45 100%);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 12px 24px rgba(6, 20, 47, 0.18);
}

.icon-box svg {
  width: 52%;
  height: 52%;
}

.icon-box.red-icon {
  color: var(--red);
}

.card-copy {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.card-copy strong {
  color: var(--navy);
  font-size: clamp(18px, 2.4vw, 29px);
  line-height: 1.11;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.card-copy small {
  color: #596175;
  font-size: clamp(13px, 1.75vw, 19px);
  line-height: 1.3;
}

.arrow {
  width: 28px;
  height: 28px;
  justify-self: center;
  border-top: 4px solid var(--red);
  border-right: 4px solid var(--red);
  transform: rotate(45deg);
  border-radius: 2px;
  transition: transform 240ms ease;
}

.link-card:hover .arrow,
.link-card:focus-visible .arrow {
  transform: translateX(4px) rotate(45deg);
}

.site-footer {
  padding: clamp(28px, 5vw, 58px) 18px clamp(32px, 5vw, 64px);
  background:
    radial-gradient(circle at 50% -20%, rgba(22, 61, 116, 0.9), transparent 42%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 14px),
    linear-gradient(145deg, #040b1d 0%, #071a3c 100%);
  color: var(--white);
  text-align: center;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 5vw, 46px);
  margin-bottom: 14px;
}

.footer-mark .brand-g {
  color: var(--white);
}

.site-footer p {
  margin: 0 0 22px;
  font-size: clamp(15px, 2vw, 24px);
  letter-spacing: 0.01em;
}

.footer-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 34px);
}

.footer-icons span {
  width: clamp(30px, 5vw, 46px);
  height: clamp(30px, 5vw, 46px);
  color: var(--white);
}

.footer-icons svg {
  width: 100%;
  height: 100%;
}

.footer-icons i {
  width: 2px;
  height: 30px;
  background: var(--red);
  display: inline-block;
}



/*
  Desktop opening scale adjustment
  --------------------------------
  On larger desktop screens, the page is intentionally compacted so that
  normal 100% browser zoom visually feels closer to the previous 50% desktop view.
  Mobile and smaller screens are left unchanged below 1024px.
*/
@media (min-width: 1024px) {
  .hero-banner img {
    max-height: 50vh;
  }

  .links-section {
    padding: 20px 18px 30px;
  }

  .brand-lockup {
    gap: 22px;
    margin-bottom: 2px;
  }

  .brand-line {
    width: 170px;
  }

  .brand-mark,
  .footer-mark {
    width: 44px;
    height: 36px;
  }

  .brand-g,
  .brand-a {
    font-size: 32px;
  }

  .brand-a {
    margin-left: -8px;
    transform: translateY(7px);
  }

  h1 {
    font-size: 46px;
    line-height: 0.95;
  }

  .intro-text {
    margin: 6px 0 18px;
    font-size: 14px;
  }

  .link-list {
    width: min(100%, 560px);
    gap: 10px;
  }

  .link-card {
    min-height: 68px;
    grid-template-columns: 58px 1fr 22px;
    gap: 13px;
    padding: 8px 14px 8px 8px;
    border-radius: 14px;
  }

  .icon-box {
    min-height: 58px;
    border-radius: 11px;
    background:
      linear-gradient(90deg, var(--red) 0 5px, transparent 5px),
      linear-gradient(145deg, #041029 0%, #081b45 100%);
  }

  .card-copy {
    gap: 3px;
  }

  .card-copy strong {
    font-size: 16px;
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .card-copy small {
    font-size: 11px;
    line-height: 1.2;
  }

  .arrow {
    width: 15px;
    height: 15px;
    border-width: 3px;
  }

  .site-footer {
    padding: 20px 18px 26px;
  }

  .footer-inner {
    gap: 24px;
    margin-bottom: 8px;
  }

  .footer-line {
    width: 170px;
  }

  .site-footer p {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .footer-icons {
    gap: 22px;
  }

  .footer-icons span {
    width: 24px;
    height: 24px;
  }

  .footer-icons i {
    height: 20px;
  }
}

@media (min-width: 1024px) and (min-height: 780px) {
  .hero-banner img {
    max-height: 46vh;
  }
}

@media (max-width: 760px) {
  .hero-banner img {
    max-height: none;
  }

  .links-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .link-card {
    min-height: 96px;
    grid-template-columns: 76px 1fr 24px;
    gap: 14px;
    border-radius: 16px;
  }

  .icon-box {
    border-radius: 14px;
  }

  .arrow {
    width: 19px;
    height: 19px;
    border-width: 3px;
  }
}

@media (max-width: 420px) {
  .brand-line,
  .footer-line {
    width: 88px;
  }

  h1 {
    letter-spacing: 0.02em;
  }

  .link-card {
    grid-template-columns: 68px 1fr 18px;
    gap: 12px;
    padding: 10px 13px 10px 10px;
  }

  .icon-box {
    min-height: 68px;
  }

  .card-copy strong {
    font-size: 16px;
  }

  .card-copy small {
    font-size: 12px;
  }
}

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