﻿:root {
  --bg: #eef5fb;
  --bg-soft: #f8fbfe;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(27, 43, 68, 0.1);
  --line-strong: rgba(27, 43, 68, 0.16);
  --text: #142846;
  --text-soft: #50637e;
  --brand-indigo: #244689;
  --brand-teal: #18929b;
  --brand-navy: #172944;
  --shadow: 0 28px 80px rgba(19, 34, 59, 0.08);
  --shadow-soft: 0 16px 40px rgba(19, 34, 59, 0.06);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --container: min(1200px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(24, 146, 155, 0.12), transparent 26%),
    radial-gradient(circle at 90% 12%, rgba(36, 70, 137, 0.14), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 40, 70, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 40, 70, 0.018) 1px, transparent 1px);
  background-size: 108px 108px;
  opacity: 0.6;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 90%);
}

body::after {
  content: "";
  position: fixed;
  inset: -12%;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(24, 146, 155, 0.16), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(36, 70, 137, 0.16), transparent 28%),
    radial-gradient(circle at 18% 72%, rgba(24, 146, 155, 0.11), transparent 26%),
    radial-gradient(circle at 86% 66%, rgba(36, 70, 137, 0.12), transparent 24%);
  filter: blur(42px);
  opacity: 0.95;
  transform-origin: center;
  animation: ambient-drift 22s ease-in-out infinite alternate;
}

@keyframes ambient-drift {
  0% { transform: translate3d(-2%, -1%, 0) scale(1); }
  50% { transform: translate3d(1.5%, 2%, 0) scale(1.04); }
  100% { transform: translate3d(2%, -1.5%, 0) scale(1.02); }
}

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

.app-shell {
  min-height: 100vh;
}

.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--brand-indigo), var(--brand-teal));
  z-index: 60;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 255, 0.7);
  border-bottom: 1px solid rgba(20, 40, 70, 0.06);
}

.nav-row {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-lockup {
  gap: 14px;
}

.brand-mark-square,
.hero-logo-square {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 52px;
  aspect-ratio: 1;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(241, 247, 255, 0.88)),
    linear-gradient(135deg, rgba(36, 70, 137, 0.14), rgba(24, 146, 155, 0.16));
  border: 1px solid rgba(20, 40, 70, 0.08);
  box-shadow: 0 14px 30px rgba(20, 40, 70, 0.12);
}

.brand-mark-link,
.hero-logo-link {
  position: absolute;
  width: 17px;
  height: 12px;
  border-radius: 999px;
  border: 3px solid currentColor;
  background: transparent;
}

.brand-mark-link-left,
.hero-logo-link-left {
  transform: translateX(-6px);
  color: var(--brand-indigo);
}

.brand-mark-link-right,
.hero-logo-link-right {
  transform: translateX(6px);
  color: var(--brand-teal);
}

.brand-wordstack {
  display: grid;
  gap: 4px;
}

.brand-wordmark {
  color: var(--brand-navy);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 0.95;
}

.brand-submark {
  color: #5d6f8d;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  width: 214px;
  height: auto;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(20, 40, 70, 0.1);
  background: rgba(255, 255, 255, 0.75);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.95);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  display: block;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.96rem;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
  transform: translateY(-1px);
}

.nav-cta {
  background: linear-gradient(135deg, rgba(36, 70, 137, 0.12), rgba(24, 146, 155, 0.12));
  color: var(--text);
}

.hero {
  position: relative;
  min-height: calc(90vh - 88px);
  display: grid;
  align-items: center;
  padding: 52px 0 6px;
  overflow: hidden;
  isolation: isolate;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  animation: hero-media-settle 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(238, 245, 251, 0.16) 0%, rgba(238, 245, 251, 0.22) 14%, rgba(20, 40, 70, 0.36) 100%),
    radial-gradient(circle at 50% 48%, rgba(244, 249, 255, 0.36), rgba(244, 249, 255, 0.1) 34%, rgba(20, 40, 70, 0.52) 100%);
  animation: hero-overlay-settle 1.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-media-settle {
  0% {
    transform: scale(1.06);
    filter: blur(0px) brightness(0.96);
  }
  100% {
    transform: scale(1);
    filter: blur(1.2px) brightness(0.62);
  }
}

@keyframes hero-overlay-settle {
  0% {
    opacity: 0.28;
  }
  100% {
    opacity: 1;
  }
}

