@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-mono/GeistMono-Medium.woff2") format("woff2");
}

:root {
  --lime: #d6fd70;
  --neon: #cdfb56;
  --ink: #131313;
  --muted: #7b7b7b;
  --soft: #2f2f2f;
  --gray: #f2f2f2;
  --line: #ececec;
  --blue: #38c6f6;
  --sky: #4aa4ea;
  --font: "Plus Jakarta Sans", sans-serif;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --wrap: 1440px;
  --radius: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.32px;
  overflow-x: hidden;
}

.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin: 0 auto;
}

h1, h2, h3 {
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.12;
}

h1 { font-size: 60px; letter-spacing: -3.6px; line-height: 72px; }
h2 { font-size: 48px; letter-spacing: -2.88px; line-height: 1.16; }
h3 { font-size: 20px; letter-spacing: -0.8px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 1px;
}

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-lead {
  margin: 16px auto 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: -0.32px;
}
.section-lead.left { margin-left: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease,
              color 0.3s ease,
              border-color 0.3s ease;
}

/* Tactile click press */
.btn:active {
  transform: translateY(1px) scale(0.97) !important;
  transition-duration: 0.08s;
}

/* Fluid light sheen sweep across the pill - slowed down for graceful glide */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.26) 50%,
    transparent 100%
  );
  transform: skewX(-22deg);
  pointer-events: none;
  z-index: 1;
}

.btn:hover::after {
  left: 180%;
  transition: left 1.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-cta.dark::after,
.btn-dark::after,
.btn-dark-full::after {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(214, 253, 112, 0.16) 35%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 100%
  );
}

/* Typography rolling reel motion */
.btn-text {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  height: 1.3em;
  line-height: 1.3em;
  overflow: hidden;
  vertical-align: middle;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-text-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.btn-text-item {
  display: block;
  height: 1.3em;
  line-height: 1.3em;
  white-space: nowrap;
  transition: opacity 0.35s ease;
}

.btn-text-track .btn-text-clone {
  opacity: 0.75;
}

.btn:hover .btn-text {
  transform: translateX(2px);
}

.btn:hover .btn-text-track {
  transform: translateY(-50%);
}

.btn:hover .btn-text-track .btn-text-item:first-child {
  opacity: 0.75;
}

.btn:hover .btn-text-track .btn-text-clone {
  opacity: 1;
}

/* Standard button styles */
.btn-lime {
  background: var(--lime);
  color: var(--ink);
  height: 40px;
  padding: 0 18px;
  box-shadow: 0 2px 10px rgba(214, 253, 112, 0.25);
}
.btn-lime:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -4px rgba(214, 253, 112, 0.55),
              0 0 0 1px rgba(214, 253, 112, 0.4);
}

.btn-nav { height: 40px; }

.btn-glass {
  background: rgba(16, 28, 42, 0.48);
  color: #fff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.btn-glass:hover {
  background: rgba(26, 44, 66, 0.65);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 10px 26px -6px rgba(0, 0, 0, 0.4);
}

/* Flagship CTA buttons */
.btn-cta {
  background: var(--lime);
  color: var(--ink);
  padding-right: 6px;
  box-shadow: 0 3px 12px rgba(214, 253, 112, 0.25);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -4px rgba(214, 253, 112, 0.55),
              0 0 0 1px rgba(214, 253, 112, 0.5);
}

.btn-cta.dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.btn-cta.dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -4px rgba(0, 0, 0, 0.65),
              0 0 0 1px rgba(214, 253, 112, 0.35);
}

/* Arrow Disc Badge - Clean & crisp, no shadow behind icon */
.btn-arrow {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease;
  box-shadow: none;
}

.btn-cta.dark .btn-arrow {
  background: var(--lime);
  color: var(--ink);
}

/* Clean scale & micro-shift on hover - no shadow animation behind icon */
.btn-cta:hover .btn-arrow,
.btn-cta.dark:hover .btn-arrow {
  transform: scale(1.06) translateX(2px);
  box-shadow: none;
}

/* Kinetic Arrow Fly-Through & Spring Reload */
.btn-arrow .arrow-svg {
  grid-area: 1 / 1;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s ease;
  will-change: transform, opacity;
}

