:root {
  color-scheme: light;
  --ink: #15243a;
  --muted: #526273;
  --line: #dbe6f0;
  --surface: #ffffff;
  --soft: #f4f9fd;
  --soft-blue: #e8f4ff;
  --blue: #115b9a;
  --navy: #0d2d52;
  --accent: #f3a51d;
  --accent-strong: #a85c08;
  --shadow: 0 22px 60px rgba(13, 45, 82, 0.11);
  --radius: 16px;
  font-family:
    "Aptos",
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f8fcff 0%, #eef6fd 48%, #f9fcff 100%);
  color: var(--ink);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px clamp(18px, 4vw, 56px);
  background: rgba(248, 252, 255, 0.94);
  border-bottom: 1px solid rgba(217, 227, 238, 0.9);
  backdrop-filter: blur(14px);
}

.header-brand-row {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
}

.brand img {
  width: min(198px, 32vw);
  height: auto;
}

.header-logos {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(10px, 1.8vw, 22px);
  white-space: nowrap;
}

.logo-slot {
  display: flex;
  min-height: 0;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  text-decoration: none;
}

.logo-slot:hover,
.logo-slot:focus-visible {
  outline: 3px solid rgba(243, 165, 29, 0.55);
  outline-offset: 5px;
}

.logo-slot img {
  width: 100%;
  height: auto;
  max-height: 34px;
  object-fit: contain;
}

.logo-slot.small {
  width: 44px;
}

.logo-slot.wide {
  width: 162px;
}

.menu-dropdown {
  position: relative;
  flex: 0 0 auto;
}

.menu-dropdown summary {
  display: flex;
  width: 48px;
  height: 48px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
}

.menu-dropdown summary::-webkit-details-marker {
  display: none;
}

.menu-dropdown summary span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
}

.top-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 210px;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  padding: 8px;
  box-shadow: var(--shadow);
}

.top-nav a {
  display: flex;
  align-items: center;
  min-height: 42px;
  border-radius: 10px;
  padding: 9px 12px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  background: var(--soft-blue);
  outline: none;
}

.hero,
.section,
.screen-section,
.map-section,
.partners,
.notice,
.footer {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.hero {
  min-height: calc(100dvh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: 48px 0 38px;
}

.hero h1,
.section-heading h2,
.map-copy h2 {
  margin: 0;
  color: var(--navy);
  letter-spacing: 0;
  line-height: 1.04;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.hero-copy > p {
  max-width: 34rem;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(1px);
}

.button.primary {
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(13, 45, 82, 0.22);
}

.button.secondary {
  background: #ffffff;
  color: var(--navy);
  border: 1px solid var(--line);
}

.hero-visual,
.map-preview,
.screen-card,
.module-grid article,
.notice {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
}

.hero-visual,
.map-preview {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual img,
.map-preview img {
  width: 100%;
  height: auto;
}

.notice {
  margin-top: -10px;
  padding: 22px 24px;
}

.notice strong,
.notice span {
  display: block;
}

.notice strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.notice span {
  max-width: 75ch;
  margin-top: 6px;
  color: var(--muted);
}

.section,
.screen-section,
.map-section,
.partners {
  margin-top: clamp(52px, 7vw, 86px);
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.map-copy h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.section-heading p,
.map-copy p {
  max-width: 62ch;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.module-grid article {
  min-height: 168px;
  padding: 24px;
}

.module-grid article:nth-child(2),
.module-grid article:nth-child(5) {
  background: linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
}

.module-grid article:nth-child(3) {
  background: linear-gradient(180deg, #ffffff 0%, #fff8e7 100%);
}

.module-grid h3,
.screen-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.module-grid p,
.screen-card p,
.map-copy li {
  margin: 0;
  color: var(--muted);
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.screen-card {
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(13, 45, 82, 0.08);
}

.screen-card.wide {
  grid-column: 1 / -1;
}

.screen-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top left;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.screen-card.wide img {
  height: 520px;
}

.screen-card div {
  padding: 20px 22px 24px;
}

.map-section {
  padding: clamp(26px, 5vw, 46px);
  border-radius: calc(var(--radius) + 8px);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-logo-wrap {
  max-width: 420px;
  margin-bottom: 24px;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(420px, 1.26fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.map-copy ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding-left: 20px;
}

.partners {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(14px, 4vw, 42px);
  align-items: center;
  padding: 8px 0 4px;
}

.partners .footer-logo {
  flex: 0 1 auto;
}

.partners img {
  width: 100%;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.partners .footer-logo:nth-child(1) {
  width: 64px;
}

.partners .footer-logo:nth-child(2) {
  width: 132px;
}

.partners .footer-logo:nth-child(3) {
  width: 230px;
}

.partners .footer-logo:nth-child(4) {
  width: 122px;
}

.footer {
  padding: 34px 0 46px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer p {
  margin: 0;
}

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

@media (max-width: 980px) {
  .site-header {
    gap: 12px;
  }

  .header-brand-row {
    gap: 14px;
  }

  .header-logos {
    margin-left: auto;
  }

  .hero,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .module-grid,
  .screen-grid {
    grid-template-columns: 1fr;
  }

  .screen-card.wide {
    grid-column: auto;
  }

  .screen-card.wide img,
  .screen-card img {
    height: 340px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 62px;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
  }

  .header-brand-row {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .brand img {
    width: clamp(112px, 33vw, 144px);
  }

  .header-logos {
    flex: 1 1 auto;
    width: auto;
    justify-content: flex-start;
    gap: clamp(7px, 2vw, 10px);
  }

  .logo-slot img {
    max-height: 25px;
  }

  .logo-slot.small {
    width: clamp(30px, 8vw, 42px);
  }

  .logo-slot.wide {
    width: clamp(92px, 27vw, 132px);
  }

  .menu-dropdown {
    margin-top: 2px;
  }

  .menu-dropdown summary {
    width: 44px;
    height: 44px;
  }

  .top-nav {
    right: -2px;
    min-width: 188px;
  }

  .hero,
  .section,
  .screen-section,
  .map-section,
  .partners,
  .notice,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .hero-copy > p {
    max-width: 100%;
  }

  .screen-card.wide img,
  .screen-card img {
    height: 245px;
  }

  .map-section {
    padding: 22px;
  }

  .map-logo-wrap {
    max-width: 100%;
  }

  .partners {
    width: min(100% - 20px, 1180px);
    gap: clamp(8px, 2.6vw, 14px);
    padding: 2px 0 0;
  }

  .partners img {
    max-height: 34px;
  }

  .partners .footer-logo:nth-child(1) {
    width: clamp(34px, 11vw, 48px);
  }

  .partners .footer-logo:nth-child(2) {
    width: clamp(62px, 18vw, 86px);
  }

  .partners .footer-logo:nth-child(3) {
    width: clamp(118px, 34vw, 154px);
  }

  .partners .footer-logo:nth-child(4) {
    width: clamp(62px, 18vw, 84px);
  }
}
