/* ============================================
   Font Face
   ============================================ */
@font-face {
  font-family: 'Atyp Display';
  src: url('fonts/AtypDisplay-Medium.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   Reset & Base
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --color-bg: #FFFFFF;
  --color-white: #ffffff;
  --color-dark: #1C2F56;
  --color-dark-card: #1c1c30;
  --color-text: #1C2F56;
  --color-text-muted: #6b7280;
  --color-accent: #4f6ef7;
  --color-accent-light: #c5d0f6;
  --font: 'Atyp Display', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}

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

ul {
  list-style: none;
}

/* ============================================
   Header — Liquid Glass Pill
   ============================================ */
.header {
  position: fixed;
  top: 50px;
  left: max(32px, calc((100vw - 1280px) / 2 + 32px));
  z-index: 100;
}

/* ── Glass wrapper — matches .liquidGlass-wrapper exactly ── */
.header__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17.99px;
  width: 536px;
  height: 52.17px;
  padding: 10.79px 30.03px;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2), opacity 0.2s ease;
}

/* Pill radius on wrapper + all child divs (reference pattern) */
.header__nav,
.header__nav > div {
  border-radius: 200px;
}

/* Layer 1 — .liquidGlass-effect: backdrop blur + SVG displacement */
.header__glass-effect {
  position: absolute;
  z-index: 0;
  inset: 0;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  filter: url(#glass-distortion);
  overflow: hidden;
}

/* Layer 2 — .liquidGlass-tint: semi-transparent white */
.header__glass-tint {
  z-index: 1;
  position: absolute;
  inset: 0;
  background: #D7DFEE66;
}

/* Layer 3 — .liquidGlass-shine: inset edge light */
.header__glass-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.5),
    inset -1px -1px 1px 1px rgba(255, 255, 255, 0.5);
}

/* Reset nav pseudos */
.header__nav::before,
.header__nav::after {
  display: none;
}

/* Scrolled state */
.header--scrolled .header__glass-tint {
  background: #D7DFEE66;
}
.header--scrolled .header__glass-effect {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.header--scrolled .header__nav {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.25), 0 0 24px rgba(0, 0, 0, 0.12);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  position: relative;
  z-index: 5;
  font-size: 15px;
  color: #1C2F56;
  padding-right: 0;
  border-right: none;
  margin-right: 0;
  transition: var(--transition);
  white-space: nowrap;
}

.header__logo:hover {
  opacity: 0.8;
}

.header__logo-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  overflow: hidden;
}

.header__logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header__logo-text {
  font-family: -apple-system, 'SF Pro Display', BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 18.71px;
  line-height: 90%;
  letter-spacing: -0.02em;
  vertical-align: middle;
}

.header__links {
  display: flex;
  align-items: center;
  gap: 17.99px;
  position: relative;
  z-index: 5;
}

.header__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 11.69px;
  font-weight: 400;
  line-height: 90%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #1C2F56;
  border-radius: 100px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.header__link-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.header__link-text {
  position: relative;
  top: 1px;
}

.header__link:hover .header__link-icon,
.header__link--active .header__link-icon {
  opacity: 1;
}

.header__link:hover {
  color: #1C2F56;
  background: rgba(0, 0, 0, 0.04);
}

.header__link--active {
  color: #1C2F56;
  background: #93AFE240;
  font-weight: 600;
}

/* ============================================
   Dashboard CTA (inside the dark card)
   ============================================ */
.dashboard__cta {
  position: absolute;
  top: 30px;
  right: 24px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  width: 175.55px;
  height: 51px;
  padding: 10.55px 30.78px;
  gap: 17.59px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 90%;
  letter-spacing: 0;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 70px;
  box-sizing: border-box;
  transition: var(--transition);
  letter-spacing: -0.01em;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.dashboard__cta:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dashboard__cta:active {
  transform: translateY(0);
}

.dashboard__cta-short {
  display: none;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  padding: 140px 32px 60px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.hero::before {
  display: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero__content {
  position: relative;
  min-height: 592px;
}

.hero__content::before {
  content: '';
  position: absolute;
  top: -90px;
  left: 0;
  width: 688px;
  height: 542px;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(28, 47, 86, 0.07) 0,
      rgba(28, 47, 86, 0.07) 1px,
      transparent 1px,
      transparent 96px
    );
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__title {
  font-family: 'Atyp Display', sans-serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 121%;
  letter-spacing: 0;
  color: #1C2F56;
  white-space: pre-line;
  max-width: 593px;
}

.hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: #1C2F56;
  max-width: 420px;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 219px;
  height: 52px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 90%;
  letter-spacing: 0;
  color: var(--color-white);
  background: #1C2F56;
  border-radius: 40px;
  transition: var(--transition);
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.hero__button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 110, 247, 0.3), transparent);
  opacity: 0;
  transition: var(--transition);
}

.hero__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(28, 47, 86, 0.35);
}

.hero__button:hover::before {
  opacity: 1;
}

.hero__button:active {
  transform: translateY(0);
}

/* ============================================
   Dashboard Card
   ============================================ */
.hero__dashboard {
  position: absolute;
  top: -90px;
  left: 688px;
  perspective: 1000px;
}

.hero__dashboard-inner {
  position: relative;
  background: linear-gradient(180deg, #000000 0%, #060D1A 100%);
  border-radius: 20px;
  padding: 40px 28px 28px;
  width: 542px;
  height: 542px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__dashboard-inner:hover {
  transform: translateY(-4px);
}

/* Blue glow on upper-right of dashboard */
.hero__dashboard-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(30, 64, 130, 0.35) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Decorative circles inside dashboard */
/* Frosted glass semi-circles */
.hero__semicircle {
  position: absolute;
  border-radius: 50%;
  width: 620px;
  height: 620px;
  pointer-events: none;
  z-index: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 40px rgba(0, 0, 0, 0.1);
}

.hero__semicircle--left {
  bottom: -290px;
  left: -200px;
  z-index: 1;
  background: rgba(217, 217, 217, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero__semicircle--right {
  bottom: -200px;
  right: -340px;
  z-index: 0;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  box-shadow: none;
}

.hero__cards {
  display: flex;
  gap: 16px;
  margin-top: auto;
  position: relative;
  z-index: 2;
  padding-top: 0;
}

.hero__card {
  width: 236px;
  height: 240px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  box-sizing: border-box;
  justify-content: space-between;
  overflow: hidden;
}

.hero__card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.hero__chart {
  height: 70px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.hero__card--report {
}

.hero__chart-svg {
  width: 100%;
  height: 100%;
}

.hero__card-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}

.hero__card-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}

.hero__card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 10.55px 30.78px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 580px;
  width: 202px;
  height: 30px;
  transition: var(--transition);
  margin-top: auto;
  box-sizing: border-box;
}

.hero__card-link:hover {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.22);
}

.hero__card-link span {
  font-size: 16px;
  transition: transform var(--transition);
}

.hero__card-link:hover span {
  transform: translateX(3px);
}


/* ============================================
   Entrance Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Opacity-only fade — transform kills backdrop-filter */
@keyframes fadeInOnly {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero__title {
  animation: fadeInUp 0.7s ease-out 0.15s both;
}

.hero__subtitle {
  animation: fadeInUp 0.7s ease-out 0.3s both;
}

.hero__button {
  animation: fadeInUp 0.7s ease-out 0.45s both;
}

.hero__dashboard {
  animation: fadeInOnly 0.8s ease-out 0.3s both;
}


/* ============================================
   Chart line animations
   ============================================ */

/* Continuous subtle float for the chart */
@keyframes chartFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-2px); }
}