@keyframes hero-glow-float {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(0, 16px, 0) scale(1.04);
  }
}

.hero-glow {
  position: absolute;
  inset: auto;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.8;
  pointer-events: none;
  animation: hero-glow-float 11s ease-in-out infinite alternate;
}

.hero-glow-left {
  top: 12%;
  left: -120px;
  background: radial-gradient(circle, rgba(24, 146, 155, 0.12), transparent 68%);
}

.hero-glow-right {
  top: 8%;
  right: -120px;
  background: radial-gradient(circle, rgba(36, 70, 137, 0.16), transparent 68%);
  animation-duration: 13s;
  animation-delay: 1.2s;
}

.hero-copy {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.hero-brandmark-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-lockup {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.hero-brandmark-wrap .hero-brandword {
  margin: 0 auto;
  text-align: center;
}

.hero-logo-square {
  width: clamp(74px, 8vw, 108px);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1)),
    linear-gradient(135deg, rgba(36, 70, 137, 0.4), rgba(24, 146, 155, 0.34));
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 28px 52px rgba(8, 16, 28, 0.18);
}

.hero-logo-link {
  width: clamp(24px, 2.2vw, 31px);
  height: clamp(16px, 1.6vw, 20px);
  border-width: 4px;
}

.hero-logo-link-left,
.hero-logo-link-right {
  color: rgba(255, 255, 255, 0.96);
}

.hero-brandword {
  margin: 0;
  display: block;
  font-size: clamp(4.6rem, 8.6vw, 8.8rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #f9fbff;
  text-shadow: 0 18px 46px rgba(8, 16, 28, 0.34);
}

.gallery6-section {
  padding: 42px 0 26px;
}

.gallery6-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 26px;
}

.gallery6-copy h2 {
  margin: 0 0 10px;
}

.gallery6-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-indigo);
  font-weight: 600;
}

.gallery6-link svg {
  transition: transform 180ms ease;
}

.gallery6-link:hover svg {
  transform: translate3d(3px, -3px, 0);
}

.gallery6-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery6-control {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.gallery6-control:hover:not(:disabled) {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(36, 70, 137, 0.2);
}

.gallery6-control:disabled {
  opacity: 0.42;
  cursor: default;
}

.gallery6-viewport {
  overflow: hidden;
  padding-left: max(20px, calc((100vw - var(--container)) / 2));
}

.gallery6-track {
  display: flex;
  gap: 18px;
  padding-right: max(20px, calc((100vw - var(--container)) / 2));
}

.gallery6-slide {
  flex: 0 0 min(430px, calc(100vw - 54px));
  min-width: 0;
}

.gallery6-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(20, 40, 70, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.gallery6-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(24, 146, 155, 0.18);
}

.gallery6-image-wrap {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 20px;
}

.gallery6-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 280ms ease;
}

.gallery6-card:hover .gallery6-image {
  transform: scale(1.04);
}

.gallery6-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery6-meta span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(36, 70, 137, 0.08);
  color: var(--text-soft);
  font-size: 0.84rem;
}

.gallery6-card h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.12;
}

.gallery6-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.62;
}

.gallery6-footer {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
}

.gallery6-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-indigo);
  font-weight: 600;
}

.gallery6-card:hover .gallery6-readmore svg {
  transform: translateX(3px);
}

.gallery6-readmore svg {
  transition: transform 180ms ease;
}

.hero-subtitle {
  margin: 20px auto 0;
  max-width: 980px;
  color: rgba(243, 247, 254, 0.92);
  font-size: clamp(1.35rem, 1.65vw, 1.82rem);
  font-weight: 500;
  line-height: 1.4;
  text-shadow: 0 10px 28px rgba(8, 16, 28, 0.28);
}

.hero-subtitle span {
  display: block;
}

.hero-subtitle-primary {
  margin-top: 24px;
  font-size: clamp(1.45rem, 1.9vw, 2.05rem);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-subtitle-secondary {
  max-width: 980px;
  margin-top: 16px;
  font-size: clamp(1.26rem, 2.2vw, 1.7rem);
  font-weight: 600;
  color: rgba(240, 245, 252, 0.92);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero .button-primary.button-large {
  animation: none;
}

.hero-testimonial-strip {
  padding: 10px 0 24px;
}

.competence-section {
  padding-top: 26px;
}

.competence-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 30px;
}

.competence-copy {
  display: grid;
  gap: 12px;
}

.competence-copy .section-copy {
  max-width: 56ch;
}

.competence-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.competence-control {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.competence-control:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(24, 146, 155, 0.2);
  background: rgba(255, 255, 255, 0.96);
}

.competence-control:disabled {
  opacity: 0.4;
  cursor: default;
}

.competence-track-wrap {
  position: relative;
}

.competence-track-wrap::before,
.competence-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 68px;
  z-index: 2;
  pointer-events: none;
}

