:root {
  --navy: #081833;
  --navy-2: #102750;
  --blue: #2364ff;
  --sky: #6cc6ff;
  --gold: #f0b54a;
  --gold-soft: #fff3cf;
  --ink: #112345;
  --muted: #627392;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-solid: #ffffff;
  --surface-strong: #f7faff;
  --line: rgba(17, 35, 69, 0.12);
  --line-strong: rgba(17, 35, 69, 0.2);
  --shadow: 0 24px 70px rgba(8, 24, 51, 0.14);
  --shadow-soft: 0 16px 38px rgba(8, 24, 51, 0.1);
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-pill: 999px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(35, 100, 255, 0.15), transparent 28%),
    radial-gradient(circle at top right, rgba(240, 181, 74, 0.18), transparent 22%),
    linear-gradient(180deg, #eef4ff 0%, #fbfdff 52%, #fff9ef 100%);
  line-height: 1.7;
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  filter: blur(16px);
}

body::before {
  width: 240px;
  height: 240px;
  right: -60px;
  top: 90px;
  background: rgba(35, 100, 255, 0.14);
}

body::after {
  width: 180px;
  height: 180px;
  left: -40px;
  bottom: 100px;
  background: rgba(240, 181, 74, 0.14);
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -44px;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(17, 35, 69, 0.08);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 64px;
  height: 64px;
  background: #fff;
  padding: 8px;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  border-radius: 16px;
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  padding: 11px 15px;
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(35, 100, 255, 0.1);
  color: var(--navy);
  transform: translateY(-1px);
}

.portal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(35, 100, 255, 0.18);
}

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

.page-hero {
  padding: 92px 0 72px;
}

.page-hero.compact {
  padding-top: 78px;
  padding-bottom: 56px;
}

.hero-grid,
.split-grid,
.page-grid,
.contact-grid,
.band-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
}

.hero-visual,
.surface-card,
.feature-card,
.metric-card,
.gallery-item,
.video-card,
.timeline-step,
.faq-item,
.contact-card,
.leader-card,
.person-card,
.quote-card,
.image-frame,
.band-panel,
.form-shell {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 0;
  padding: 10px 6px 10px 0;
}

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 14px;
  border: 1px solid rgba(35, 100, 255, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.76);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.display-title,
.section-heading h2,
.page-title,
.surface-card h2,
.surface-card h3,
.feature-card h3,
.timeline-step h3,
.quote-card h3,
.person-meta h3,
.band-copy h2,
.cta-copy h2 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.display-title {
  margin: 0;
  font-size: clamp(3.1rem, 4.35vw, 4.75rem);
  max-width: 8.8ch;
  color: var(--navy);
  line-height: 0.96;
}

.lead {
  margin: 22px 0 0;
  font-size: 1.04rem;
  color: var(--muted);
  max-width: 34ch;
}

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

.primary-btn,
.secondary-btn,
.ghost-btn,
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 18px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--blue), #4a8fff);
  color: #fff;
  box-shadow: 0 18px 30px rgba(35, 100, 255, 0.22);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  border-color: rgba(17, 35, 69, 0.12);
}

.ghost-btn {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.primary-btn:hover,
.secondary-btn:hover,
.ghost-btn:hover,
.cookie-btn:hover {
  transform: translateY(-2px);
}

.hero-chips,
.pill-list,
.quick-contact,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chips {
  margin-top: 24px;
}

.chip,
.pill-list span,
.quick-contact a,
.social-links a {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 35, 69, 0.1);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual,
.person-card,
.quote-card,
.surface-card,
.feature-card,
.timeline-step,
.faq-item,
.leader-card,
.contact-card,
.form-shell {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  background:
    linear-gradient(140deg, rgba(8, 24, 51, 0.96), rgba(16, 39, 80, 0.92)),
    #081833;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(108, 198, 255, 0.34), transparent 24%),
    radial-gradient(circle at bottom left, rgba(240, 181, 74, 0.28), transparent 26%);
}

.visual-main,
.visual-float {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.visual-main {
  inset: 20px 20px 108px 20px;
  z-index: 1;
}

.visual-main img,
.visual-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-float {
  width: 42%;
  right: 20px;
  bottom: 20px;
  aspect-ratio: 4 / 5;
  border: 6px solid rgba(255, 255, 255, 0.08);
  z-index: 2;
}

.visual-badge,
.visual-note {
  position: absolute;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.visual-badge {
  top: 22px;
}

.visual-badge img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff;
  padding: 4px;
}

.visual-badge strong,
.visual-note strong {
  display: block;
  font-size: 0.95rem;
}

.visual-badge span,
.visual-note span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

.visual-note {
  bottom: 20px;
  left: 20px;
  right: auto;
  max-width: 260px;
  z-index: 3;
}

.section {
  padding: 22px 0 72px;
}

.section-heading {
  margin-bottom: 26px;
  max-width: 760px;
}

.section-heading h2,
.page-title,
.surface-card h2,
.band-copy h2,
.cta-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--navy);
}

.section-heading p,
.surface-card p,
.feature-card p,
.quote-card p,
.band-copy p,
.metric-card p,
.faq-item p,
.leader-card p,
.contact-card p,
.timeline-step p,
.form-note,
.person-meta p {
  color: var(--muted);
}

.metric-grid,
.feature-grid,
.timeline-grid,
.faq-grid,
.leadership-grid {
  display: grid;
  gap: 20px;
}

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

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

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

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

.metric-card {
  border-radius: 28px;
  padding: 24px;
}

.metric-card strong {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 10px;
}

.metric-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: rgba(240, 181, 74, 0.16);
  color: #9d6500;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.person-card {
  display: grid;
  gap: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.96));
}