/* Prediction dashes marching */
@keyframes marchDash {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -44; }
}

.chart-line--main {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: none;
}

.chart-line--predict {
  stroke-dasharray: 12 10;
  opacity: 0;
  animation: none;
}

.hero__chart {
  animation: chartFloat 5s ease-in-out 1.6s infinite;
}

/* ============================================
   Founders Section
   ============================================ */
.founders {
  padding: 100px 32px 120px;
  max-width: 1280px;
  margin: 0 auto;
}

.founders__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 200px;
  align-items: start;
}

.founders__left {
  position: sticky;
  top: 110px;
  align-self: start;
}

.founders__label {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.01em;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.founders__heading {
  font-family: 'Atyp Display', sans-serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 121%;
  letter-spacing: 0;
  color: #1C2F56;
}

.founders__heading--accent {
  color: #3B65BA;
}

.founders__right {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 529px;
}

.founders__photos {
  display: flex;
  gap: 19px;
}

.founders__photo {
  width: 255px;
  height: 349px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 12px 40px rgba(0, 0, 0, 0.06);
}

.founders__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.founders__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 529px;
}

.founders__text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 190%;
  letter-spacing: 0.01em;
  color: var(--color-text);
}

.founders__text--bold {
  font-weight: 600 !important;
  color: var(--color-dark) !important;
}

/* ============================================
   Predictive Model Section
   ============================================ */
.model {
  padding: 100px 32px 120px;
  max-width: 1280px;
  margin: 0 auto;
}

.model__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 205px;
  align-items: start;
}

.model__left {
  position: sticky;
  top: 110px;
  align-self: start;
}

.model__label {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.01em;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.model__heading {
  font-family: 'Atyp Display', sans-serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 121%;
  letter-spacing: 0;
  color: #1C2F56;
}

.model__heading--accent {
  color: #3B65BA;
}

.model__right {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 475px;
}

.model__chart {
  width: 475px;
  height: 349px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.model__chart svg {
  width: 100%;
  height: auto;
  display: block;
}

.model__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 475px;
}

.model__text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 190%;
  letter-spacing: 0.01em;
  color: var(--color-text);
}

/* Model chart animations */
@keyframes modelDrawLine {
  from { stroke-dashoffset: 800; }
  to   { stroke-dashoffset: 0; }
}

@keyframes modelDrawPredict {
  from { stroke-dashoffset: 200; }
  to   { stroke-dashoffset: 0; }
}

@keyframes modelMarchDash {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -36; }
}

@keyframes modelDotPop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes modelBandReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes modelGridFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.model__line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
}

.model__predict {
  stroke-dasharray: 10 8;
  stroke-dashoffset: 200;
  opacity: 0;
}

.model__dots circle {
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  transform-box: fill-box;
}

.model__band {
  opacity: 0;
}

.model__band-line {
  opacity: 0;
}

.model__grid {
  opacity: 0;
}

/* Animated state — triggered by JS IntersectionObserver */
.model__chart.is-animated .model__grid {
  animation: modelGridFade 0.4s ease-out forwards;
}

.model__chart.is-animated .model__band {
  animation: modelBandReveal 0.6s ease-out 0.3s forwards;
}

.model__chart.is-animated .model__band-line {
  animation: modelBandReveal 0.6s ease-out 0.5s forwards;
}

.model__chart.is-animated .model__line {
  animation: modelDrawLine 1.2s ease-out 0.4s forwards;
}

/* Dots appear as line draws — staggered per dot pair */
.model__chart.is-animated .model__dots circle:nth-child(1),
.model__chart.is-animated .model__dots circle:nth-child(2) {
  animation: modelDotPop 0.35s ease-out 0.55s forwards;
  transform-origin: center;
  transform-box: fill-box;
}
.model__chart.is-animated .model__dots circle:nth-child(3),
.model__chart.is-animated .model__dots circle:nth-child(4) {
  animation: modelDotPop 0.35s ease-out 0.75s forwards;
  transform-origin: center;
  transform-box: fill-box;
}
.model__chart.is-animated .model__dots circle:nth-child(5),
.model__chart.is-animated .model__dots circle:nth-child(6) {
  animation: modelDotPop 0.35s ease-out 0.95s forwards;
  transform-origin: center;
  transform-box: fill-box;
}
.model__chart.is-animated .model__dots circle:nth-child(7),
.model__chart.is-animated .model__dots circle:nth-child(8) {
  animation: modelDotPop 0.35s ease-out 1.15s forwards;
  transform-origin: center;
  transform-box: fill-box;
}
.model__chart.is-animated .model__dots circle:nth-child(9),
.model__chart.is-animated .model__dots circle:nth-child(10) {
  animation: modelDotPop 0.35s ease-out 1.35s forwards;
  transform-origin: center;
  transform-box: fill-box;
}

.model__chart.is-animated .model__predict {
  animation: modelDrawPredict 0.6s ease-out 1.5s forwards, modelBandReveal 0.3s ease-out 1.5s forwards;
}

/* Prediction endpoint dot appears after prediction line */
.model__chart.is-animated .model__dots circle:nth-child(11),
.model__chart.is-animated .model__dots circle:nth-child(12) {
  animation: modelDotPop 0.35s ease-out 1.9s forwards;
  transform-origin: center;
  transform-box: fill-box;
}

/* After all drawn, march the prediction dashes */
.model__chart.is-animated.is-marching .model__predict {
  stroke-dashoffset: 0;
  opacity: 1;
  animation: modelMarchDash 1.2s linear infinite;
}

/* ============================================
   Flagship Products Section
   ============================================ */
.products {
  padding: 100px 32px 120px;
  max-width: 1280px;
  margin: 0 auto;
}

.products__heading {
  font-family: 'Atyp Display', sans-serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 121%;
  letter-spacing: 0;
  color: #1C2F56;
  margin-bottom: 48px;
}

.products__grid {
  display: grid;
  grid-template-columns: 625px 625px;
  gap: 32px;
  margin-left: -31px;
  background: transparent;
}

.products__spacer {
  display: none;
}

.products__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 625px;
  height: 349px;
  transition: var(--transition);
  cursor: pointer;
}

.products__card:hover {
  transform: translateY(-4px);
}

/* Background image — fills entire card */
.products__card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.products__card:hover .products__card-bg {
  transform: scale(1.03);
}

/* Gradient overlay for text readability */
.products__card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Text body — positioned at bottom */
.products__card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 32px;
}

/* Light card (FX) */
.products__card--light {
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.02),
    0 8px 32px rgba(0, 0, 0, 0.04);
}

.products__card--light:hover {
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 16px 48px rgba(0, 0, 0, 0.08);
}

.products__card--light .products__card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(240, 244, 250, 0) 60%,
    rgba(240, 244, 250, 0.25) 85%,
    rgba(240, 244, 250, 0.4) 100%
  );
}

.products__card--light .products__card-title {
  color: #1C2F56;
}

.products__card--light .products__card-text {
  color: #1C2F56;
}

/* Dark card (Crypto) */
.products__card--dark {
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.15);
}

.products__card--dark:hover {
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.15),
    0 16px 48px rgba(0, 0, 0, 0.25);
}

.products__card--dark .products__card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(10, 15, 35, 0) 60%,
    rgba(10, 15, 35, 0.25) 85%,
    rgba(10, 15, 35, 0.4) 100%
  );
}

.products__card--dark .products__card-title {
  color: #ffffff;
}

.products__card--dark .products__card-text {
  color: #ffffff;
}

/* Card text */
.products__card-title {
  font-family: 'Atyp Display', sans-serif;
  font-size: 34.72px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.products__card-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 190%;
  letter-spacing: 0.01em;
}