.competence-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 10%, rgba(238, 245, 251, 0));
}

.competence-track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 10%, rgba(238, 245, 251, 0));
}

.competence-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 380px);
  gap: 20px;
  overflow-x: auto;
  padding: 4px 4px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.competence-track::-webkit-scrollbar {
  display: none;
}

.competence-card {
  scroll-snap-align: start;
  display: grid;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(20, 40, 70, 0.08);
  box-shadow: var(--shadow);
}

.competence-image-wrap {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.competence-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 40, 70, 0) 10%, rgba(20, 40, 70, 0.08) 100%);
}

.competence-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.competence-card:hover .competence-image {
  transform: scale(1.04);
}

.competence-card-body {
  padding: 22px 22px 24px;
  display: grid;
  gap: 10px;
}

.competence-card-body h3 {
  font-size: 1.55rem;
  line-height: 1;
}

.competence-card-body p {
  font-size: 1rem;
  line-height: 1.55;
}

.inline-testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
}

.inline-testimonial-quote-wrap {
  position: relative;
  padding: 0 26px;
}

.inline-testimonial-mark {
  position: absolute;
  font-family: Georgia, serif;
  font-size: 4.4rem;
  line-height: 1;
  color: rgba(20, 40, 70, 0.08);
  pointer-events: none;
}

.inline-testimonial-mark-open {
  top: -18px;
  left: 0;
}

.inline-testimonial-mark-close {
  right: 0;
  top: -18px;
}

.inline-testimonial-quote {
  margin: 0;
  text-align: center;
  color: var(--brand-navy);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.03em;
  transition: opacity 400ms ease, transform 400ms ease, filter 400ms ease;
}

.inline-testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.inline-testimonial-role {
  margin: 0;
  font-size: 0.72rem;
  color: var(--text-soft);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.inline-testimonial-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.inline-testimonial-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.inline-testimonial-pill:hover {
  background: rgba(255, 255, 255, 0.74);
}

.inline-testimonial-pill.is-active {
  background: var(--brand-navy);
  box-shadow: 0 16px 34px rgba(20, 40, 70, 0.16);
}

.inline-testimonial-pill.show-name {
  padding: 8px 16px 8px 8px;
}

.inline-testimonial-avatar-wrap {
  flex-shrink: 0;
}

.inline-testimonial-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.inline-testimonial-avatar.is-active {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.28);
}

.inline-testimonial-name-wrap {
  display: grid;
  grid-template-columns: 0fr;
  margin-left: 0;
  opacity: 0;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.inline-testimonial-name-wrap.show-name {
  grid-template-columns: 1fr;
  margin-left: 10px;
  opacity: 1;
}

.inline-testimonial-name-wrap > * {
  overflow: hidden;
}

.inline-testimonial-name {
  display: block;
  white-space: nowrap;
  color: var(--brand-navy);
  font-size: 0.94rem;
  font-weight: 600;
}

.inline-testimonial-name.is-active {
  color: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  overflow: visible;
  transform-origin: center;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background 220ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 72%);
  opacity: 0;
  transform: scale(0.9);
  filter: blur(16px);
  z-index: -1;
  transition:
    opacity 260ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, #244689 0%, #1d6f9f 50%, #18929b 100%);
  box-shadow: 0 10px 24px rgba(28, 70, 137, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
  color: var(--text);
}

.button-large {
  min-width: 264px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px) scale(1.045);
  box-shadow: 0 20px 42px rgba(28, 70, 137, 0.2);
  filter: saturate(1.04);
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  transform: scale(1.08);
  filter: blur(22px);
}

.button:active {
  transform: scale(0.99);
  transition-duration: 90ms;
}

.section {
  padding: 44px 0;
}

.section-tight {
  padding-top: 18px;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 860px;
}

