:root {
  --navy: #071b37;
  --ink: #10223c;
  --blue: #0f65d8;
  --blue-dark: #0b4ca5;
  --blue-soft: #eaf4ff;
  --line: #d7e5f5;
  --white: #ffffff;
  --muted: #5d6f86;
  --accent-blue: #48b8ff;
  --panel: #f7fbff;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--navy);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
}

a {
  color: var(--blue-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 650;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 680px;
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 20% 18%, rgba(72, 184, 255, 0.26), transparent 34%),
    linear-gradient(135deg, #0a376d 0%, #09264d 48%, #06182f 100%);
  background-size: 40px 40px, 40px 40px, auto, auto;
}

.hero-content,
.section,
.page-hero,
.legal-layout,
.contact-layout {
  width: min(1160px, calc(100vw - 40px));
  margin: 0 auto;
}

.hero-content {
  width: 100%;
  margin: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.1rem;
}

.hero-copy,
.page-hero p,
.section-intro p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-copy {
  color: #d9eaff;
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-align: center;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.button:hover {
  text-decoration: none;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual img {
  display: block;
  width: min(560px, 100%);
  height: auto;
}

.section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.band {
  width: 100%;
  max-width: none;
  padding-right: clamp(20px, 5vw, 72px);
  padding-left: clamp(20px, 5vw, 72px);
  background:
    linear-gradient(rgba(15, 101, 216, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 101, 216, 0.055) 1px, transparent 1px),
    var(--panel);
  background-size: 34px 34px;
}

.band > * {
  width: min(1160px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.section-intro {
  margin-bottom: 30px;
}

.grid {
  display: grid;
  gap: 18px;
}

.six-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.notice-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.info-card {
  min-height: 170px;
  padding: 24px;
}

.info-card p,
.notice-panel p,
.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trust-list div {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.trust-list strong,
.trust-list span {
  display: block;
}

.trust-list strong {
  margin-bottom: 6px;
  color: var(--navy);
}

.trust-list span {
  color: var(--muted);
}

.page-hero {
  width: 100%;
  max-width: none;
  padding: clamp(64px, 9vw, 104px) clamp(20px, 5vw, 72px) clamp(42px, 6vw, 68px);
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 20% 18%, rgba(72, 184, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #0a376d 0%, #09264d 48%, #06182f 100%);
  background-size: 40px 40px, 40px 40px, auto, auto;
}

.page-hero > * {
  width: min(1160px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 4.4rem);
}

.page-hero p {
  color: #d9eaff;
}

.page-hero .eyebrow {
  color: var(--accent-blue);
}

.legal-layout,
.contact-layout {
  display: grid;
  gap: 18px;
  padding-bottom: clamp(60px, 8vw, 104px);
}

.legal-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.notice-panel,
.contact-card {
  padding: clamp(22px, 4vw, 32px);
}

.contact-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.details-list {
  margin: 0;
}

.details-list div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.details-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

.details-list dt {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.details-list dd {
  margin: 4px 0 0;
  color: var(--navy);
  font-weight: 750;
}

.action-card {
  background: var(--panel);
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.topic-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.92rem;
  font-weight: 650;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: #d7e5f5;
  background: var(--navy);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a,
.site-footer span {
  color: #d7e5f5;
}

@media (max-width: 860px) {
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .legal-layout,
  .contact-layout,
  .six-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .site-footer nav {
    gap: 12px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }
}