/* ============================================
   Approach Section
   ============================================ */
.approach {
  padding: 100px 32px 120px;
  max-width: 1280px;
  margin: 0 auto;
}

.approach__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.approach__heading {
  font-family: 'Atyp Display', sans-serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 121%;
  letter-spacing: 0;
  color: #1C2F56;
  margin-bottom: 40px;
}

.approach__heading-accent {
  color: #3B65BA;
}

.approach__text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 190%;
  letter-spacing: 0.01em;
  color: var(--color-text);
  max-width: 520px;
}

.approach__right {
  display: flex;
  justify-content: center;
}

.approach__diagram {
  width: 563px;
  height: 386px;
}

.approach__diagram-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid #256CFA40;
  border-radius: 20px;
}

.approach__svg {
  width: 100%;
  height: auto;
  display: block;
}

.approach__orbit {
  opacity: 0.7;
}

.approach__core {
  filter: drop-shadow(0 4px 20px rgba(28, 47, 86, 0.25));
}

/* ============================================
   Clients Section
   ============================================ */
.clients {
  padding: 100px 32px 120px;
  max-width: 1280px;
  margin: 0 auto;
}

.clients__heading {
  font-family: 'Atyp Display', sans-serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 121%;
  letter-spacing: 0;
  color: #1C2F56;
  margin-bottom: 64px;
}

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

/* Vertical dividers between columns */
.clients__card {
  padding: 0 40px;
  position: relative;
}

/* Right border for column 1 and 2 */
.clients__card:nth-child(3n+1),
.clients__card:nth-child(3n+2) {
  border-right: 1px solid #E0E5EE;
}

/* First column — no left padding */
.clients__card:nth-child(3n+1) {
  padding-left: 0;
}

/* Last column — no right padding */
.clients__card:nth-child(3n) {
  padding-right: 0;
}

.clients__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.clients__icon svg {
  width: 100%;
  height: 100%;
}

.clients__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.clients__card-title {
  font-family: 'Atyp Display', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0;
  color: #1C2F56;
  margin-bottom: 16px;
}

.clients__card-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.01em;
  color: var(--color-text);
}

/* ============================================
   Certifications Section
   ============================================ */
.certs {
  background: #EFF5FF;
  padding: 100px 32px 120px;
}

.certs__content {
  max-width: 1280px;
  margin: 0 auto;
}

.certs__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}

.certs__heading {
  font-family: 'Atyp Display', sans-serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 121%;
  letter-spacing: 0;
  color: #1C2F56;
}

.certs__text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 190%;
  letter-spacing: 0.01em;
  color: var(--color-text);
  padding-top: 8px;
}

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

.certs__card {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 280px;
  justify-content: center;
  gap: 32px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.certs__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.certs__card-logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certs__card-logo img {
  max-height: 100%;
  max-width: 200px;
  object-fit: contain;
}

.certs__card-text {
  font-family: 'Inter', sans-serif;
  font-size: 16.03px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #1C2F56;
}

/* ============================================
   Team Section
   ============================================ */
.team {
  padding: 100px 32px 120px;
  max-width: 1280px;
  margin: 0 auto;
}

.team__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.team__heading {
  font-family: 'Atyp Display', sans-serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 121%;
  letter-spacing: 0;
  color: #1C2F56;
}

.team__actions {
  display: flex;
  gap: 16px;
}

.team__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.team__btn--primary {
  background: #1C2F56;
  color: #ffffff;
}

.team__btn--primary:hover {
  background: #2a4070;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28, 47, 86, 0.3);
}

.team__btn--secondary {
  background: #F0F3F8;
  color: #1C2F56;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.team__btn--secondary:hover {
  background: #E4E9F2;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

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

.team__card-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.team__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team__card-photo:hover img {
  transform: scale(1.04);
}

.team__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.25) 65%,
    rgba(0, 0, 0, 0.6) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.team__card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}

.team__card-name {
  font-family: 'Atyp Display', sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 121%;
  color: #ffffff;
  margin-bottom: 6px;
}

.team__card-role {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================
   Press / Articles Carousel
   ============================================ */
.press {
  padding: 100px 0 120px;
}

.press__heading {
  padding-left: max(32px, calc((100vw - 1280px) / 2 + 32px));
  font-family: 'Atyp Display', sans-serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 121%;
  letter-spacing: 0;
  color: #1C2F56;
  margin-bottom: 48px;
}

.press__carousel-wrapper {
  position: relative;
}

.press__carousel {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-left: max(32px, calc((100vw - 1280px) / 2 + 32px));
  padding-right: 60px;
  padding-top: 8px;
  padding-bottom: 8px;

  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.press__carousel::-webkit-scrollbar {
  display: none;
}

.press__card {
  flex: 0 0 420px;
  border: 1px solid #D0D8E8;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  background: #ffffff;
}

.press__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.press__card-image {
  background: #E4ECFA;
  height: 220px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
}

.press__card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 149.5px;
  height: 44.59px;
  padding: 9.23px 26.91px;
  gap: 15.38px;
  background: #ffffff;
  color: #1C2F56;
  font-family: 'Inter', sans-serif;
  font-size: 16.67px;
  font-weight: 500;
  line-height: 90%;
  letter-spacing: 0;
  border-radius: 61.2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.press__card-body {
  padding: 28px 28px 32px;
}

.press__card-title {
  font-family: 'Atyp Display', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0;
  color: #1C2F56;
  margin-bottom: 12px;
}

.press__card-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: 0.01em;
  color: var(--color-text);
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 428px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('images/cta-waves.png') center / cover fixed;
}

.cta__bg-img {
  display: none;
}

.cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: none;
}

.cta__heading {
  font-family: 'Atyp Display', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px;
}

.cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4.28px;
  padding: 21.41px 42.83px;
  width: 256.66px;
  height: 55.83px;
  background: #ffffff;
  color: #1C2F56;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 40.22px;
  text-decoration: none;
  transition: var(--transition);
}

.cta__button:hover {
  background: #f0f4fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
  padding: 100px 32px 120px;
  max-width: 1280px;
  margin: 0 auto;
}

.faq__heading {
  font-family: 'Atyp Display', sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0;
  color: #1C2F56;
  margin-bottom: 48px;
  width: 474px;
}

.faq__heading--mobile {
  display: none;
}

.faq__list {
  background: #EFF5FF;
  border-radius: 24px;
  padding: 8px 0;
}

.faq__item {
  border-bottom: 1px solid #E0E5EE;
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px 36px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 190%;
  letter-spacing: 0.01em;
  color: #1C2F56;
  transition: var(--transition);
}

.faq__chevron {
  flex-shrink: 0;
  color: #8B9ABB;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(180deg);
}

.faq__item.is-open .faq__chevron {
  transform: rotate(0deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  padding: 0 36px;
}

.faq__item.is-open .faq__answer {
  opacity: 1;
  padding: 0 36px 28px;
}

.faq__answer p {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 190%;
  letter-spacing: 0.01em;
  color: #1C2F5685;
  max-width: 1060px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  border-top: none;
  padding: 24px 32px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 24px;
}

.footer__logo-img {
  width: 59.95px;
  height: 59.95px;
  border-radius: 16.26px;
}

.footer__logo-text {
  font-family: -apple-system, 'SF Pro Display', sans-serif;
  font-size: 37.44px;
  font-weight: 600;
  line-height: 90%;
  letter-spacing: -0.02em;
  color: #1C2F56;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 190%;
  letter-spacing: 0.01em;
  color: var(--color-text);
}

.footer__contact-links {
  display: flex;
  gap: 10px;
}

.footer__contact-link {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #3B65BA;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.footer__contact-link:hover {
  color: #1C2F56;
}

.footer__contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  background: #F0F4FA;
  color: #1C2F56;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.footer__contact-pill svg {
  color: #3B65BA;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer__contact-pill:hover {
  background: #3B65BA;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(59, 101, 186, 0.3);
}

