:root {
  --navy: #102a43;
  --blue: #1273eb;
  --cyan: #00bcd4;
  --orange: #ff7a00;
  --sun: #ffd447;
  --white: #ffffff;
  --text: #17324d;
  --muted: #4d6480;
  --line: rgba(16, 42, 67, 0.12);
  --shadow: 0 24px 60px rgba(16, 42, 67, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    "Segoe UI",
    Arial,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 188, 212, 0.26), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 122, 0, 0.2), transparent 26%),
    linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

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

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

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.brand img {
  width: 210px;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 1.4rem;
  font-weight: 600;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.25rem;
  align-items: stretch;
}

.hero-copy,
.hero-brand-panel,
.content-section,
.sector-strip {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84)),
    radial-gradient(circle at top right, rgba(255, 212, 71, 0.24), transparent 28%);
}

.eyebrow,
.card-kicker {
  display: inline-flex;
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: var(--navy);
}

.lede {
  max-width: 58ch;
  margin-top: 1.3rem;
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 42, 67, 0.08);
  color: var(--navy);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 32px rgba(18, 115, 235, 0.24);
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
}

.hero-brand {
  display: grid;
}

.hero-brand-panel {
  display: grid;
  place-items: center;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background:
    linear-gradient(155deg, rgba(18, 115, 235, 0.12), rgba(0, 188, 212, 0.16)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.86));
}

.hero-brand-panel img {
  width: min(560px, 100%);
  height: auto;
}

.sector-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  background:
    linear-gradient(90deg, rgba(18, 115, 235, 0.14), rgba(255, 122, 0, 0.12)),
    rgba(255, 255, 255, 0.9);
}

.sector-strip span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 42, 67, 0.08);
  font-weight: 600;
}

.content-section {
  margin-top: 1.25rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.section-heading {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
}

.section-heading h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.card-grid,
.role-grid {
  display: grid;
  gap: 1rem;
}

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

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

.info-card,
.role-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.9));
}

.card-kicker {
  color: var(--orange);
}

.info-card h3,
.role-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.info-card p,
.role-card li {
  color: var(--muted);
  line-height: 1.7;
}

.role-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.role-card li + li {
  margin-top: 0.4rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding: 0.4rem 0.2rem 0;
  color: var(--muted);
  font-weight: 600;
}

.process-grid .card-kicker {
  color: var(--blue);
}

@media (max-width: 980px) {
  .hero,
  .card-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page {
    width: min(calc(100% - 1rem), var(--max-width));
    padding-top: 0.6rem;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 0.9rem;
  }

  .brand img {
    width: 180px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.5rem, 14vw, 4rem);
  }
}
