@import "tailwindcss";

:root {
  color-scheme: light;
  --navy: #07255a;
  --blue: #1768c5;
  --sky: #eaf5ff;
  --ice: #f5faff;
  --line: #d8e7f5;
  --text: #12243b;
  --muted: #5e7085;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 88px 24px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 15%, rgba(67, 170, 255, 0.48), transparent 30%),
    linear-gradient(145deg, #071d4b 0%, #0b3b88 48%, #087ac4 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero::before {
  top: -180px;
  left: -100px;
}

.hero::after {
  right: -150px;
  bottom: -190px;
  width: 520px;
  height: 520px;
}

.heroGlow {
  position: absolute;
  inset: auto 50% -210px auto;
  z-index: -1;
  width: 520px;
  height: 520px;
  transform: translateX(50%);
  border-radius: 50%;
  background: rgba(44, 182, 255, 0.22);
  filter: blur(80px);
}

.heroInner {
  width: min(760px, 100%);
}

.brandMark {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 50px rgba(0, 16, 56, 0.32);
  font-size: 44px;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.eyebrow {
  margin: 0 0 14px;
  color: #bfe4ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1.22;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 640px;
  margin: 24px auto 34px;
  color: #e5f3ff;
  font-size: clamp(16px, 2.4vw, 19px);
  font-weight: 500;
  line-height: 1.9;
}

.primaryButton {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 16px;
  background: #fff;
  color: #0a4d98;
  box-shadow: 0 16px 38px rgba(0, 22, 70, 0.28);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.primaryButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(0, 22, 70, 0.34);
}

.contentSection {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.contentSection + .contentSection {
  border-top: 1px solid var(--line);
}

.sectionHeading {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 34px;
}

.sectionNumber {
  margin: 7px 0 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(27px, 4vw, 36px);
  letter-spacing: -0.03em;
}

.sectionHeading div > p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.faqList {
  display: grid;
  gap: 12px;
}

.faqItem {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(17, 57, 102, 0.05);
}

.faqItem summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  color: var(--navy);
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

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

.faqItem summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 24px;
  font-weight: 400;
}

.faqItem[open] summary::after {
  content: "−";
}

.faqItem p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.85;
}

.contactSection {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 920px) / 2));
  padding-left: max(20px, calc((100vw - 920px) / 2));
  background: var(--ice);
}

.contactCard {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border: 1px solid #cfe2f4;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 57, 102, 0.08);
}

.contactCard > div {
  padding: 34px;
}

.contactCard > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, #0a397f, #0879be);
}

.contactCard h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.contactCard a {
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contactNote p {
  margin: 0 0 14px;
  color: var(--navy);
  font-weight: 800;
}

.contactNote ul {
  margin: 0;
  padding-left: 1.25em;
  color: var(--muted);
  line-height: 1.9;
}

.policyLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.policyLink:hover {
  border-color: #9cc7ed;
  background: var(--ice);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 32px max(20px, calc((100vw - 920px) / 2));
  color: #76879a;
  background: #071d40;
  font-size: 13px;
}

footer p {
  margin: 0;
}

@media (max-width: 680px) {
  .hero {
    min-height: 560px;
    padding: 72px 22px;
  }

  .brandMark {
    width: 72px;
    height: 72px;
    border-radius: 21px;
    font-size: 38px;
  }

  .contentSection {
    width: min(100% - 32px, 920px);
    padding: 64px 0;
  }

  .contactSection {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .sectionHeading {
    grid-template-columns: 40px 1fr;
    gap: 10px;
  }

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

  .contactCard > div {
    padding: 26px;
  }

  footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