.footer__contact-pill:hover svg {
  color: #ffffff;
  transform: scale(1.15);
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EFF5FF;
  color: #1C2F56;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.footer__social:hover {
  background: #3B65BA;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(59, 101, 186, 0.3);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom-left {
  visibility: hidden;
}

.footer__copy {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
}

/* ============================================
   Contact Modal
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  transition: visibility 0s 0.5s;
}

.modal.is-open {
  visibility: visible;
  transition: visibility 0s 0s;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 47, 86, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.modal.is-open .modal__backdrop {
  background: rgba(28, 47, 86, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 1;
}

.modal__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  margin: 20px;
  border-radius: 24px;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.modal.is-open .modal__container {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal__card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px 32px;
  box-shadow:
    0 24px 80px rgba(28, 47, 86, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.08);
  position: relative;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #F0F4FA;
  border-radius: 12px;
  color: #8B9ABB;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.modal__close:hover {
  background: #E0E5EE;
  color: #1C2F56;
  transform: rotate(90deg);
}

.modal__header {
  text-align: center;
  margin-bottom: 20px;
}

.modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

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

.modal__title {
  font-family: 'Atyp Display', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #1C2F56;
  margin-bottom: 8px;
}

.modal__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #8B9ABB;
  line-height: 1.5;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal__label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1C2F56;
}

.modal__required {
  color: #3B65BA;
}

.modal__error {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #E53935;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.25s ease, max-height 0.25s ease;
  pointer-events: none;
}

.modal__field.has-error .modal__error {
  opacity: 1;
  max-height: 24px;
}

.modal__field.has-error .modal__input {
  border-color: #E53935;
  background: #FEF2F2;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.08);
}

.modal__field.has-error .modal__input:focus {
  border-color: #E53935;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.15);
}

.modal__field.has-error .modal__label {
  color: #E53935;
}

.modal__input {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  border: 1.5px solid #E0E5EE;
  border-radius: 14px;
  background: #FAFBFD;
  color: #1C2F56;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.modal__input::placeholder {
  color: #B0BCCE;
}

.modal__input:focus {
  border-color: #3B65BA;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(59, 101, 186, 0.1);
}

.modal__textarea {
  resize: vertical;
  min-height: 44px;
}

.modal__field--message {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; max-height: 0; }
  to { opacity: 1; max-height: 120px; }
}

.modal__field--message .modal__textarea {
  min-height: 50px;
  rows: 2;
}

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

.modal__chip {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid #D0D8E8;
  background: #ffffff;
  color: #1C2F56;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.modal__chip:hover {
  border-color: #3B65BA;
  background: #F0F4FA;
}

.modal__chip.is-active {
  background: #3B65BA;
  color: #ffffff;
  border-color: #3B65BA;
}

.modal__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: #1C2F56;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 4px;
}

.modal__submit:hover {
  background: #2a4070;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28, 47, 86, 0.3);
}

.modal__submit:active {
  transform: translateY(0);
}

.modal__submit-arrow {
  transition: transform 0.3s ease;
}

.modal__submit:hover .modal__submit-arrow {
  transform: translateX(4px);
}

.modal__channels {
  padding-top: 8px;
  text-align: center;
}

.modal__channels-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #8B9ABB;
  display: block;
  margin-bottom: 14px;
}

.modal__channels-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.modal__channel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  background: #F0F4FA;
  color: #1C2F56;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.modal__channel svg {
  color: #3B65BA;
  transition: color 0.3s ease, transform 0.3s ease;
}

.modal__channel:hover {
  background: #3B65BA;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(59, 101, 186, 0.3);
}

.modal__channel:hover svg {
  color: #ffffff;
  transform: scale(1.15);
}

/* Success state */
.modal__success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px 40px;
  min-height: 320px;
}

.modal__success.is-visible {
  display: flex;
}

.modal__success-logo {
  opacity: 0;
  animation: successFadeIn 0.5s ease 0.1s forwards;
  margin-bottom: 24px;
}

.modal__success-logo img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.modal__success-check {
  margin-bottom: 28px;
  opacity: 0;
  animation: successFadeIn 0.5s ease 0.35s forwards;
}

.modal__success-circle {
  stroke-dasharray: 170;
  stroke-dashoffset: 170;
  animation: successCircle 0.7s ease 0.5s forwards;
}

.modal__success-tick {
  stroke-dasharray: 32;
  stroke-dashoffset: 32;
  animation: successTick 0.4s ease 1s forwards;
}

.modal__success-title {
  font-family: 'Atyp Display', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #1C2F56;
  margin-bottom: 10px;
  opacity: 0;
  animation: successSlideUp 0.5s ease 0.7s forwards;
}

.modal__success-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 170%;
  color: #8B9ABB;
  opacity: 0;
  animation: successSlideUp 0.5s ease 0.9s forwards;
}

@keyframes successFadeIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes successSlideUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes successCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes successTick {
  to { stroke-dashoffset: 0; }
}

/* ============================================
   Hamburger Menu Button (hidden by default)
   ============================================ */
.header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  transition: background 0.2s ease;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  z-index: 5;
}

.header__burger:hover {
  background: rgba(0, 0, 0, 0.04);
}

.header__burger-line {
  display: block;
  width: 23px;
  height: 2.5px;
  background: #1C2F56;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header__burger-line + .header__burger-line {
  margin-top: 6px;
}

/* Animate to X when open */
.header__burger.is-open .header__burger-line:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.header__burger.is-open .header__burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__burger.is-open .header__burger-line:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ============================================
   Mobile Dropdown Menu
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s 0.35s;
}

.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s 0s;
}

/* Hide entire header when menu is open */
.header.is-menu-hidden {
  opacity: 0 !important;
  pointer-events: none;
  transition: none;
}

/* Bubbly reappear — start fully rendered, just bounce */
.header.is-menu-reappearing {
  visibility: visible;
  pointer-events: auto;
  animation: navBubbleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes navBubbleIn {
  0% {
    transform: translateX(-50%) scale(1);
  }
  30% {
    transform: translateX(-50%) scale(1.06);
  }
  60% {
    transform: translateX(-50%) scale(0.97);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 47, 86, 0.18);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.2s ease-in;
  pointer-events: none;
}

.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease-out;
}

.mobile-menu__panel {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%) scale(0.94);
  transform-origin: top center;
  width: calc(100% - 48px);
  max-width: 700px;
  height: auto;
  background: transparent;
  border-radius: 20px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  transition:
    visibility 0s 0.2s,
    transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

@media (max-width: 640px) {
  .mobile-menu__panel {
    top: 14px;
    width: calc(100% - 32px);
    max-width: 600px;
  }
}

/* Glass layers for menu panel — same as header */
.mobile-menu__glass-effect {
  position: absolute;
  z-index: 0;
  inset: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  filter: none;
  overflow: hidden;
  border-radius: 20px;
}