.eyebrow {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

h2,
h3 {
  margin: 0;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  color: var(--brand-navy);
}

h2 {
  font-size: clamp(2.6rem, 4.3vw, 4.35rem);
  line-height: 1;
  letter-spacing: -0.055em;
  max-width: 22ch;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.58;
}

.section-copy {
  max-width: 60ch;
  font-size: 1.12rem;
}

.premium-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.premium-card:hover,
.about-stat-card:hover {
  background: linear-gradient(135deg, var(--brand-indigo), var(--brand-teal));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 60px rgba(36, 70, 137, 0.2);
}

.premium-card:hover h3,
.premium-card:hover p,
.premium-card:hover .card-index,
.premium-card:hover .join-panel-label,
.premium-card:hover .mission-quote,
.premium-card:hover .step-number,
.about-stat-card:hover p,
.about-stat-card:hover .about-stat-value,
.about-stat-card:hover .about-stat-icon {
  color: white;
}

.premium-card:hover .mission-dot {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.12);
}

.premium-card:hover .step-number {
  background: rgba(255, 255, 255, 0.14);
}

.about-stat-card:hover .about-stat-icon {
  background: rgba(255, 255, 255, 0.14);
}

.benefit-layout {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.benefit-simple {
  margin-top: 28px;
  display: grid;
  gap: 24px;
}

.benefit-intro {
  display: grid;
  gap: 18px;
  align-content: center;
}

.benefit-actions {
  display: flex;
  justify-content: flex-start;
}

.benefit-intro p {
  max-width: 42ch;
  font-size: 1.06rem;
}

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

.benefit-card,
.mission-panel,
.mission-point,
.format-card,
.join-step,
.join-panel {
  padding: 22px;
}

.card-index,
.step-number,
.join-panel-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #7a8aa1;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mission-band {
  margin-top: 30px;
  display: block;
}

.mission-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mission-point {
  display: grid;
  gap: 14px;
  align-content: start;
}

.mission-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-indigo), var(--brand-teal));
  box-shadow: 0 0 0 8px rgba(24, 146, 155, 0.08);
  flex: 0 0 auto;
}

.mission-point h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.mission-point p {
  margin: 0;
}

.section-formats {
  position: relative;
}

.section-formats::before {
  content: "";
  position: absolute;
  inset: 100px 0;
  background:
    radial-gradient(circle at left, rgba(36, 70, 137, 0.08), transparent 34%),
    radial-gradient(circle at right, rgba(24, 146, 155, 0.08), transparent 28%);
  z-index: -1;
}

.section-formats-tabs .section-heading {
  margin-bottom: 26px;
}

.formats-tabs-root {
  margin-top: 28px;
}

.formats-tabs-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}


.formats-tab-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 66px;
  padding: 0 24px;
  border: 1px solid rgba(20, 40, 70, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-soft);
  font-weight: 700;
  font-size: 1.04rem;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.formats-tab-trigger:hover,
.formats-tab-trigger[data-state="active"],
.formats-tab-trigger.is-active {
  color: var(--brand-navy);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(24, 146, 155, 0.16);
  transform: translateY(-1px);
}

.formats-tab-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.formats-tabs-panel-wrap {
  margin-top: 22px;
  padding: 24px;
}

.eyebrow-large {
  font-size: 0.98rem;
  letter-spacing: 0.18em;
}

.formats-tab-panel {
  display: none;
}

.formats-tab-panel[data-state="active"],
.formats-tab-panel.is-active {
  display: block;
}

.formats-tab-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: center;
}

.formats-tab-copy {
  display: grid;
  gap: 16px;
}