.person-photo {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #0d54d9, #47a5ff);
}

.person-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.person-meta p {
  margin: 0;
}

.person-role {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(35, 100, 255, 0.1);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-card {
  background:
    radial-gradient(circle at top right, rgba(240, 181, 74, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
}

.quote-card h3 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
}

.quote-card blockquote {
  margin: 0;
  padding: 0;
  border: 0;
}

.quote-card blockquote p {
  margin: 0 0 18px;
  font-size: 1.03rem;
}

.signature {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.signature strong {
  display: block;
  color: var(--navy);
}

.feature-card {
  display: grid;
  gap: 12px;
  border-radius: 28px;
}

.feature-tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: var(--radius-pill);
  background: rgba(8, 24, 51, 0.06);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card h3,
.timeline-step h3,
.leader-card h3,
.contact-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.band-card {
  align-items: stretch;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #081833, #17418a 55%, #2564ff 100%);
  box-shadow: var(--shadow);
}

.band-copy,
.band-panel {
  padding: 34px;
}

.band-copy {
  color: #fff;
}

.band-copy h2 {
  color: #fff;
}

.band-copy p,
.band-copy li,
.band-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.band-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.band-list li {
  position: relative;
  padding-left: 24px;
}

.band-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.band-panel {
  background: rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.surface-card {
  border-radius: var(--radius-xl);
  padding: 32px;
}

.surface-card h3 {
  margin: 0 0 12px;
  font-size: 1.7rem;
}

.detail-list,
.number-list {
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.detail-list li,
.number-list li {
  margin-bottom: 10px;
}

.two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.image-frame {
  border-radius: 30px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 280px;
}

.gallery-item.tall {
  min-height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(8, 24, 51, 0.62);
  color: #fff;
  backdrop-filter: blur(14px);
}

.gallery-caption strong {
  display: block;
  margin-bottom: 4px;
}

.video-card {
  border-radius: 34px;
  overflow: hidden;
  padding: 0;
  background: #081833;
}

.video-card video {
  width: 100%;
  border-radius: 0;
  aspect-ratio: 16 / 9;
  background: #081833;
}

.timeline-step,
.faq-item,
.leader-card {
  border-radius: 28px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 14px;
  background: rgba(35, 100, 255, 0.12);
  color: var(--blue);
  font-weight: 900;
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.cta-band {
  border-radius: 36px;
  padding: 38px;
  background:
    radial-gradient(circle at top right, rgba(240, 181, 74, 0.22), transparent 20%),
    linear-gradient(135deg, #091a36, #164190 58%, #2564ff 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-copy h2,
.cta-copy p {
  color: #fff;
}

.page-title {
  max-width: 14ch;
}

.subheading {
  margin: 14px 0 0;
  max-width: 64ch;
  color: var(--muted);
}

.stack {
  display: grid;
  gap: 20px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-list div {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(8, 24, 51, 0.04);
}

.contact-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.contact-list a {
  color: var(--blue);
  font-weight: 700;
}

.form-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(17, 35, 69, 0.14);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
}

.form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: rgba(35, 100, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(35, 100, 255, 0.1);
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.footer {
  padding: 20px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 26px 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand .brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
}

.footer-note {
  margin: 10px 0 0;
  color: var(--muted);
}

.footer-right {
  display: grid;
  justify-items: end;
  gap: 14px;
  text-align: right;
}

.cookie-consent {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 24, 51, 0.94);
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.cookie-consent p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-btn {
  cursor: pointer;
}

.cookie-btn.secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
}

.cookie-btn.primary {
  background: var(--gold);
  color: var(--navy);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .metric-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .display-title {
    font-size: clamp(2.8rem, 4vw, 4rem);
  }

  .lead {
    max-width: 32ch;
  }

  .timeline-grid,
  .faq-grid,
  .leadership-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .top-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .top-nav.open {
    display: flex;
  }

  .nav-link,
  .portal-link {
    width: 100%;
    justify-content: center;
  }

  .hero-grid,
  .split-grid,
  .page-grid,
  .contact-grid,
  .band-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-copy {
    padding: 32px 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.94));
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
  }

  .header-inner {
    gap: 12px;
  }

  .brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .brand-copy strong {
    font-size: 0.96rem;
    line-height: 1.2;
  }

  .brand-copy span {
    font-size: 0.82rem;
  }

  .footer-right {
    justify-items: start;
    text-align: left;
  }

  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    justify-content: stretch;
  }

}

@media (max-width: 640px) {
  .page-hero {
    padding-top: 72px;
  }

  .hero-copy {
    padding: 22px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy span {
    display: none;
  }

  .menu-toggle {
    padding: 9px 12px;
    border-radius: 14px;
  }

  .hero-visual {
    min-height: 420px;
    padding: 0;
  }

  .visual-main {
    inset: 56px 18px 116px 18px;
  }

  .visual-float {
    width: 48%;
    right: 14px;
    bottom: 18px;
  }

  .visual-badge,
  .visual-note,
  .hero-visual,
  .person-card,
  .quote-card,
  .surface-card,
  .feature-card,
  .metric-card,
  .timeline-step,
  .faq-item,
  .leader-card,
  .contact-card,
  .form-shell,
  .cta-band {
    border-radius: 26px;
  }

  .metric-grid,
  .feature-grid,
  .gallery-grid,
  .two-up {
    grid-template-columns: 1fr;
  }

  .display-title {
    font-size: clamp(2rem, 11vw, 2.7rem);
    max-width: 8.5ch;
  }

  .lead {
    font-size: 0.98rem;
  }

  .kicker,
  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    padding: 7px 11px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .section {
    padding-bottom: 58px;
  }

}
