:root {
  color-scheme: light;
  --bg: #f5f8fb;
  --bg-soft: #edf4f8;
  --ink: #071d3b;
  --ink-deep: #041327;
  --ink-soft: #4c5d72;
  --muted: #748297;
  --line: rgba(7, 29, 59, 0.12);
  --card: rgba(255, 255, 255, 0.88);
  --brand: #00b7cc;
  --brand-dark: #087f94;
  --brand-soft: #d7f8fb;
  --accent: #0d8ea2;
  --shadow: 0 24px 70px rgba(7, 29, 59, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 183, 204, 0.18), transparent 28rem),
    radial-gradient(circle at 84% 8%, rgba(8, 127, 148, 0.16), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 48%, #ffffff 100%);
  min-height: 100vh;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(7, 29, 59, 0.08);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(205px, 20vw, 285px);
}

.footer-brand img {
  width: clamp(190px, 18vw, 260px);
}

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

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(0, 183, 204, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.section {
  padding: 92px 0;
}

.hero {
  padding-top: 88px;
}

.hero-grid,
.two-column,
.partner-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(0, 183, 204, 0.14);
}

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 6.4vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 28px;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 16px 30px rgba(7, 29, 59, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ink-deep);
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 12px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-panel {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-panel::before {
  content: "";
  position: absolute;
  width: min(100%, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(0, 183, 204, 0.16), rgba(8, 127, 148, 0.06)),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(7, 29, 59, 0.06) 42px 43px),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(7, 29, 59, 0.06) 42px 43px);
  border: 1px solid rgba(7, 29, 59, 0.08);
}

.panel-card {
  position: relative;
  z-index: 2;
  width: min(100%, 420px);
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-weight: 850;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 7px rgba(0, 183, 204, 0.14);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}

.metric-grid div {
  min-height: 112px;
  padding: 16px;
  border-radius: 20px;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metric-grid strong {
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.metric-grid span,
.progress-block span,
.floating-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 780;
}

.progress-block {
  padding: 18px;
  border-radius: 22px;
  background: var(--ink);
  color: white;
}

.progress-block span {
  color: rgba(255,255,255,0.78);
}

.progress-track {
  height: 9px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 160px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(7, 29, 59, 0.12);
  backdrop-filter: blur(16px);
}

.floating-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.05rem;
}

.floating-card-a {
  top: 44px;
  right: 18px;
}

.floating-card-b {
  bottom: 58px;
  left: 10px;
}

.intro {
  background: rgba(255, 255, 255, 0.64);
  border-block: 1px solid rgba(7, 29, 59, 0.08);
}

.content-stack p {
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.content-stack p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.section-heading.compact {
  max-width: 720px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card,
.process-step,
.partner-card,
.closing-card {
  border: 1px solid rgba(7, 29, 59, 0.09);
  background: var(--card);
  box-shadow: 0 18px 55px rgba(7, 29, 59, 0.06);
  backdrop-filter: blur(14px);
}

.feature-card {
  min-height: 300px;
  padding: 24px;
  border-radius: var(--radius-sm);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 68px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.feature-card p,
.process-step p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.process {
  background:
    radial-gradient(circle at 90% 20%, rgba(0, 183, 204, 0.12), transparent 24rem),
    linear-gradient(180deg, transparent, rgba(237, 244, 248, 0.58));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-step {
  padding: 28px;
  border-radius: var(--radius);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 46px;
  color: white;
  background: var(--ink);
  border-radius: 18px;
  font-weight: 900;
  font-size: 1.1rem;
}

.partner-card {
  padding: 34px;
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.74)),
    radial-gradient(circle at 90% 15%, rgba(0, 183, 204, 0.16), transparent 20rem);
}

.partner-card p {
  max-width: 620px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-weight: 850;
  text-decoration: none;
}

.inline-link::after {
  content: "↗";
  font-size: 0.95em;
}

.inline-link:hover,
.inline-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.partner-logo-wrap {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 30px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid rgba(7, 29, 59, 0.08);
}

.partner-logo-wrap img {
  width: min(100%, 420px);
  max-height: 260px;
  object-fit: contain;
}

.closing {
  padding-top: 30px;
}

.closing-card {
  padding: clamp(28px, 5vw, 56px);
  border-radius: calc(var(--radius) + 8px);
  text-align: center;
  background:
    radial-gradient(circle at 15% 15%, rgba(0, 183, 204, 0.18), transparent 24rem),
    #ffffff;
}

.closing-card .eyebrow {
  justify-content: center;
}

.closing-card p:last-child {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 0;
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: right;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

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

  .hero-panel {
    min-height: 450px;
  }

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

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

  .card-icon,
  .step-number {
    margin-bottom: 32px;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: min(62vw, 230px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 76px 14px auto 14px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    transform-origin: top right;
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 54px;
  }

  h1 {
    letter-spacing: -0.062em;
  }

  .hero-panel {
    min-height: 420px;
  }

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

  .metric-grid div {
    min-height: 92px;
  }

  .floating-card {
    display: none;
  }

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

  .feature-card {
    min-height: auto;
  }

  .partner-card {
    padding: 24px;
  }

  .partner-logo-wrap {
    min-height: 240px;
    padding: 22px;
  }

  .partner-logo-wrap img {
    max-height: 220px;
  }

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

  .footer-inner p {
    text-align: left;
  }
}