.formats-content-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(20, 40, 70, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: var(--brand-teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.formats-tab-copy h3 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.formats-tab-copy p {
  max-width: 54ch;
  font-size: 1.05rem;
}

.formats-points {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 8px;
  color: var(--text-soft);
}

.formats-points li {
  line-height: 1.45;
}

.formats-tab-media {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(20, 40, 70, 0.12);
}

.formats-tab-image {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.formats-tabs-panel-wrap:hover {
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.formats-tabs-panel-wrap:hover h3 {
  color: var(--brand-navy);
}

.formats-tabs-panel-wrap:hover p {
  color: var(--text-soft);
}

.formats-tabs-panel-wrap:hover .formats-content-badge {
  color: var(--brand-teal);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(20, 40, 70, 0.08);
}

.formats-tabs-panel-wrap:hover .formats-tab-copy,
.formats-tabs-panel-wrap:hover .formats-tab-grid,
.formats-tabs-panel-wrap:hover .formats-tab-media {
  color: inherit;
}

.formats-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (hover: hover) and (pointer: fine) {
  .benefit-grid:hover > .benefit-card:not(:hover),
  .formats-grid:hover > .format-card:not(:hover) {
    transform: scale(0.97);
    opacity: 0.85;
  }
}

.format-card {
  overflow: hidden;
}

.format-visual {
  height: 220px;
  margin: -22px -22px 20px;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.28), transparent 36%),
    radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.28), transparent 16%),
    linear-gradient(135deg, #20417b 0%, #2b5f98 48%, #19999e 100%);
}

.format-light .format-visual {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.22), transparent 34%),
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.3), transparent 14%),
    linear-gradient(135deg, #ebf3fa 0%, #d4e2ef 44%, #c7e5e3 100%);
}

.format-contrast .format-visual {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.18), transparent 40%),
    radial-gradient(circle at 24% 72%, rgba(255, 255, 255, 0.18), transparent 14%),
    linear-gradient(135deg, #102240 0%, #24436b 44%, #16767a 100%);
}

.join-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
}

.join-steps {
  display: grid;
  gap: 16px;
}

