/*!********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/styles/globals.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************/
:root {
  --color-page: #f4f7fb;
  --color-surface: #ffffff;
  --color-surface-muted: #eaf0f7;
  --color-border: #d8e2ef;
  --color-text: #0f1f33;
  --color-text-muted: #5b6b7f;
  --color-heading: #081a2f;
  --color-brand: #0b3a78;
  --color-brand-strong: #072a58;
  --color-accent: #2d67b0;
  --color-cta: #103f7d;
  --shadow-soft: 0 10px 30px rgba(9, 25, 48, 0.08);
  --shadow-card: 0 4px 16px rgba(9, 25, 48, 0.06);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container-max: 1200px;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(18, 72, 144, 0.08), transparent 32%),
    var(--color-page);
  color: var(--color-text);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(45, 103, 176, 0.35);
  outline-offset: 3px;
}

.siteShell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.siteMain {
  flex: 1 1;
  padding: var(--space-4) 0 var(--space-16);
}

.container {
  width: min(calc(100% - 2rem), var(--container-max));
  margin: 0 auto;
}

.siteHeader {
  padding: var(--space-4) 0 0;
}

.siteHeaderInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  background: linear-gradient(180deg, #0b2552, #071a3a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(5, 20, 60, 0.1);
  padding: 14px 18px;
}

.brandMark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brandLogoBox {
  width: 180px;
  height: 68px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.brandLogoImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.siteNav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.portalButton {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    transform 0.12s ease;
}

.portalButton:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: #ffffff;
  transform: translateY(-1px);
}

.heroSection,
.contentSection {
  padding-top: var(--space-6);
}

.contentSection:last-of-type {
  padding-bottom: var(--space-2);
}

.heroPanel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  grid-gap: var(--space-8);
  gap: var(--space-8);
  align-items: stretch;
  background: var(--color-surface);
  border: 1px solid #e4ecff;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
  padding: 36px;
}

.heroCopy h1,
.sectionIntro h2,
.simplePage h1,
.ctaPanel h2 {
  margin: 0;
  color: var(--color-heading);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.heroCopy h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  max-width: 18ch;
}

.sectionIntro h2,
.simplePage h1,
.ctaPanel h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.lead,
.sectionLead,
.simplePage p,
.ctaPanel p,
.valueCard p {
  color: var(--color-text-muted);
}

.eyebrow {
  margin: 0 0 var(--space-3);
  color: var(--color-accent);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead {
  max-width: 58ch;
  font-size: 1rem;
  margin: var(--space-4) 0 0;
}

.introSubtitle {
  margin: var(--space-3) 0 0;
  font-size: 1.12rem;
  color: #2a3a58;
  font-weight: 600;
}

.sectionLead {
  margin: var(--space-4) 0 0;
  max-width: 58ch;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.875rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

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

.buttonPrimary {
  background: var(--color-cta);
  color: #fff;
}

.buttonPrimary:hover {
  background: var(--color-brand-strong);
}

.buttonSecondary {
  background: transparent;
  color: var(--color-brand);
  border-color: var(--color-border);
}

.buttonSecondary:hover {
  background: var(--color-surface);
}

.heroAside {
  display: flex;
  align-items: center;
}

.heroVisualPanel {
  width: 100%;
  background: #f8fbff;
  border: 1px solid #e7efff;
  border-radius: 18px;
  padding: 18px;
}

.heroImageFrame,
.supportVisualFrame {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e7efff;
  background: #fff;
}

.heroImageFrame {
  min-height: 340px;
}

.heroImage,
.supportVisualImage {
  object-fit: cover;
}

.valueCard,
.simplePage,
.ctaPanel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.heroImageContained {
  object-fit: contain;
}

.sectionIntro {
  max-width: 46rem;
  margin-bottom: var(--space-5);
}

.sectionSplit {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.72fr);
  grid-gap: var(--space-6);
  gap: var(--space-6);
  align-items: end;
  margin-bottom: var(--space-5);
}

.supportVisualCard {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--space-4);
}

.supportVisualFrame {
  min-height: 220px;
}

.valueGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: var(--space-5);
  gap: var(--space-5);
}

.valueCard {
  border-radius: var(--radius-md);
  padding: var(--space-6);
  min-height: 176px;
}

.valueCard h3 {
  margin: 0 0 var(--space-3);
  color: var(--color-heading);
  font-size: 1.1rem;
}

.valueCard p,
.simplePage p,
.ctaPanel p {
  margin: 0;
}

.ctaPanel {
  border-radius: 18px;
  padding: var(--space-6) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.ctaPanel > div {
  max-width: 40rem;
}

.simplePage {
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.siteFooter {
  padding: 0 0 var(--space-4);
}

.siteFooterInner {
  background: linear-gradient(180deg, #0b2552, #071a3a);
  color: #dbe7ff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(5, 20, 60, 0.1);
  padding: 14px 18px;
}

.footerLine {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  text-align: center;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .heroPanel,
  .sectionSplit,
  .valueGrid,
  .ctaPanel,
  .siteFooterInner,
  .siteHeaderInner {
    grid-template-columns: 1fr;
  }

  .siteHeaderInner,
  .ctaPanel,
  .siteFooterInner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .siteNav,
  .footerMeta {
    justify-content: flex-start;
    text-align: left;
  }

  .heroPanel {
    padding: 24px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1rem), var(--container-max));
  }

  .siteMain {
    padding-bottom: var(--space-12);
  }

  .heroSection,
  .contentSection {
    padding-top: var(--space-5);
  }

  .heroPanel,
  .simplePage,
  .ctaPanel {
    padding: var(--space-6);
  }

  .brandLogoBox {
    width: 150px;
    height: 58px;
  }
}

