@font-face {
  font-family: "Gelasio";
  src: url("assets/gelasio/Gelasio-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gelasio";
  src: url("assets/gelasio/Gelasio-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gelasio";
  src: url("assets/gelasio/Gelasio-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/ibm_plex_sans/IBMPlexSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/ibm_plex_sans/IBMPlexSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/ibm_plex_sans/IBMPlexSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --fold-offset: 170px;
  --blue-600: #0b68f5;
  --blue-500: #006de5;
  --blue-200: #cfe1ff;
  --blue-100: #e7f0ff;
  --ink-900: #0d1a2b;
  --ink-700: #26354a;
  --ink-600: #374860;
  --ink-500: #52627c;
  --line: #d7e1f2;
  --surface: #ffffff;
  --surface-alt: #f3f7ff;
  --shadow: 0 22px 50px rgba(11, 34, 80, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink-900);
  background-color: #0b1c33;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 800px at 8% -10%, rgba(11, 104, 245, 0.14), transparent 60%),
    radial-gradient(900px 700px at 90% 0%, rgba(0, 109, 229, 0.12), transparent 55%),
    #f5f8fd;
  pointer-events: none;
  z-index: 0;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

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

a:hover {
  color: var(--blue-600);
}

a:focus-visible {
  outline: 2px solid var(--blue-600);
  outline-offset: 2px;
}

h1,
h2,
h3 {
  font-family: "Gelasio", "Times New Roman", serif;
  margin: 0 0 16px;
  color: var(--ink-900);
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.3;
}

p {
  margin: 0 0 16px;
  color: var(--ink-600);
}

.container {
  width: min(1120px, 100% - 48px);
  max-width: 100%;
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--blue-600);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 50;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(245, 248, 253, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  z-index: 20;
}

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

.logo img {
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-700);
}

.nav-links a {
  padding: 6px 8px;
}

.nav-links .cta-link {
  border: 1px solid var(--blue-600);
  border-radius: 999px;
  padding: 6px 16px;
  color: var(--blue-600);
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: max(430px, calc(100svh - var(--fold-offset)));
  padding: 110px 0 90px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  top: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(11, 104, 245, 0.2), transparent 70%);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 360px;
  left: -220px;
  bottom: -200px;
  background: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-500);
  margin: 0 0 8px;
}

.lead {
  margin-top: 6px;
  font-size: 1.16rem;
  color: var(--ink-700);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button.primary {
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 18px 30px rgba(11, 104, 245, 0.25);
}

.button.primary:hover {
  background: #0a5fe0;
  color: #fff;
  transform: translateY(-1px);
}

.button.ghost {
  border-color: var(--line);
  color: var(--ink-700);
  background: #fff;
}

.button.ghost:hover {
  border-color: var(--blue-200);
  color: var(--blue-600);
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.note {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.95rem;
  color: var(--ink-600);
}

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.panel-title {
  font-family: "Gelasio", "Times New Roman", serif;
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: var(--ink-900);
}

.panel-flow {
  display: grid;
  gap: 10px;
  align-items: center;
}

.flow-card {
  background: var(--surface-alt);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 600;
  color: var(--ink-700);
}

.flow-arrow {
  color: var(--blue-600);
  font-weight: 600;
  padding-left: 6px;
}

.panel-meta {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  color: var(--ink-500);
  font-size: 0.95rem;
}

.coming-soon {
  margin-top: -14px;
  padding: 10px 0 30px;
}

.coming-soon-label {
  margin: 0;
  text-align: center;
  font-family: "Gelasio", "Times New Roman", serif;
  font-size: clamp(1.68rem, 2.8vw, 2.52rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: var(--surface-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-header {
  max-width: 680px;
  margin-bottom: 40px;
}

.list-grid,
.principle-grid,
.team-grid,
.trust-grid {
  display: grid;
  gap: 24px;
}

.list-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.list-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(11, 34, 80, 0.08);
}

.principle-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.principle-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 16px 28px rgba(11, 34, 80, 0.08);
}

.step {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-600);
  display: grid;
  place-items: center;
  font-weight: 600;
  margin-bottom: 16px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.callout {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue-600);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.trust-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.trust-item {
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 20px;
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(11, 34, 80, 0.08);
}

.team-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.team-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.team-header h3 {
  margin: 0;
}

.team-role {
  font-weight: 600;
  color: var(--ink-500);
  margin-bottom: 6px;
}

.linkedin {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 2px;
  font-weight: 600;
  color: var(--blue-600);
  line-height: 0;
}

.linkedin img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.contact {
  position: relative;
  padding-bottom: 64px;
  background: linear-gradient(
    180deg,
    rgba(245, 248, 253, 0) 0%,
    rgba(244, 248, 255, 0.2) 30%,
    rgba(236, 244, 255, 0.44) 58%,
    rgba(228, 239, 253, 0.66) 82%,
    rgba(220, 233, 251, 0.82) 100%
  );
}

.contact::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -96px;
  height: 96px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(245, 248, 253, 0), rgba(244, 248, 255, 0.28));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 20px;
}

.contact-content {
  max-width: 760px;
  text-align: center;
}

.contact-content > p:last-of-type {
  font-size: 1.16rem;
  margin-bottom: 0;
}

.contact-action {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}

.contact-button {
  padding: 13px 26px;
  font-size: 1rem;
}

.muted {
  color: var(--ink-500);
}

.site-footer {
  background: #0b1c33;
  color: #dce6f5;
  padding: 64px 0 70px;
}

.site-footer h3 {
  color: #ffffff;
}

.site-footer p {
  color: #c6d4ea;
}

.site-footer a {
  color: #ffffff;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--blue-200);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  align-items: start;
}

.footer-grid > div {
  min-width: 0;
}

.footer-company p {
  margin: 0;
}

.footer-company strong {
  color: #ffffff;
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-legal {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(198, 212, 234, 0.25);
  display: flex;
  justify-content: flex-end;
}

.footer-legal-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal-link {
  font-size: 0.88rem;
  color: #b6c5dd;
  opacity: 0.9;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-note {
  margin-top: 12px;
  color: #c6d4ea;
}

.legal-main {
  padding-top: 20px;
}

.legal-content {
  max-width: 860px;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.legal-content h1 {
  font-size: clamp(1.7rem, 7vw, 2.4rem);
  hyphens: auto;
}

.legal-content p,
.legal-content li,
.legal-content a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.legal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 16px 30px rgba(11, 34, 80, 0.08);
}

.legal-card h2 {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-card h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-card h3 {
  margin-top: 18px;
  margin-bottom: 8px;
}

.legal-card ul {
  margin: 0 0 16px 20px;
  padding: 0;
}

.legal-card li {
  margin-bottom: 6px;
  color: var(--ink-600);
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--blue-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-plain {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.legal-plain h2 {
  margin-top: 30px;
}

.legal-plain h2:first-of-type {
  margin-top: 0;
}

.legal-plain h3 {
  margin-top: 18px;
  margin-bottom: 8px;
}

.legal-plain ul {
  margin: 0 0 16px 20px;
  padding: 0;
}

.legal-plain li {
  margin-bottom: 6px;
  color: var(--ink-600);
}

.legal-plain p:last-child {
  margin-bottom: 0;
}

.legal-plain a {
  color: var(--blue-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-back {
  margin-top: 24px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(12px);
  animation: fade-up 0.7s ease forwards;
  animation-delay: var(--delay, 0s);
}

.delay-1 {
  --delay: 0.08s;
}

.delay-2 {
  --delay: 0.18s;
}

.delay-3 {
  --delay: 0.28s;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  :root {
    --fold-offset: 230px;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 90px 0 70px;
  }

  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .nav-links {
    margin-left: auto;
    flex-wrap: nowrap;
    gap: 10px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1120px, 100% - 32px);
  }

  .nav {
    padding: 14px 0;
  }

  .logo img {
    width: 142px;
    height: auto;
  }

  .nav-links {
    width: auto;
    justify-content: flex-end;
  }

  .nav-links .cta-link {
    font-size: 1rem;
    padding: 5px 12px;
  }

  .hero-notes {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    justify-content: flex-start;
  }

}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .button {
    transition: none;
  }
}