.mobile-menu.is-open .mobile-menu__glass-effect {
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  filter: url(#glass-distortion);
}

.mobile-menu__glass-tint {
  z-index: 1;
  position: absolute;
  inset: 0;
  background: #D7DFEE66;
  border-radius: 20px;
}

.mobile-menu__glass-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-menu__header,
.mobile-menu__nav,
.mobile-menu__cta,
.mobile-menu__footer {
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.is-open .mobile-menu__panel {
  visibility: visible;
  transform: translateX(-50%) scale(1);
  box-shadow: none;
  transition:
    visibility 0s 0s,
    transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-menu.is-open .mobile-menu__header,
.mobile-menu.is-open .mobile-menu__nav,
.mobile-menu.is-open .mobile-menu__cta,
.mobile-menu.is-open .mobile-menu__footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu__header {
  transition-delay: 0.06s;
}
.mobile-menu.is-open .mobile-menu__nav {
  transition-delay: 0.1s;
}
.mobile-menu.is-open .mobile-menu__cta {
  transition-delay: 0.15s;
}
.mobile-menu.is-open .mobile-menu__footer {
  transition-delay: 0.2s;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 24px;
}

@media (max-width: 640px) {
  .mobile-menu__header {
    padding: 10px 8px 12px 18px;
  }
}

.mobile-menu__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: -apple-system, 'SF Pro Display', BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 18.71px;
  color: #1C2F56;
}

@media (max-width: 640px) {
  .mobile-menu__logo {
    font-size: 17.26px;
  }
}

.mobile-menu__logo img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  cursor: pointer;
  color: #1C2F56;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.mobile-menu__close:hover {
  opacity: 1;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding: 0 14px 16px;
  gap: 8px;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 90%;
  letter-spacing: 0.02em;
  color: #1C2F56;
  border-radius: 200px;
  background: #f2f4f7;
  transition: background 0.2s ease;
}

@media (min-width: 481px) and (max-width: 640px) {
  .mobile-menu__nav {
    padding: 0 16px 18px;
    gap: 10px;
  }

  .mobile-menu__link {
    height: 52px;
    padding: 0 22px;
    font-size: 16px;
    gap: 16px;
  }

  .mobile-menu__link img {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .mobile-menu__nav {
    padding: 0 18px 20px;
    gap: 10px;
  }

  .mobile-menu__link {
    height: 56px;
    padding: 0 24px;
    font-size: 17px;
    gap: 16px;
  }

  .mobile-menu__link img {
    width: 26px;
    height: 26px;
  }
}

.mobile-menu__link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.8;
}

.mobile-menu__link:hover,
.mobile-menu__link.is-active {
  background: #e8ecf2;
}

.mobile-menu__link.is-active img {
  opacity: 1;
}

.mobile-menu__cta {
  padding: 0 12px 16px;
}

.mobile-menu__button {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  background: #1C2F56;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 14px;
  transition: opacity 0.2s ease;
}

.mobile-menu__button:hover {
  opacity: 0.9;
}

.mobile-menu__footer {
  padding: 14px 20px;
  border-top: 1px solid #E0E5EE;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu__socials {
  display: flex;
  gap: 16px;
}

.mobile-menu__socials a {
  color: #1C2F56;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.mobile-menu__socials a:hover {
  opacity: 1;
}

.mobile-menu__copy {
  font-size: 12px;
  color: #8B9ABB;
}

/* ============================================
   Desktop sticky scroll — ensure it works above tablet
   ============================================ */
@media (min-width: 901px) {
  .founders,
  .model {
    overflow: visible !important;
  }

  .founders__content,
  .model__content {
    grid-template-columns: 1fr 1fr;
  }

  .founders__left,
  .model__left {
    position: sticky;
    top: 110px;
    align-self: start;
  }
}

/* ============================================
   Responsive — Tablet (≤ 900px)
   ============================================ */
@media (max-width: 900px) {
  /* -- Header: switch to hamburger on tablet -- */
  .header__links {
    display: none;
  }

  .header__burger {
    display: flex;
    flex-direction: column;
  }

  .header__nav {
    width: auto;
  }

  .header__logo {
    padding-right: 0;
    border-right: none;
    margin-right: 0;
  }

  .header {
    left: 50%;
    top: 16px;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 700px;
  }

  .header__nav {
    width: 100%;
    height: 56px;
    padding: 0 12px 0 24px;
    justify-content: space-between;
  }

  /* -- Global overflow protection -- */
  .hero,
  .founders,
  .model,
  .products,
  .approach {
    overflow: hidden;
  }

  .hero__content::before {
    display: none;
  }

  /* -- Hero -- */
  .hero {
    padding: 100px 24px 32px;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: auto;
  }

  .hero__text {
    text-align: left;
    align-items: flex-start;
    gap: 16px;
  }

  .hero__title {
    font-size: 34px;
    line-height: 110%;
    white-space: normal;
    max-width: 100%;
  }

  .hero__subtitle {
    font-size: 14px;
    line-height: 160%;
    max-width: 100%;
  }

  .hero__button {
    width: auto;
    height: 50px;
    padding: 0 36px;
    font-size: 15px;
    border-radius: 40px;
  }

  .hero__dashboard {
    position: relative;
    top: auto;
    left: auto;
  }

  .hero__dashboard-inner {
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 20px;
  }

  .dashboard__cta {
    width: auto;
    height: auto;
    padding: 10px 22px;
    font-size: 14px;
  }

  .hero__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 60px;
    gap: 12px;
  }

  .hero__card {
    width: auto;
    height: auto;
    min-height: 0;
  }

  .hero__card-link {
    width: 100%;
  }

  /* -- Founders -- */
  .founders {
    padding: 48px 24px 0;
  }

  .founders__content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .founders__left {
    position: static;
  }

  .founders__heading {
    font-size: 30px;
    line-height: 110%;
    text-align: left;
  }

  .founders__right {
    width: 100%;
  }

  .founders__photos {
    flex-direction: row;
    gap: 10px;
  }

  .founders__photo {
    width: 100%;
    flex: 1;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .founders__text {
    width: 100%;
  }

  .founders__text p {
    font-size: 14px;
    line-height: 160%;
  }

  /* -- Model -- */
  .model {
    padding: 48px 24px;
  }

  .model__content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .model__left {
    position: static;
  }

  .model__heading {
    font-size: 30px;
    text-align: left;
  }

  .model__right,
  .model__chart,
  .model__text {
    width: 100%;
  }

  .model__chart {
    height: auto;
    border-radius: 16px;
    border: none;
    overflow: hidden;
  }

  .model__chart svg {
    border-radius: 16px;
    display: block;
  }

  .model__text p {
    font-size: 14px;
    line-height: 160%;
  }

  /* -- Products -- */
  .products {
    padding: 30px 0;
    max-width: 100%;
    overflow: visible;
  }

  .products__heading {
    padding-left: 24px;
    font-size: 30px;
    margin-bottom: 20px;
  }

  .products__grid {
    display: flex;
    gap: 16px;
    margin-left: 0;
    padding-left: 24px;
    scroll-padding-left: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .products__grid::-webkit-scrollbar {
    display: none;
  }

  .products__card {
    flex: 0 0 calc(100% - 60px);
    width: auto;
    height: 240px;
    min-height: unset;
    scroll-snap-align: start;
  }

  .products__card:last-child {
    margin-right: 24px;
  }

  .products__card--light .products__card-overlay {
    background: linear-gradient(
      to bottom,
      rgba(240, 244, 250, 0) 40%,
      rgba(240, 244, 250, 0.55) 70%,
      rgba(240, 244, 250, 0.85) 100%
    );
  }

  .products__card--dark .products__card-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10, 15, 35, 0) 40%,
      rgba(10, 15, 35, 0.6) 70%,
      rgba(10, 15, 35, 0.9) 100%
    );
  }

  /* -- Approach -- */
  .approach {
    padding: 48px 24px;
  }

  .approach__content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .approach__heading {
    font-size: 30px;
    text-align: left;
  }

  .approach__right {
    width: 100%;
  }

  .approach__diagram {
    width: 100%;
    height: auto;
  }

  .approach__diagram-img {
    height: auto;
  }

  /* -- Clients -- */
  .clients {
    padding: 48px 24px;
  }

  .clients__heading {
    font-size: 30px;
    text-align: left;
  }

  .clients__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .clients__card,
  .clients__card:nth-child(odd),
  .clients__card:nth-child(even),
  .clients__card:nth-child(3n+1),
  .clients__card:nth-child(3n+2),
  .clients__card:nth-child(3n) {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    border-right: none !important;
    border-bottom: none !important;
    border-left: 2px solid #6F8CC8A6;
    padding: 0 0 0 16px !important;
    margin-bottom: 40px;
    text-align: left;
  }

  .clients__card:last-child {
    margin-bottom: 0;
  }

  .clients__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0;
    margin-right: 16px;
  }

  .clients__card-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: 0.01em;
    margin-bottom: 0;
  }

  .clients__card-text {
    width: 100%;
    margin-top: 14px;
    font-size: 14px;
  }

  /* -- Certs -- */
  .certs {
    padding: 48px 0;
  }

  .certs__header {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 24px;
  }

  .certs__heading {
    font-size: 30px;
  }

  .certs__grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 20px 8px;
    scroll-padding-left: 20px;
    scroll-snap-type: x mandatory;
  }

  .certs__grid::-webkit-scrollbar {
    display: none;
  }

  .certs__card {
    flex: 0 0 calc(100% - 80px);
    scroll-snap-align: start;
    min-height: auto;
    height: auto;
    padding: 28px;
  }

  .certs__card:last-child {
    margin-right: 20px;
  }

  /* -- Team -- */
  .team {
    padding: 48px 0;
  }

  .team__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 24px;
  }

  .team__heading {
    font-size: 30px;
    text-align: left;
  }

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

  .team__card-photo {
    aspect-ratio: 3 / 4;
  }

  /* -- Press -- */
  .press {
    padding: 48px 0;
  }

  .press__heading {
    font-size: 30px;
    padding: 0 24px;
  }

  .press__card {
    flex: 0 0 280px;
  }

  .press__card-image {
    height: 150px;
  }

  /* -- CTA -- */
  .cta {
    padding: 60px 24px;
    min-height: auto;
  }

  .cta__heading {
    font-size: 28px;
  }

  /* -- FAQ -- */
  .faq {
    padding: 48px 24px;
  }

  .faq__heading {
    font-size: 30px;
  }

  .faq__question {
    padding: 20px 24px;
    font-size: 15px;
  }

  .faq__answer {
    padding: 0 24px 20px;
  }

  /* -- Footer -- */
  .footer__top {
    flex-direction: column;
    gap: 24px;
  }

  .footer__contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ============================================
   Responsive — Large Mobile / Small Tablet (481–640px)
   ============================================ */