.btn-arrow .arrow-clone {
  transform: translate3d(-18px, 18px, 0);
  opacity: 0;
}

.btn-cta:hover .btn-arrow .arrow-main {
  transform: translate3d(18px, -18px, 0);
  opacity: 0;
}

.btn-cta:hover .btn-arrow .arrow-clone {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.04s,
              opacity 0.25s ease 0.04s;
}

/* Fallback if single SVG is used */
.btn-cta:hover .btn-arrow > svg:only-of-type {
  animation: arrowWarpFlight 0.5s cubic-bezier(0.2, 0.8, 0.25, 1);
}

@keyframes arrowWarpFlight {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  38% {
    transform: translate3d(18px, -18px, 0);
    opacity: 0;
  }
  39% {
    transform: translate3d(-18px, 18px, 0);
    opacity: 0;
  }
  75% {
    transform: translate3d(2px, -2px, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* Dark variant buttons */
.btn-dark, .btn-dark-full {
  background: var(--ink);
  color: var(--lime);
  height: 52px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.btn-dark:hover,
.btn-dark-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -4px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(214, 253, 112, 0.35);
  color: #fff;
}
.btn-dark { color: #fff; height: 48px; padding: 0 22px; }
.btn-dark-full { width: 100%; margin-top: auto; }

/* Nav */
.nav {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 40;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  max-width: calc(100% - 24px);
  margin: 0 auto;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.nav > * { pointer-events: auto; }
.nav.is-hidden { opacity: 0; transform: translateY(-24px); pointer-events: none; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.6px;
}
.brand-mark { fill: currentColor; }
.brand.light { color: #fff; }

.menu {
  display: flex;
  gap: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.menu a {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 16px;
  opacity: .86;
}
.menu a:hover, .menu a.is-active { opacity: 1; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 1.5px; background: #fff; width: 18px; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 50;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
}
.mobile-menu.is-open { display: flex; }

/* Hero */
.hero {
  --hero-pad: 12px;
  padding: var(--hero-pad);
}
.hero-frame {
  position: relative;
  height: calc(100vh - (var(--hero-pad) * 2));
  height: calc(100dvh - (var(--hero-pad) * 2));
  min-height: 640px;
  /* no max-height: the frame must keep an identical --hero-pad inset on all
     four sides, otherwise tall viewports leave extra white below the card */
  border-radius: 28px;
  overflow: hidden;
}
.hero-sky {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(96px, 12vh, 132px);
  padding-bottom: clamp(16px, 2.5vh, 28px);
  text-align: center;
  color: #fff;
}
.hero h1 { max-width: 640px; }
.hero-lead {
  margin-top: 14px;
  max-width: 499px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.32px;
  color: rgba(255,255,255,.92);
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  position: relative;
  z-index: 10;
}

.hero-fan {
  --card-size: 148px;
  --cylinder-radius: 476px;
  position: relative;
  width: min(1256px, 100%);
  height: 258px;
  flex-shrink: 0;
  /* auto margins split the leftover height evenly above and below the
     carousel, so the stack stays optically centred in the frame */
  margin-top: auto;
  margin-bottom: auto;
  perspective: 3000px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
  outline: none;
  overflow: visible;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.02) 6%, rgba(0,0,0,0.2) 14%, rgba(0,0,0,0.6) 24%, black 32%, black 68%, rgba(0,0,0,0.6) 76%, rgba(0,0,0,0.2) 86%, rgba(0,0,0,0.02) 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.02) 6%, rgba(0,0,0,0.2) 14%, rgba(0,0,0,0.6) 24%, black 32%, black 68%, rgba(0,0,0,0.6) 76%, rgba(0,0,0,0.2) 86%, rgba(0,0,0,0.02) 94%, transparent 100%);
}
.hero-fan:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 6px;
  border-radius: 20px;
}
.hero-fan.is-dragging {
  cursor: grabbing;
}

/* 3D Cylinder Container matching Framer architecture */
.cylinder-carousel {
  position: absolute;
  /* the front-facing cards sit above the rotation origin, so the origin is
     parked near the bottom of the box to make it hug the visible cards */
  top: 78%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
  transform: translate(-50%, -50%) perspective(3000px) rotateX(8deg) rotateY(var(--cylinder-rot, 0deg));
}

.fan-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--card-size);
  height: var(--card-size);
  max-width: none;
  margin-left: calc(var(--card-size) / -2);
  margin-top: calc(var(--card-size) / -2);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(8, 30, 60, .20);
  transform-origin: center center;
  transform-style: preserve-3d;
  will-change: transform;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: auto;
  cursor: pointer;
  transition: box-shadow .25s ease, filter .25s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateY(calc(var(--i, 0) * 20deg)) translateZ(var(--cylinder-radius));
}
.fan-card:hover {
  box-shadow: 0 26px 52px rgba(8, 30, 60, .35);
  filter: brightness(1.04);
}

/* Fallback static layout when JS is not active */
.hero-fan:not(.cylinder-initialized) .cylinder-carousel {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: none;
}
.hero-fan:not(.cylinder-initialized) .fan-card {
  top: 48px;
  left: 50%;
  margin-top: 0;
}
.hero-fan:not(.cylinder-initialized) .fan-card.c1 { transform: translate3d(-530px, 26px, -240px) rotateY(50deg) rotateZ(-9deg) scale(.78); }
.hero-fan:not(.cylinder-initialized) .fan-card.c2 { transform: translate3d(-355px, 10px, -110px) rotateY(34deg) rotateZ(-5deg) scale(.88); }
.hero-fan:not(.cylinder-initialized) .fan-card.c3 { transform: translate3d(-175px, -4px, 20px) rotateY(16deg) scale(.98); z-index: 3; }
.hero-fan:not(.cylinder-initialized) .fan-card.c4 { transform: translate3d(8px, -12px, 60px) rotateY(-2deg) scale(1.06); z-index: 4; }
.hero-fan:not(.cylinder-initialized) .fan-card.c5 { transform: translate3d(198px, 0, 10px) rotateY(-18deg) scale(.97); z-index: 3; }
.hero-fan:not(.cylinder-initialized) .fan-card.c6 { transform: translate3d(375px, 14px, -120px) rotateY(-36deg) rotateZ(5deg) scale(.86); }
.hero-fan:not(.cylinder-initialized) .fan-card.c7 { transform: translate3d(545px, 30px, -250px) rotateY(-52deg) rotateZ(9deg) scale(.76); }
.hero-fan:not(.cylinder-initialized) .fan-card.c8,
.hero-fan:not(.cylinder-initialized) .fan-card.c9 { display: none; }

.hero-rating {
  position: relative;
  z-index: 2;
}
.hero-rating p { font-size: 14px; letter-spacing: -0.28px; color: rgba(255,255,255,.92); }
.stars { margin: 9px auto 0; fill: var(--neon); }

/* Ticker */
.ticker {
  height: 96px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.ticker-row {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
}
.ticker-row img { height: 32px; width: auto; opacity: .9; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* About */
.about { padding: 72px 0 96px; }
.about h2 { max-width: 752px; margin: 16px auto 0; }
.chip-phrase {
  display: inline;
  white-space: nowrap;
}
.chip-icon {
  width: 0.78em;
  height: 0.78em;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: -0.12em;
  margin: 0 0.12em;
  flex: none;
}
.chip-icon svg {
  width: 52%;
  height: 52%;
  display: block;
}
.chip-blue { background: var(--blue); }
.chip-lime { background: var(--lime); }
.muted-phrase { color: #b0b0b0; }

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr .96fr;
  gap: 16px;
  margin-top: 48px;
  align-items: stretch;
}
.about-photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 324px;
}
.about-photo > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ipsum-mark {
  position: absolute;
  top: 22px;
  left: 22px;
  height: 22px;
  width: auto;
}
.photo-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #fff;
  display: grid;
  place-items: center;
}
.photo-stat {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 20px;
  padding: 22px 24px 18px;
}
.stat-num {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -2.4px;
  line-height: 1;
}
.photo-stat p:last-child {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: -0.28px;
}

.about-card {
  background: var(--gray);
  border-radius: 28px;
  padding: 24px 28px;
}
.about-mid { display: flex; flex-direction: column; min-height: 324px; }
.card-kicker { font-size: 14px; color: var(--soft); letter-spacing: -0.28px; }
.about-mid .stat-num { margin: 10px 0 18px; }
.avatar-row { display: flex; margin: 8px 0 16px; }
.avatar-row img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -10px;
}
.avatar-row img:first-child { margin-left: 0; }
.about-mid blockquote {
  margin-top: auto;
  font-size: 16px;
  letter-spacing: -0.32px;
  color: var(--ink);
}
.about-stack { display: flex; flex-direction: column; gap: 16px; }
.about-lime { background: var(--lime); flex: 1; display: flex; flex-direction: column; }
.about-lime .stat-num { margin: 8px 0 18px; }
.about-lime p:last-child { margin-top: auto; font-size: 16px; }
.about-dark {
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 20px 28px;
}
.about-dark .card-kicker { color: rgba(255,255,255,.78); }
.about-dark .stat-num { font-size: 40px; letter-spacing: -2.4px; }