.join-step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.step-number {
  width: 42px;
  height: 42px;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(24, 146, 155, 0.1);
  color: var(--brand-navy);
  font-size: 0.95rem;
  letter-spacing: 0;
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.join-step:hover .step-number {
  background: #fff;
  color: var(--brand-indigo);
  box-shadow: 0 10px 24px rgba(16, 32, 58, 0.16);
}

.join-panel {
  display: grid;
  gap: 14px;
  align-content: start;
  background:
    radial-gradient(circle at top right, rgba(24, 146, 155, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.88);
}

.join-panel-actions {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.join-panel-actions .button {
  width: 260px;
  margin: 0;
  justify-content: center;
}

.join-panel:hover {
  background:
    radial-gradient(circle at top right, rgba(24, 146, 155, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.88);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.join-panel:hover h3,
.join-panel:hover p,
.join-panel:hover .join-panel-label {
  color: inherit;
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    width: min(280px, calc(100vw - 40px));
    padding: 12px;
    border-radius: 22px;
    background: rgba(248, 251, 255, 0.96);
    border: 1px solid rgba(20, 40, 70, 0.1);
    box-shadow: 0 28px 80px rgba(19, 34, 59, 0.08);
    display: none;
    flex-direction: column;
    align-items: stretch;
    z-index: 50;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-header {
    position: sticky;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .hero-brandword {
    font-size: clamp(3.7rem, 9vw, 6rem);
  }

  .hero-subtitle {
    max-width: 740px;
    font-size: clamp(1.08rem, 2.6vw, 1.35rem);
  }

  .hero-subtitle-primary {
    font-size: clamp(1.22rem, 2.9vw, 1.6rem);
  }

  .hero-subtitle-secondary {
    font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  }

  .hero-testimonial-strip {
    padding-top: 0;
  }

  .benefit-layout,
  .join-grid {
    grid-template-columns: 1fr;
  }

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

  .formats-tab-grid {
    grid-template-columns: 1fr;
  }

  .formats-tab-image {
    height: 340px;
  }

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

  .competence-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1200px, calc(100vw - 28px));
  }

  .nav-row {
    min-height: 78px;
  }

  .brand-logo {
    width: 176px;
  }

  .footer-brand .brand-logo {
    width: 168px;
  }

  .brand-lockup {
    gap: 10px;
  }

  .brand-mark-square {
    width: 44px;
    border-radius: 16px;
  }

  .brand-wordmark {
    font-size: 1rem;
  }

  .brand-submark {
    font-size: 0.6rem;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 6px;
  }

  .hero-testimonial-strip {
    padding: 0 0 18px;
  }

  .competence-section {
    padding-top: 18px;
  }

  .competence-head {
    margin-bottom: 22px;
  }

  .competence-track-wrap::before,
  .competence-track-wrap::after {
    width: 24px;
  }

  .competence-track {
    grid-auto-columns: minmax(248px, 84vw);
    gap: 16px;
  }

  .competence-card-body {
    padding: 18px 18px 20px;
  }

  .competence-card-body h3 {
    font-size: 1.3rem;
  }

  .inline-testimonial-quote-wrap {
    padding: 0 18px;
  }

  .inline-testimonial-mark {
    font-size: 3rem;
  }

  .inline-testimonial-quote {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
    line-height: 1.02;
  }

  .hero-lockup {
    gap: 14px;
  }

  .hero-logo-square {
    width: 58px;
    border-radius: 18px;
  }

  .hero-logo-link {
    width: 18px;
    height: 12px;
    border-width: 3px;
  }

  .hero-brandword {
    font-size: clamp(2.95rem, 14vw, 4.45rem);
    line-height: 0.92;
    letter-spacing: -0.075em;
  }

  .hero-media-overlay {
    background:
      linear-gradient(180deg, rgba(238, 245, 251, 0.18) 0%, rgba(20, 40, 70, 0.28) 22%, rgba(20, 40, 70, 0.6) 100%),
      radial-gradient(circle at 50% 38%, rgba(244, 249, 255, 0.28), rgba(244, 249, 255, 0.08) 30%, rgba(20, 40, 70, 0.58) 100%);
  }

  .hero-subtitle {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.48;
    max-width: 330px;
  }

  .hero-subtitle span {
    display: block;
  }

  .hero-subtitle-primary {
    margin-top: 18px;
    font-size: 1.06rem;
    letter-spacing: 0.12em;
  }

  .hero-subtitle-secondary {
    margin-top: 10px;
    font-size: 0.98rem;
  }

  .button-large {
    min-width: 230px;
  }

  .hero-actions,
  .benefit-actions {
    justify-content: center;
  }

  .hero-actions .button-large,
  .benefit-actions .button-secondary,
  .countdown-actions .countdown-button {
    width: min(100%, 320px);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    max-width: 22ch;
  }

  .section-copy,
  .benefit-intro p,
  p {
    font-size: 0.98rem;
  }

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

  .formats-tabs-list {
    flex-direction: column;
    align-items: stretch;
  }

  .formats-tab-trigger {
    width: 100%;
  }

  .formats-tabs-panel-wrap {
    padding: 18px;
  }

  .formats-tab-copy h3 {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .formats-tab-image {
    height: 260px;
  }

  .join-step {
    grid-template-columns: 44px minmax(0, 1fr);
  }
}

.site-footer {
  padding: 30px 0 48px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(20, 40, 70, 0.08);
}

.footer-brand {
  margin-bottom: 8px;
}

.footer-brand .brand-logo {
  width: 204px;
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.footer-links-primary,
.footer-links-secondary {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links-primary {
  gap: 10px 12px;
}

.footer-links-primary a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.94rem;
  transition: color 180ms ease, background-color 180ms ease;
}

.footer-links-primary a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
}

.footer-links-secondary {
  gap: 8px 22px;
}

.footer-links-secondary a {
  color: #7a97c4;
  font-size: 0.94rem;
  transition: color 180ms ease;
}

.footer-links-secondary a:hover {
  color: #5f80b7;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: linear-gradient(180deg, #f2f6fb 0%, #f8fbff 100%);
  color: var(--text);
}

.about-wrap {
  position: relative;
  z-index: 1;
}

.about-blob,
.about-dot,
.about-accent {
  position: absolute;
  pointer-events: none;
}

.about-blob {
  border-radius: 999px;
  filter: blur(48px);
}

.about-blob-left {
  top: 80px;
  left: 40px;
  width: 260px;
  height: 260px;
  background: rgba(36, 70, 137, 0.08);
}

.about-blob-right {
  right: 40px;
  bottom: 120px;
  width: 320px;
  height: 320px;
  background: rgba(24, 146, 155, 0.08);
}

.about-dot {
  border-radius: 50%;
  background: rgba(24, 146, 155, 0.24);
}

.about-dot-top {
  top: 45%;
  left: 24%;
  width: 14px;
  height: 14px;
}

.about-dot-bottom {
  right: 20%;
  bottom: 28%;
  width: 18px;
  height: 18px;
  background: rgba(36, 70, 137, 0.2);
}

.about-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 18px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--brand-teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-heading h2 {
  max-width: none;
  text-align: center;
}

.about-heading-line {
  width: 96px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-indigo), var(--brand-teal));
}

.about-intro {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
  font-size: 1.05rem;
}

.about-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: stretch;
}

.about-orbit-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 360px) minmax(0, 0.9fr);
  gap: 28px;
  align-items: center;
}