@media (min-width: 481px) and (max-width: 640px) {
  .header {
    width: calc(100% - 40px);
  }

  .header__nav {
    height: 54px;
    padding: 0 10px 0 20px;
  }

  .mobile-menu__panel {
    width: calc(100% - 40px);
  }

  .mobile-menu__header {
    padding: 11px 10px 12px 20px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .hero__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero__card {
    min-height: 200px;
  }

  .dashboard__cta {
    position: absolute;
    top: 16px;
    right: 16px;
    width: auto;
    padding: 12px 24px;
    margin-bottom: 0;
    border-radius: 70px;
  }

  .hero__dashboard-inner {
    padding-top: 60px;
  }

  .founders__photos {
    flex-direction: row;
    gap: 10px;
  }

  .founders__photo {
    width: 100%;
    flex: 1;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .founders__heading {
    font-size: 32px;
  }

  .founders__text {
    width: 100% !important;
  }

  .founders__text p {
    font-size: 14px;
  }

  .clients__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .team__card-photo {
    aspect-ratio: 3 / 4;
  }

  .cta__heading {
    font-size: 28px;
  }
}

/* ============================================
   Responsive — Mobile (≤ 640px)
   ============================================ */
@media (max-width: 640px) {
  /* -- Header & Navigation -- */
  .header {
    left: 50%;
    right: auto;
    top: 14px;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 600px;
  }

  .header__nav {
    width: 100%;
    height: 50px;
    border-radius: 200px;
    padding: 0 8px 0 18px;
    justify-content: space-between;
  }

  .header__nav,
  .header__nav > div {
    border-radius: 200px;
  }

  .header__logo-text {
    font-family: -apple-system, 'SF Pro Display', BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 17.26px;
    line-height: 90%;
    letter-spacing: -0.02em;
    vertical-align: middle;
  }

  /* -- Hero Section -- */
  .hero {
    padding: 104px 20px 24px;
  }

  .hero__content {
    min-height: auto;
  }

  .hero__content::before {
    display: block;
    width: 100%;
    height: 40px;
    top: -10px;
    bottom: auto;
    left: 0;
    position: relative;
    flex-shrink: 0;
    order: 1;
    background-image:
      repeating-linear-gradient(
        90deg,
        rgba(28, 47, 86, 0.07) 0,
        rgba(28, 47, 86, 0.07) 1px,
        transparent 1px,
        transparent 25%
      );
    mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
    margin: 0;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero__text {
    text-align: left;
    align-items: flex-start;
    gap: 16px;
    order: 0;
  }

  .hero__title {
    font-family: 'Atyp Display', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 110%;
    letter-spacing: 0;
    vertical-align: middle;
    text-align: left;
    white-space: normal;
  }

  .hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 160%;
    letter-spacing: 0.01em;
    text-align: left;
    max-width: 100%;
  }

  .hero__button {
    width: auto;
    height: 47px;
    padding: 21px 32px;
    white-space: nowrap;
    border-radius: 32px;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 90%;
    letter-spacing: 0;
    vertical-align: middle;
    text-align: center;
    margin-top: 8px;
  }

  .hero__dashboard {
    position: relative;
    top: auto;
    left: -10px;
    margin-top: 0;
    width: calc(100% + 20px);
    order: 2;
  }

  .hero__dashboard-inner {
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 16px;
    border-radius: 20px;
  }

  .hero__cards {
    display: flex;
    flex-direction: column;
    padding-top: 0;
    gap: 12px;
  }

  .hero__card {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 16px;
    border-radius: 14px;
    gap: 10px;
  }

  .hero__chart {
    height: auto;
    max-height: 80px;
  }

  .hero__chart-svg {
    width: 100%;
    height: auto;
    max-height: 80px;
  }

  .hero__card-link {
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
    height: 40px;
    gap: 8px;
  }

  .hero__card-text {
    font-size: 14px;
    line-height: 150%;
  }

  .hero__card-title {
    font-size: 14px;
    line-height: 150%;
  }

  .dashboard__cta {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 129px;
    height: 46px;
    padding: 10.55px 30.78px;
    font-size: 14px;
    text-align: center;
    justify-content: center;
    margin-bottom: 12px;
    margin-left: auto;
    border-radius: 70px;
  }

  .dashboard__cta-full {
    display: none;
  }

  .dashboard__cta-short {
    display: inline;
  }

  .hero__semicircle {
    width: 500px;
    height: 500px;
  }

  .hero__semicircle--left {
    bottom: -220px;
    left: -150px;
  }

  .hero__semicircle--right {
    bottom: -160px;
    right: -230px;
  }


  /* -- Founders Section -- */
  .founders {
    padding: 48px 20px 0;
  }

  .founders__label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 180%;
    letter-spacing: 0.01em;
    text-align: left;
  }

  .founders__heading {
    font-family: 'Atyp Display', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 110%;
    letter-spacing: 0;
    text-align: left;
  }

  .founders {
    overflow: hidden;
  }

  .founders__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .founders__left {
    width: 100%;
  }

  .founders__right {
    width: 100%;
    overflow: hidden;
    gap: 32px;
  }

  .founders__photos {
    flex-direction: row;
    gap: 8px;
  }

  .founders__photo {
    border-radius: 20px;
    width: 100%;
    flex: 1;
    aspect-ratio: auto;
    height: auto;
  }

  .founders__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
  }

  .founders__text {
    width: 100% !important;
  }

  .founders__text p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 160%;
    letter-spacing: 0;
  }

  .founders__text p:last-child {
    text-align: left;
    font-weight: 500;
  }

  /* -- Model Section -- */
  .model {
    padding: 50px 20px;
  }

  .model__label {
    text-align: left;
    font-size: 11px;
  }

  .model__heading {
    font-size: 28px;
    text-align: left;
  }

  .model__right {
    gap: 34.86px;
  }

  .model__chart {
    width: 100%;
    height: auto;
    border-radius: 14.74px;
    border: none;
  }

  .model__chart svg {
    border-radius: 14.74px;
    width: 100%;
    height: auto;
    display: block;
  }

  .model__text p {
    font-size: 13px;
    line-height: 160%;
    letter-spacing: 0;
  }

  /* -- Products Section -- */
  .products {
    padding: 30px 0;
  }

  .products__heading {
    font-size: 28px;
    line-height: 110%;
    letter-spacing: 0;
    margin-bottom: 24px;
    text-align: left;
    padding: 0 20px;
  }

  .products__grid {
    display: flex;
    grid-template-columns: none;
    gap: 20px;
    margin-left: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 0 4px 20px !important;
    scroll-padding-left: 20px;
  }

  .products__grid::-webkit-scrollbar {
    display: none;
  }

  .products__card {
    flex: 0 0 320.92px !important;
    width: 320.92px !important;
    height: 198.93px !important;
    min-height: unset !important;
    border-radius: 11.4px !important;
    scroll-snap-align: start;
    border-width: 0.57px !important;
  }

  .products__card:last-child {
    margin-right: 20px;
  }

  .products__card--light {
    border: none !important;
    box-shadow: none !important;
  }

  .products__card--dark {
    border: none !important;
    box-shadow: none !important;
  }

  .products__card-body {
    padding: 16px;
  }

  .products__card-title {
    font-family: 'Atyp Display', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0;
    margin-bottom: 8px;
  }

  .products__card-text {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 400;
    line-height: 190%;
    letter-spacing: 0.01em;
  }

  .products__card--dark .products__card-text {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 400;
    line-height: 190%;
    letter-spacing: 0.01em;
    color: #ffffff;
  }

  /* -- Approach Section -- */
  .approach {
    padding: 48px 20px;
    overflow: hidden;
  }

  .approach__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .approach__left {
    width: 100%;
    min-width: 0;
  }

  .approach__heading {
    font-size: 28px;
    text-align: left;
  }

  .approach__text {
    font-size: 13px;
    line-height: 160%;
    letter-spacing: 0.01em;
    max-width: 100%;
    width: 100%;
  }

  .approach__right {
    width: 100%;
    overflow: hidden;
  }

  .approach__diagram {
    width: 100%;
    height: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  .approach__diagram-img {
    height: auto;
  }

  .approach__svg {
    min-width: 340px;
  }

  /* -- Clients Section -- */
  .clients {
    padding: 48px 20px;
  }

  .clients__heading {
    font-family: 'Atyp Display', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0;
    text-align: left;
  }

  .clients__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .clients__card,
  .clients__card:nth-child(odd),
  .clients__card:nth-child(even) {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    border-right: none !important;
    border-bottom: none !important;
    padding: 0 0 0 16px !important;
    margin-bottom: 50.3px;
    border-left: 2px solid #6F8CC8A6;
    text-align: left;
  }

  .clients__card:last-child {
    margin-bottom: 0;
  }

  .clients__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0;
    margin-right: 16px;
  }

  .clients__card-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: 0.01em;
    border-left: none;
    padding-left: 0;
    margin-bottom: 0;
  }

  .clients__card-text {
    width: 100%;
    margin-top: 16px;
  }

  .clients__card-text {
    font-size: 14px;
  }

  /* -- Certs Section -- */
  .certs {
    padding: 48px 0;
  }

  .certs__header {
    padding: 0 20px;
  }

  .certs__heading {
    font-family: 'Atyp Display', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0;
    text-align: left;
  }

  .certs__text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.01em;
    max-width: 350px;
    text-align: left;
  }

  .certs__grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 20px 8px;
  }

  .certs__grid::-webkit-scrollbar {
    display: none;
  }

  .certs__card {
    flex: 0 0 250.84px;
    height: 194.6px;
    padding: 24px;
    border-radius: 10.54px;
    border: 0.66px solid #D2E1FF;
    min-height: auto;
  }

  .certs__card-logo {
    height: auto;
  }

  .certs__card-logo img {
    width: 53.23px;
    height: 58.33px;
    max-width: none;
    max-height: none;
  }

  .certs__card:nth-child(2) .certs__card-logo img,
  .certs__card:nth-child(3) .certs__card-logo img {
    width: 179.76px;
    height: 50.59px;
  }

  .certs__card-text {
    font-family: 'Inter', sans-serif;
    font-size: 10.55px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.01em;
    text-align: center;
    color: #1C2F56;
  }

  /* -- Team Section -- */
  .team {
    padding: 48px 0;
    overflow: visible;
  }

  .team__header {
    padding: 0 20px;
    gap: 20px;
    align-items: flex-start;
  }

  .team__heading {
    font-family: 'Atyp Display', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0;
    text-align: left;
  }

  .team__actions {
    display: flex;
    gap: 15px;
  }

  .team__btn {
    text-align: center;
    font-size: 14px;
    height: 46px;
    border-radius: 101.97px;
    padding: 0;
  }

  .team__btn--primary {
    width: 177px;
  }

  .team__btn--secondary {
    width: 130px;
  }

  .team__grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 20px;
    scroll-padding-left: 20px;
  }

  .team__grid::-webkit-scrollbar {
    display: none;
  }

  .team__card {
    flex: 0 0 287px;
    height: 331px;
    border-radius: 14.1px;
    overflow: hidden;
    scroll-snap-align: start;
  }

  .team__card-photo {
    aspect-ratio: auto;
    height: 100%;
    border-radius: 14.1px;
  }

  .team__card-info {
    text-align: left;
    padding: 25px;
  }

  .team__card-name {
    font-family: 'Atyp Display', sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0;
  }

  .team__card-role {
    font-size: 13px;
  }

  /* -- Press Section -- */
  .press {
    padding: 48px 0;
    overflow: hidden;
  }

  .press__content {
    padding-left: 0;
  }

  .press__heading {
    font-family: 'Atyp Display', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0;
    padding: 0 20px;
    margin-bottom: 24px;
    text-align: left;
  }

  .press__carousel {
    padding-left: 20px;
    padding-right: 20px;
  }

  .press__card {
    flex: 0 0 289px;
    height: 323px;
    border-radius: 11.23px;
    border: 0.56px solid #256CFA40;
  }

  .press__card-image {
    height: 140px;
    border-radius: 11.23px 11.23px 0 0;
  }

  .press__card-body {
    padding: 16.84px;
  }

  .press__card-title {
    font-family: 'Atyp Display', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0;
    margin-bottom: 8px;
  }

  .press__card-badge {
    width: 96px;
    height: 28.63px;
    padding: 5.92px 17.28px;
    gap: 9.87px;
    border-radius: 39.3px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #1C2F56;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .press__card-text {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 190%;
    letter-spacing: 0.01em;
  }

  /* -- CTA Section -- */
  .cta {
    width: 390px;
    height: 428px;
    padding: 0;
    min-height: auto;
    margin: 0 auto;
    border-radius: 0;
  }

  .cta__content {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .cta__heading {
    font-family: 'Atyp Display', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0;
    text-align: center;
    max-width: 309px;
    margin: 0 auto 40px;
  }

  .cta__button {
    width: 256.66px;
    height: 55.83px;
    padding: 21.41px 42.83px;
    gap: 4.28px;
    border-radius: 40.22px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 90%;
    letter-spacing: 0;
    color: #1C2F56;
    white-space: nowrap;
  }

  /* -- FAQ Section -- */
  .faq {
    padding: 48px 20px 64px;
  }

  .faq__heading {
    font-family: 'Atyp Display', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0;
    margin-bottom: 24px;
    text-align: left;
    width: auto;
  }

  .faq__heading--desktop {
    display: none;
  }

  .faq__heading--mobile {
    display: inline;
  }

  .faq__list {
    width: 350px;
    border-radius: 25px;
    padding: 50px;
    gap: 40px;
    display: flex;
    flex-direction: column;
  }

  .faq__item {
    border-bottom: none;
  }

  .faq__question {
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 190%;
    letter-spacing: 0.01em;
  }

  .faq__answer {
    padding: 0;
  }

  .faq__item.is-open .faq__answer {
    padding: 8px 0 0;
  }

  .faq__answer p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.01em;
    max-width: 250px;
    color: #1C2F5685;
  }

  .faq__item {
    border-radius: 0;
    border-bottom: none;
    position: relative;
  }

  .faq__question::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      #3B65BA40 15%,
      #3B65BA60 50%,
      #3B65BA40 85%,
      transparent
    );
  }

  .faq__question {
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }

  .faq__chevron {
    width: 24px;
    height: 24px;
    color: #1C2F56;
  }

  .faq__item:last-child .faq__question::after {
    display: block;
  }

  /* -- Footer -- */
  .footer {
    padding: 32px 20px;
    text-align: center;
  }

  .footer__top {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .footer__socials {
    gap: 16px;
    justify-content: center;
  }

  .footer__contact {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .footer__contact-label {
    text-align: center;
  }

  .footer__contact-links {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .footer__contact-pill {
    width: 100%;
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* -- Contact Modal -- */
  .modal {
    align-items: center;
    padding: 16px;
  }

  .modal__container {
    padding: 0;
    margin: 0;
    max-width: 440px;
    max-height: 90vh;
    border-radius: 24px;
    transform: translateY(24px) scale(0.97);
  }

  .modal.is-open .modal__container {
    transform: translateY(0) scale(1);
  }

  .modal__card {
    padding: 24px 20px;
    border-radius: 24px;
    max-height: 88vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .modal__title {
    font-size: 20px;
  }

  .modal__subtitle {
    font-size: 13px;
  }

  .modal__header {
    margin-bottom: 16px;
  }

  .modal__form {
    gap: 10px;
    margin-bottom: 12px;
  }

  .modal__input {
    padding: 10px 14px;
    font-size: 16px;
    border-radius: 12px;
  }

  .modal__textarea {
    font-size: 16px;
    min-height: 40px;
  }

  .modal__submit {
    padding: 14px;
    font-size: 15px;
    border-radius: 14px;
  }

  .modal__channels {
    padding-top: 8px;
  }

  .modal__channels-links {
    flex-direction: row;
    gap: 8px;
  }

  .modal__channel {
    justify-content: center;
    flex: 1;
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* ============================================
   Responsive — Small Mobile (≤ 380px)
   ============================================ */
@media (max-width: 380px) {
  .hero {
    padding: 100px 16px 20px;
  }

  .hero__title {
    font-size: 24px;
  }

  .hero__subtitle {
    font-size: 12px;
  }

  .hero__button {
    height: 44px;
    padding: 18px 28px;
    font-size: 13px;
  }

  .hero__dashboard {
    left: -6px;
    width: calc(100% + 12px);
  }

  .hero__card-text,
  .hero__card-title {
    font-size: 12px;
  }

  .hero__card-link {
    font-size: 12px;
    height: 34px;
    padding: 8px 12px;
  }

  .dashboard__cta {
    padding: 12px 20px;
    font-size: 13px;
  }

  .founders {
    padding: 40px 16px 0;
  }

  .founders__heading {
    font-size: 24px;
  }

  .founders__label {
    font-size: 10px;
  }

  .founders__text p {
    font-size: 12px;
  }

  .model {
    padding: 50px 16px;
  }

  .model__chart {
    border-radius: 12px;
    border: none;
  }

  .model__chart svg {
    border-radius: 12px;
  }

  .model__heading {
    font-size: 24px;
  }

  .model__text p {
    font-size: 13px;
    line-height: 160%;
    letter-spacing: 0;
  }

  .products {
    padding: 40px 0;
  }

  .products__grid {
    padding: 0 0 0 20px !important;
    scroll-padding-left: 20px;
  }

  .products__heading {
    font-size: 24px;
    line-height: 110%;
    letter-spacing: 0;
    padding: 0 16px;
  }

  .products__card {
    flex: 0 0 calc(100vw - 50px);
    height: 174px;
    min-height: unset;
    border-radius: 10px;
  }

  .products__card:last-child {
    margin-right: 20px;
  }

  .products__card-title {
    font-size: 16px;
  }

  .products__card-text {
    font-size: 11px;
  }

  .approach {
    padding: 40px 16px;
  }

  .approach__heading {
    font-size: 24px;
  }

  .approach__text {
    font-size: 13px;
    line-height: 160%;
    letter-spacing: 0.01em;
  }

  .clients {
    padding: 40px 16px;
  }

  .clients__heading {
    font-size: 24px;
  }

  .clients__icon {
    width: 48px;
    height: 48px;
  }

  .clients__card-title {
    font-size: 18px;
  }

  .clients__card-text {
    font-size: 13px;
  }

  .certs__heading {
    font-size: 24px;
  }

  .certs__card {
    flex: 0 0 250.84px;
    height: 194.6px;
    padding: 20px;
    border-radius: 10.54px;
    border: 0.66px solid #D2E1FF;
  }

  .team {
    padding: 40px 0;
    overflow: visible;
  }

  .team__header {
    padding: 0 20px;
  }

  .team__heading {
    font-size: 24px;
  }

  .team__btn {
    font-size: 13px;
    padding: 12px 14px;
  }

  .press__heading {
    font-size: 24px;
  }

  .press__card {
    flex: 0 0 289px;
    height: 323px;
  }

  .cta {
    width: 100%;
    height: 428px;
    margin: 0;
    padding: 0;
  }

  .cta__heading {
    font-size: 20px;
  }

  .cta__button {
    width: 256.66px;
    height: 55.83px;
    font-size: 18px;
  }

  .faq {
    padding: 40px 16px 56px;
  }

  .faq__heading {
    font-size: 24px;
  }

  .faq__question {
    padding: 16px;
    font-size: 14px;
  }

  .faq__answer {
    padding: 0 16px 16px;
  }

  .faq__answer p {
    font-size: 13px;
  }

  .footer {
    padding: 28px 16px;
  }

  .modal__card {
    padding: 20px 16px;
  }

  .modal__channels-links {
    flex-direction: column;
  }

  .modal__channel {
    width: 100%;
  }
}