/* Services */
.services { padding: 40px 0 80px; }
.services .section-head { margin-bottom: 40px; }
.services .btn { margin-top: 24px; }

.service-board {
  display: flex;
  gap: 16px;
  background: var(--gray);
  border-radius: 32px;
  padding: 16px;
  align-items: stretch;
}
.service-card {
  background: #fff;
  border-radius: 24px;
  padding: 22px;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1 1 0;
  min-width: 0;
  cursor: pointer;
  transition: flex-grow .55s cubic-bezier(.2,.7,.3,1);
}
.service-card.is-open {
  flex-grow: 1.6;
}

.svc-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--lime);
  display: grid;
  place-items: center;
  flex: none;
}

.service-row {
  display: flex;
  flex: 1;
  min-height: 0;
}

.svc-copy {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
}
.svc-copy h3 {
  margin-top: auto;
  margin-bottom: 10px;
  font-size: 24px;
  letter-spacing: -0.96px;
}
.svc-copy p {
  color: var(--muted);
  font-size: 15px;
  letter-spacing: -0.3px;
  line-height: 1.45;
  max-width: 22em;
}

.service-media {
  flex: 0 0 0px;
  margin-left: 0;
  overflow: hidden;
  border-radius: 18px;
  align-self: stretch;
  opacity: 0;
  transform: scale(.96);
  pointer-events: none;
  transition: flex-basis .55s cubic-bezier(.2,.7,.3,1),
              margin-left .55s cubic-bezier(.2,.7,.3,1),
              opacity .4s ease .1s,
              transform .55s cubic-bezier(.2,.7,.3,1);
}
.service-card.is-open .service-media {
  flex-basis: 208px;
  margin-left: 18px;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.service-media img {
  width: 100%;
  min-width: 190px;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Expertise */
.expertise { padding: 40px 0 80px; }
.expert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--gray);
  padding: 12px;
  border-radius: 32px;
}
.expert-card {
  background: #fff;
  border-radius: 24px;
  padding: 20px 20px 36px;
  text-align: center;
  min-width: 0;
}
.expert-card h3 { margin-top: 8px; font-size: 24px; letter-spacing: -0.96px; }
.expert-card > p {
  margin: 10px auto 0;
  max-width: 460px;
  color: var(--muted);
}
.mock {
  position: relative;
  height: 400px;
  margin-bottom: 28px;
  overflow: hidden;
}