.about-pillar-column,
.about-pillars-grid {
  display: grid;
  gap: 18px;
}

.about-pillar-column-left {
  justify-items: end;
}

.about-pillar-column-right {
  justify-items: start;
}

.about-pillar-card {
  padding: 28px 24px;
  width: 100%;
  max-width: 360px;
}

.about-service-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.about-service-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(24, 146, 155, 0.1);
  color: var(--brand-indigo);
  font-weight: 700;
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.about-pillar-card:hover .about-service-icon {
  background: #fff;
  color: var(--brand-indigo);
  box-shadow: 0 10px 24px rgba(16, 32, 58, 0.16);
}

.about-mini-icon {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  color: #9aa9bf;
}

.about-service-head h3 {
  transition: color 220ms ease;
}

.about-service-item:hover .about-service-head h3 {
  color: var(--brand-teal);
}

.about-service-copy {
  padding-left: 66px;
  font-size: 0.98rem;
}

.about-service-link {
  padding-left: 66px;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-teal);
  opacity: 0;
  transition: opacity 220ms ease;
}

.about-service-item:hover .about-service-link {
  opacity: 1;
}

.about-service-link span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.about-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-card {
  position: relative;
  width: 100%;
  max-width: 360px;
}

.about-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(20, 40, 70, 0.14);
}

.about-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  background: linear-gradient(180deg, transparent 35%, rgba(20, 40, 70, 0.54) 100%);
}

.about-image-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font-weight: 700;
}

.about-image-border {
  position: absolute;
  inset: -12px;
  z-index: -1;
  border: 3px solid rgba(24, 146, 155, 0.24);
  border-radius: 28px;
}

.about-accent {
  border-radius: 50%;
}

.about-accent-top {
  top: -18px;
  right: -24px;
  width: 64px;
  height: 64px;
  background: rgba(36, 70, 137, 0.08);
}

.about-accent-bottom {
  left: -30px;
  bottom: -24px;
  width: 84px;
  height: 84px;
  background: rgba(24, 146, 155, 0.1);
}


.countdown-section {
  position: relative;
  overflow: hidden;
  padding: 44px 0 96px;
}

.countdown-blur {
  position: absolute;
  border-radius: 999px;
  filter: blur(64px);
  pointer-events: none;
}

.countdown-blur-left {
  top: 18%;
  left: -10%;
  width: 420px;
  height: 320px;
  background: rgba(36, 70, 137, 0.08);
}

.countdown-blur-right {
  right: -4%;
  bottom: 0;
  width: 360px;
  height: 360px;
  background: rgba(24, 146, 155, 0.1);
}

.countdown-card {
  position: relative;
  padding: 38px;
  border-radius: 32px;
  border: 1px solid rgba(20, 40, 70, 0.08);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 28px 70px rgba(20, 40, 70, 0.1);
  backdrop-filter: blur(18px);
  text-align: center;
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.countdown-inner-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 42%);
  pointer-events: none;
}

.countdown-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.countdown-copy h2 {
  max-width: none;
  text-align: center;
}

.countdown-copy p {
  max-width: 660px;
  font-size: 1.05rem;
}

.countdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(20, 40, 70, 0.08);
  background: rgba(255, 255, 255, 0.8);
  color: var(--brand-teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown-badge-icon {
  width: 14px;
  height: 14px;
}

.countdown-grid {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.countdown-unit-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  min-height: 92px;
  padding: 0 16px;
  border-radius: 20px;
  border: 1px solid rgba(20, 40, 70, 0.08);
  background: rgba(248, 251, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.countdown-unit-number {
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--brand-navy);
}

.countdown-digit-shell {
  position: relative;
  width: 1.4em;
  height: 1em;
  overflow: hidden;
}

.countdown-digit-value,
.countdown-digit-static {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.countdown-digit-static {
  position: static;
}

.countdown-unit-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6e7f97;
}

.countdown-separator {
  padding-bottom: 28px;
  font-size: 2rem;
  font-weight: 300;
  color: rgba(80, 99, 126, 0.46);
}

.countdown-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.countdown-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  position: relative;
  isolation: isolate;
  overflow: visible;
  transform-origin: center;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background 220ms ease;
}

.countdown-button::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 72%);
  opacity: 0;
  transform: scale(0.92);
  filter: blur(14px);
  z-index: -1;
  transition:
    opacity 260ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.countdown-button-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand-indigo), var(--brand-teal));
  box-shadow: 0 16px 34px rgba(36, 70, 137, 0.16);
}

.countdown-button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 40, 70, 0.08);
}

.countdown-button:hover,
.countdown-button:focus-visible {
  transform: translateY(-1px) scale(1.045);
  box-shadow: 0 20px 40px rgba(20, 40, 70, 0.16);
  filter: saturate(1.03);
}

.countdown-button:hover::after,
.countdown-button:focus-visible::after {
  opacity: 1;
  transform: scale(1.08);
  filter: blur(20px);
}

.countdown-button:active {
  transform: scale(0.99);
  transition-duration: 90ms;
}

.countdown-button-icon {
  width: 16px;
  height: 16px;
}

.countdown-button-icon-muted {
  color: #6e7f97;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: transparent;
}

.testimonials-wrap {
  position: relative;
  z-index: 1;
}

.testimonials-heading {
  display: grid;
  justify-items: center;
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}

.testimonials-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(20, 40, 70, 0.12);
  background: rgba(255, 255, 255, 0.64);
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonials-heading h2 {
  margin-top: 22px;
  max-width: 16ch;
  text-align: center;
}

.testimonials-heading p {
  max-width: 42ch;
  margin-top: 18px;
  font-size: 1.06rem;
}

.testimonials-columns {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-height: 740px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0 0 24px;
  list-style: none;
}

.testimonials-list-static {
  animation: testimonials-scroll var(--scroll-duration, 18s) linear infinite;
}

.testimonials-list-static:hover {
  animation-play-state: paused;
}

@keyframes testimonials-scroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

.testimonial-card {
  max-width: 320px;
  width: 100%;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(20, 40, 70, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 42px rgba(20, 40, 70, 0.07);
  backdrop-filter: blur(10px);
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card p {
  line-height: 1.75;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.84);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
}

.testimonial-meta cite {
  color: var(--brand-navy);
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
}

.testimonial-meta span {
  margin-top: 2px;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.testimonials-col-hidden-md {
  display: block;
}

.testimonials-col-hidden-lg {
  display: block;
}

@media (max-width: 980px) {
  .gallery6-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery6-controls {
    margin-top: 6px;
  }

  .about-showcase,
  .mission-points {
    grid-template-columns: 1fr;
  }

  .about-orbit-grid {
    gap: 24px;
  }

  .about-pillar-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: stretch;
  }

  .about-pillar-column-left,
  .about-pillar-column-right {
    justify-items: stretch;
  }

  .about-image {
    height: 420px;
  }

  .countdown-grid {
    flex-wrap: wrap;
  }

  .testimonials-col-hidden-lg {
    display: none;
  }
}

@media (max-width: 720px) {
  .gallery6-section {
    padding: 28px 0 12px;
  }

  .gallery6-viewport {
    padding-left: 20px;
  }

  .gallery6-track {
    padding-right: 20px;
  }

  .gallery6-slide {
    flex-basis: calc(100vw - 40px);
  }

  .gallery6-card {
    padding: 14px;
    border-radius: 22px;
  }

  .gallery6-card h3 {
    font-size: 1.28rem;
  }

  .gallery6-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-section {
    padding: 72px 0;
  }

  .about-intro {
    margin-bottom: 42px;
  }

  .about-pillars-grid {
    grid-template-columns: 1fr;
  }

  .about-pillar-column {
    grid-template-columns: 1fr;
  }

  .about-service-copy,
  .about-service-link {
    padding-left: 0;
  }

  .about-image {
    height: 360px;
  }

  .countdown-section {
    padding: 32px 0 72px;
  }

  .countdown-card {
    padding: 26px 18px;
    border-radius: 24px;
  }

  .countdown-grid {
    gap: 8px;
    margin-top: 26px;
  }

  .countdown-unit-card {
    min-width: 74px;
    min-height: 76px;
    padding: 0 12px;
  }

  .countdown-separator {
    display: none;
  }

  .countdown-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .countdown-button {
    width: 100%;
  }

  .testimonials-section {
    padding: 72px 0;
  }

  .testimonials-columns {
    gap: 18px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonials-col-hidden-md {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body::after {
    animation: none;
  }

  .scroll-bar {
    display: none;
  }
}