/* Card Mockups Common Architecture */
.card-back-dark {
  position: absolute;
  background: #131313;
  color: #fff;
  border: 4.5px solid #f2f2f2;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.card-front-white {
  position: absolute;
  background: #fff;
  color: var(--ink);
  border: 5px solid #f2f2f2;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  z-index: 2;
}

.c-title { font-size: 12px; font-weight: 500; color: #fff; letter-spacing: -0.04em; }
.c-sub { font-size: 8px; font-weight: 500; color: #7b7b7b; letter-spacing: -0.04em; margin-top: 2px; }
.c-sub.dark { color: #7b7b7b; }
.c-big { font-size: 32px; font-weight: 500; color: #fff; line-height: 1; letter-spacing: -0.02em; margin: 10px 0 2px; }
.card-head { display: flex; justify-content: space-between; align-items: flex-start; }
.c-icon { background: rgba(255, 255, 255, 0.08); border-radius: 6px; padding: 3px; width: 22px; height: 22px; }

/* Text highlights */
.hl-white { color: #fff; }
.hl-gray { color: #7b7b7b; }

/* -------------------------------------------------------------
   CARD 1: Automation & optimization (mock-auto)
   ------------------------------------------------------------- */
.card-perf-dark {
  left: 50%;
  top: 50%;
  width: 200px;
  padding: 16px 18px 18px;
  transform: translate(-76%, -62%) rotate(-4deg);
  text-align: left;
}
.card-perf-dark .card-stat {
  margin-top: 18px;
}

.card-expense-white {
  left: 50%;
  top: 50%;
  width: 238px;
  padding: 14px 16px 14px;
  transform: translate(-28%, -36%);
  text-align: left;
}
.exp-head {
  margin-bottom: 10px;
}
.exp-sub {
  font-size: 8px;
  font-weight: 500;
  color: #131313;
  letter-spacing: -0.04em;
}
.exp-amount {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #131313;
  margin: 4px 0 6px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.exp-total {
  font-size: 16px;
  font-weight: 500;
  color: rgba(18, 40, 53, 0.28);
}
.exp-bar-track {
  height: 8px;
  background: #f2f2f2;
  border-radius: 99px;
  overflow: hidden;
}
.exp-bar-fill {
  height: 100%;
  background: #38c6f6;
  border-radius: 99px;
}
.exp-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.exp-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f2f2f2;
  border-radius: 8px;
  padding: 5px 10px;
}
.exp-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.exp-details {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.exp-name {
  font-size: 8px;
  font-weight: 500;
  color: #131313;
  letter-spacing: -0.04em;
}
.exp-date {
  font-size: 7px;
  font-weight: 500;
  color: rgba(19, 19, 19, 0.5);
  letter-spacing: -0.04em;
}
.exp-cost {
  margin-left: auto;
  font-size: 10px;
  font-weight: 500;
  color: #131313;
  letter-spacing: -0.04em;
}

/* -------------------------------------------------------------
   CARD 2: Data analytics & insights (mock-data)
   ------------------------------------------------------------- */
.card-copy-dark {
  left: 50%;
  top: 50%;
  width: 216px;
  padding: 18px;
  transform: translate(-76%, -58%) rotate(-6deg);
  text-align: left;
}
.copy-statement {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.04em;
}
.copy-dot {
  display: inline-block;
  vertical-align: middle;
  margin: 0 2px;
  transform: translateY(-2px);
}
.copy-dot svg {
  display: block;
}

.card-decision-white {
  left: 50%;
  top: 50%;
  width: 242px;
  padding: 18px 16px 14px;
  transform: translate(-28%, -36%) rotate(9deg);
  text-align: left;
}
.decision-heading {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.25;
  color: #131313;
  margin-bottom: 16px;
}
.decision-barchart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 135px;
  gap: 8px;
  padding: 0 4px;
}
.d-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.d-bar {
  width: 12px;
  background: #f2f2f2;
  border-radius: 4px;
  transition: height 0.4s ease;
}
.d-bar.d-highlight {
  background: #38c6f6;
}
.d-year {
  font-size: 7px;
  font-weight: 500;
  color: #7b7b7b;
  letter-spacing: -0.02em;
}

/* -------------------------------------------------------------
   CARD 3: Digital transformation (mock-digital)
   ------------------------------------------------------------- */
.card-smart-dark {
  left: 50%;
  top: 50%;
  width: 216px;
  padding: 16px 16px 20px;
  transform: translate(-24%, -66%) rotate(20deg);
  text-align: left;
}
.smart-users-chip {
  background: #2f2f2f;
  border-radius: 10px;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.smart-avatars {
  display: flex;
}
.smart-avatars img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #fff;
  object-fit: cover;
  margin-left: -6px;
}
.smart-avatars img:first-child {
  margin-left: 0;
}
.smart-count {
  font-size: 7px;
  font-weight: 500;
  color: #7b7b7b;
  letter-spacing: -0.04em;
}
.smart-slogan {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.25;
  margin-top: 14px;
}

.card-growth-white {
  left: 50%;
  top: 50%;
  width: 258px;
  padding: 12px 14px 14px;
  transform: translate(-64%, -36%);
  text-align: left;
}
.growth-banner-dark {
  background: #131313;
  border-radius: 12px;
  padding: 9px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.growth-stats {
  margin: 10px 0 8px;
}
.growth-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.growth-val {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #131313;
  line-height: 1.1;
}
.growth-pill {
  background: #d6fd70;
  color: #131313;
  border-radius: 8px;
  padding: 2px 6px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.growth-sub {
  font-size: 8px;
  font-weight: 500;
  color: #7b7b7b;
  letter-spacing: -0.04em;
  margin-top: 2px;
}
.growth-ticker-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  margin-top: 4px;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.ticker-row {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}
.ticker-track {
  display: flex;
  gap: 6px;
  width: max-content;
  flex-shrink: 0;
}
.ticker-track.track-top {
  animation: ticker-slide 20s linear infinite;
}
.ticker-track.track-bottom {
  animation: ticker-slide-rev 20s linear infinite;
}
.ticker-track span {
  background: #f2f2f2;
  border: 0.67px solid #f2f2f2;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 9.5px;
  font-weight: 500;
  color: #131313;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

@keyframes ticker-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes ticker-slide-rev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.radar {
  position: relative;
  width: 340px;
  height: 340px;
  margin: 20px auto 0;
}
.radar span {
  position: absolute;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  pointer-events: none;
}
/* Concentric orbital rings matching the visual design:
   Inner orbit: radius 72px (inset 98px)
   Middle orbit (badge track): radius 120px (inset 50px)
   Outer orbit: radius 165px (inset 5px) */
.radar span:nth-child(1) { inset: 5px; }
.radar span:nth-child(2) { inset: 50px; }
.radar span:nth-child(3) { inset: 98px; }

.radar-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  margin: -29px 0 0 -29px;
  background: var(--ink);
  border-radius: 18px;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.pill {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 158px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
  user-select: none;
  pointer-events: auto;
  cursor: default;
  will-change: transform;
  z-index: 3;
  transition: filter 0.3s ease, z-index 0.3s ease;
}


.pill:hover {
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.15));
  z-index: 5;
}

/* 
 * Name badges revolve continuously on the orbit around the center icon.
 * Orbit radius: 120px (centered precisely on the middle orbit line).
 * Loop duration: 28s (smooth, graceful SaaS pacing).
 * Equal 120-degree separation: perfectly balanced equilateral constellation that never collides.
 * Counter-rotation: keeps each badge upright, level, and legible at every degree of revolution.
 */
.pill.p-a {
  width: 150px;
  transform: rotate(45deg) translateY(-120px) rotate(-45deg) translate(-50%, -50%);
  animation: orbit-a 28s linear infinite;
}

.pill.p-b {
  width: 158px;
  transform: rotate(165deg) translateY(-120px) rotate(-165deg) translate(-50%, -50%);
  animation: orbit-b 28s linear infinite;
}

.pill.p-c {
  width: 158px;
  transform: rotate(285deg) translateY(-120px) rotate(-285deg) translate(-50%, -50%);
  animation: orbit-c 28s linear infinite;
}

@keyframes orbit-a {
  from {
    transform: rotate(45deg) translateY(-120px) rotate(-45deg) translate(-50%, -50%);
  }
  to {
    transform: rotate(405deg) translateY(-120px) rotate(-405deg) translate(-50%, -50%);
  }
}

@keyframes orbit-b {
  from {
    transform: rotate(165deg) translateY(-120px) rotate(-165deg) translate(-50%, -50%);
  }
  to {
    transform: rotate(525deg) translateY(-120px) rotate(-525deg) translate(-50%, -50%);
  }
}

@keyframes orbit-c {
  from {
    transform: rotate(285deg) translateY(-120px) rotate(-285deg) translate(-50%, -50%);
  }
  to {
    transform: rotate(645deg) translateY(-120px) rotate(-645deg) translate(-50%, -50%);
  }
}

/* Pricing */
.pricing { padding: 40px 0 80px; }
.pricing .btn-cta { margin-top: 22px; }
.price-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: var(--gray);
  padding: 12px;
  border-radius: 32px;
}
.price-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px 24px 20px;
  display: flex;
  flex-direction: column;
  min-height: 430px;
}
.price-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.price-head .eyebrow::before { display: none; }
.price-desc { color: var(--ink); min-height: 48px; }
.price { margin: 22px 0 20px; display: flex; align-items: baseline; gap: 8px; }
.price span { font-size: 40px; font-weight: 500; letter-spacing: -2.4px; }
.price small { color: var(--muted); font-size: 16px; }
.price-card ul { display: grid; gap: 14px; margin-bottom: 28px; }
.price-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
}
.price-card li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--ink) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='white' d='M6.2 11.2 3.4 8.4l1.1-1.1 1.7 1.7 4.3-4.3 1.1 1.1z'/></svg>") center / 12px no-repeat;
}

/* Quotes */
.quotes { padding: 40px 0 80px; overflow: hidden; }
.quotes-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}
.quotes h2 { margin-top: 8px; }
.quote-nav { display: flex; gap: 10px; }
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ececec;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.icon-btn:hover { background: var(--gray); }
.quote-viewport {
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.quote-track {
  display: flex;
  gap: 16px;
  padding: 0 max(24px, calc((100% - 1440px) / 2 + 24px));
  transition: transform .55s cubic-bezier(.22,.7,.25,1);
  will-change: transform;
}
.quote-card {
  position: relative;
  flex: 0 0 473px;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
}
.quote-card img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
.quote-card > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.co-logo {
  position: absolute;
  top: 22px;
  left: 22px;
  height: 20px;
  width: auto;
  filter: brightness(10);
}
.quote-body {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 24px 22px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.62) 40%, rgba(0,0,0,.72));
  text-align: left;
}
.marks { font-size: 42px; line-height: 0; display: block; height: 18px; opacity: .9; }
.quote-body p { font-size: 18px; letter-spacing: -0.4px; max-width: 420px; }
.quote-body .by { margin-top: 14px; font-size: 13px; text-align: right; opacity: .9; }

/* Blog */
.blog { padding: 20px 0 40px; }
.blog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 36px;
}
.blog-head h2 { margin-top: 8px; }
.blog-all { margin-top: 28px; flex: none; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blog-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 467px;
  color: #ffffff;
  display: block;
}
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.blog-card:hover img {
  transform: scale(1.04);
}
.blog-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.45) 35%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.blog-card span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.25;
  color: #ffffff !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
  z-index: 2;
  user-select: text;
  -webkit-user-select: text;
  cursor: text;
}

/* CTA */
.cta { padding: 24px 0 48px; }
.cta-banner {
  position: relative;
  height: 487px;
  border-radius: 32px;
  overflow: hidden;
  color: #fff;
}
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 68px 56px;
}
.trusted {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.mini-avatars {
  display: inline-flex;
  align-items: center;
}
.mini-avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -8px;
}
.mini-avatars img:first-child {
  margin-left: 0;
}
.cta-copy h2 { margin: 18px 0 16px; }
.cta-copy p { max-width: 560px; }
.cta-copy .btn { margin-top: 28px; }

/* Footer */
.footer {
  background: #fff;
  color: var(--ink);
  padding: 24px 0 48px;
  width: 100%;
}
.footer-card {
  background: var(--ink);
  color: #fff;
  border-radius: 32px;
  overflow: hidden;
  width: 100%;
}
.foot-shell {
  background: transparent;
  color: #fff;
  border-radius: 0;
  padding: 56px 56px 40px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  min-height: 160px;
}
.foot-brand p {
  margin-top: 18px;
  max-width: 420px;
  color: rgba(255,255,255,.78);
}
.foot-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: start;
  gap: 8px 40px;
  padding-left: 20%;
}
.foot-links a {
  display: block;
  padding: 8px 0;
  color: rgba(255,255,255,.92);
}
.newsletter { margin-top: 40px; max-width: 640px; }
.newsletter label { display: block; font-size: 18px; margin-bottom: 12px; }
.field {
  display: flex;
  gap: 12px;
  background: #2a2a2a;
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  align-items: center;
}
.field input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  min-width: 0;
}
.field input::placeholder { color: #9a9a9a; }
.copy {
  margin-top: 36px;
  color: rgba(255,255,255,.55);
  font-size: 14px;
}

@media (max-width: 1100px) {
  h1 { font-size: 44px; letter-spacing: -2px; line-height: 1.1; }
  h2 { font-size: 36px; letter-spacing: -1.6px; }
  .menu { display: none; }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .about-grid, .expert-grid, .price-board, .blog-grid {
    grid-template-columns: 1fr;
  }
  .service-board { flex-direction: column; }
  .service-card { min-height: 0; flex: 1 1 auto; }
  .service-card.is-open { flex-grow: 1; }
  .service-media { display: none; }
  .svc-copy h3 { margin-top: 22px; }
  .foot-top, .blog-head, .quotes-head { grid-template-columns: 1fr; display: grid; }
  .foot-links { padding-left: 0; }
  .hero-fan { height: 218px; flex-shrink: 0; --card-size: 124px; --cylinder-radius: 400px; }
  .hero-fan:not(.cylinder-initialized) .fan-card { width: 120px; height: 120px; margin-left: -60px; }
  .cta-banner { height: auto; min-height: 420px; }
  .cta-copy { padding: 40px 28px; }
  .foot-shell { padding: 40px 28px 32px; }
}

@media (max-width: 700px) {
  .hero { --hero-pad: 10px; }
  h1 { font-size: 34px; letter-spacing: -1.4px; line-height: 1.12; }
  .hero-content { padding-top: 104px; padding-left: 16px; padding-right: 16px; }
  .hero-frame {
    min-height: 560px;
    height: calc(100vh - (var(--hero-pad) * 2));
    height: calc(100dvh - (var(--hero-pad) * 2));
  }
  .hero-actions { flex-wrap: wrap; justify-content: center; }
  .nav { padding: 0 16px; }
  .hero-fan {
    height: 186px;
    flex-shrink: 0;
    --card-size: 104px;
    --cylinder-radius: 335px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.2) 8%, black 20%, black 80%, rgba(0,0,0,0.2) 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.2) 8%, black 20%, black 80%, rgba(0,0,0,0.2) 92%, transparent 100%);
  }
  .hero-fan:not(.cylinder-initialized) .fan-card.c1,
  .hero-fan:not(.cylinder-initialized) .fan-card.c2,
  .hero-fan:not(.cylinder-initialized) .fan-card.c6,
  .hero-fan:not(.cylinder-initialized) .fan-card.c7 { display: none; }
  .quote-card { flex-basis: 86vw; height: 420px; }
  .field { flex-direction: column; border-radius: 24px; padding: 12px; }
  .field input { padding: 8px; }
  .foot-shell { padding: 32px 20px 28px; }
  .btn-dark-full, .field .btn { width: 100%; }
  .service-board { flex-direction: column; }
  .radar {
    transform: scale(0.88);
    transform-origin: center center;
  }
}

/* Short laptop viewports: tighten the hero stack so the rating still fits */
@media (min-width: 701px) and (max-height: 780px) {
  .hero h1 { font-size: 48px; letter-spacing: -2.4px; line-height: 1.12; }
  .hero-content { padding-top: 84px; }
  .hero-lead { margin-top: 10px; }
  .hero-actions { margin-top: 14px; }
  .hero-fan { height: 218px; }
}

@media (max-width: 480px) {
  .radar {
    transform: scale(0.78);
    transform-origin: center center;
  }
  .mock-auto,
  .mock-data,
  .mock-digital {
    transform: scale(0.88);
    transform-origin: center center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn::after,
  .btn-text,
  .btn-text-track,
  .btn-text-item,
  .btn-arrow,
  .btn-arrow .arrow-svg {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
  .pill.p-a,
  .pill.p-b,
  .pill.p-c,
  .ticker-track {
    animation: none !important;
  }
}

