*,
*::before,
*::after {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --bg: #06060a;
  --bg-pattern: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1.4'%3E%3Cpath d='M0 30 L30 0 L60 30 L30 60 Z'/%3E%3Cpath d='M60 30 L90 0 L120 30 L90 60 Z'/%3E%3Cpath d='M0 90 L30 60 L60 90 L30 120 Z'/%3E%3Cpath d='M60 90 L90 60 L120 90 L90 120 Z'/%3E%3C/g%3E%3C/svg%3E");
  --bg-gradient: radial-gradient(1200px at 18% 22%, rgba(140, 140, 155, 0.18), transparent 55%),
    radial-gradient(900px at 82% 18%, rgba(125, 125, 145, 0.14), transparent 52%),
    radial-gradient(820px at 68% 78%, rgba(110, 115, 130, 0.12), transparent 48%),
    radial-gradient(720px at 32% 70%, rgba(130, 130, 150, 0.12), transparent 52%),
    radial-gradient(640px at 58% 34%, rgba(120, 125, 140, 0.1), transparent 46%),
    radial-gradient(700px at 8% 82%, rgba(150, 145, 160, 0.08), transparent 48%),
    linear-gradient(180deg, rgba(12, 12, 16, 0.92), rgba(4, 5, 10, 0.98)),
    #06070c;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --text: #f4f4f4;
  --muted: #b4b5bf;
  --primary: #f04b4f;
  --primary-strong: #ff7f63;
  --accent: #ff7f63;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 25px 50px rgba(2, 0, 20, 0.45);
  --page-max: 1200px;
  --page-gutter: clamp(24px, 6vw, 120px);
}

html {
  background: var(--bg-gradient);
}

body {
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-gradient), var(--bg-pattern);
  background-attachment: fixed, fixed;
  background-size: cover, 220px 220px;
  color: var(--text);
  margin: 0;
  min-height: 100vh;
  line-height: 1.6;
}

body.cp-theme {
  background: #000;
  background-attachment: scroll;
}

.site-header,
.site-footer,
.landing-banner,
.company,
.offerings,
main {
  width: min(var(--page-max), 100%);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

/* Banners stretch full width but keep internal gutters */
.site-header,
.site-footer {
  width: 100%;
  margin-inline: 0;
  padding-inline: 0;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

main {
  padding: 0 0 48px;
  position: relative;
}

body:not(.cp-theme) main {
  padding: 48px 0 120px;
}

body.ot-theme {
  --primary: #0087ce;
  --primary-strong: #36a5de;
  --accent: #1a9ee6;
  --border: rgba(0, 135, 206, 0.32);
  background: radial-gradient(1200px at 16% 24%, rgba(0, 135, 206, 0.22), transparent 55%),
    radial-gradient(1100px at 82% 20%, rgba(0, 166, 240, 0.14), transparent 52%),
    radial-gradient(900px at 68% 78%, rgba(0, 155, 220, 0.14), transparent 50%),
    radial-gradient(800px at 30% 76%, rgba(0, 120, 190, 0.14), transparent 48%),
    radial-gradient(760px at 60% 34%, rgba(0, 180, 230, 0.12), transparent 46%),
    radial-gradient(840px at 10% 82%, rgba(0, 115, 185, 0.12), transparent 50%),
    linear-gradient(185deg, #0b121d, #060a12 72%, #05080f);
  background-attachment: scroll;
}

main::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(11, 11, 16, 0.8), rgba(11, 11, 16, 0));
  pointer-events: none;
  z-index: 9;
}

main::after {
  content: none;
}

.cp-theme main::before,
.ot-theme main::before {
  display: none;
}

.cp-theme main::after,
.ot-theme main::after {
  content: none;
}





.pre-banner {
  padding: 40px 0 10px;
  text-align: center;
}

.pre-banner__title {
  margin: 8px 0;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.2;
  color: var(--text);
}

.pre-banner__lede {
  max-width: 800px;
  margin: 8px auto 0;
  color: var(--text);
}

.company {
  padding: 64px 0 16px;
  position: relative;
}

.cp-hero {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: auto;
  background: #000;
  padding-top: 120px;
  padding-bottom: 40px;
}


.cp-overlay-block {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: -50px;
  background: transparent;
  position: relative;
  padding: 40px max(
      var(--page-gutter),
      calc((100vw - var(--page-max)) / 2 + var(--page-gutter))
    ) 60px;
  z-index: 2;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #000;
}

.hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  background: #000;
}

.hero-video__media::-webkit-media-controls-enclosure,
.hero-video__media::-webkit-media-controls {
  display: none !important;
}

.hero-video__media::-webkit-media-controls-panel,
.hero-video__media::-webkit-media-controls-play-button,
.hero-video__media::-webkit-media-controls-start-playback-button,
.hero-video__media::-webkit-media-controls-overlay-play-button {
  display: none !important;
  visibility: hidden !important;
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
  z-index: 1;
}

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

.company__content {
  position: relative;
  padding: clamp(32px, 6vw, 64px);
  background: none;
  overflow: visible;
}

.company__grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.4fr) minmax(220px, 0.6fr);
  gap: 24px;
  align-items: stretch;
}

.company__visual {
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  justify-self: center;
  align-self: center;
}

.company__visual img {
  width: 90%;
  max-width: 288px;
  height: auto;
  object-fit: contain;
}

.company h2 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.2;
  text-align: left;
}

.company h2 strong {
  font-weight: 900;
  letter-spacing: 0.015em;
  text-shadow: 0 0 1.2px currentColor;
}

.about-mission-title {
  margin: 10px 0 18px;
  font-size: clamp(3rem, 5.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.about-mission-title span {
  display: block;
  font-weight: 900;
  text-shadow: 0 0 1.2px currentColor;
}

.about-headline {
  margin: 10px 0 16px;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 900;
  text-shadow: 0 0 1.2px currentColor;
}

.about-hero-subtitle {
  margin: 0 auto 64px;
  max-width: var(--about-copy-max);
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
  text-align: center;
}

.about-hero {
  --about-copy-max: min(100%, calc(var(--page-max) - (var(--page-gutter) * 2)));
}

.about-hero .company__grid {
  grid-template-columns: 1fr;
  justify-items: center;
}

.about-hero .company__visual {
  display: none;
}

.about-hero .company__info {
  text-align: center;
  max-width: var(--about-copy-max);
  margin: 0 auto;
}

.about-hero .lede {
  margin-left: auto;
  margin-right: auto;
}

.about-copy-columns {
  columns: 2;
  column-gap: clamp(18px, 4vw, 40px);
  column-fill: balance;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  max-width: var(--about-copy-max);
  margin: 0 auto;
}

.about-copy-label {
  width: min(var(--about-copy-max), 100%);
  margin: 0 auto 18px;
  text-align: left;
}

.about-mission-body {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  max-width: none;
}

.about-copy-columns .about-mission-body:last-child {
  margin-bottom: 0;
}

.about-accent {
  color: #ffb14a;
  font-weight: 800;
}

.about-hero .eyebrow.eyebrow--cp {
  color: #ffb14a;
}

.eyebrow.eyebrow--cp {
  margin: 0 0 6px;
  color: #ffb14a;
  letter-spacing: 0.2em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  padding: 8px 14px;
  border: 1px solid rgba(255, 177, 74, 0.72);
  border-radius: 999px;
  background: rgba(255, 177, 74, 0.18);
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.eyebrow.eyebrow--cp::before {
  content: "";
  width: 38px;
  height: 2px;
  background: #ffb14a;
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255, 177, 74, 0.45);
}

.eyebrow.eyebrow--cp:hover,
.eyebrow.eyebrow--cp:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 28px rgba(255, 177, 74, 0.18), 0 0 12px rgba(255, 177, 74, 0.45);
}

.about-mission-cta {
  margin: 18px 0 0;
}

.about-mission-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.about-mission-link:hover,
.about-mission-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
}

.company__content .typewriter,
.company .lede {
  animation: color-shift 8s ease-in-out infinite alternate;
}

.company .eyebrow {
  color: var(--muted);
}

.cp-theme .cp-hero .eyebrow {
  text-align: center;
  display: inline-block;
  margin: 0 auto 6px;
}

.cp-theme .cp-hero .company__content {
  text-align: center;
}

.cp-theme .cp-hero h2 {
  text-align: center;
  margin: 14px auto 20px;
  max-width: 800px;
}

.cp-theme .cp-hero .lede {
  text-align: center;
  margin: 20px auto 4px;
}

.cp-service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 18px;
}


.cp-service-card {
  position: relative;
  background: linear-gradient(160deg, rgba(8, 12, 10, 0.92), rgba(4, 10, 8, 0.98));
  border: 1px solid rgba(68, 193, 122, 0.18);
  border-radius: 14px;
  padding: 0;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 90px;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cp-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
  transition: border-color 0.2s ease, opacity 0.2s ease;
  opacity: 0.8;
}

.cp-service-hero {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  border: none;
  margin: 0;
  transform: scale(1.01);
  transform-origin: center;
  transition: transform 0.25s ease, filter 0.25s ease;
  border-radius: 14px 14px 0 0;
}

.cp-service-hero--large {
  transform: scale(1.04);
  transform-origin: center;
  object-position: 46% -15%;
}

.cp-service-body {
  position: relative;
  z-index: 2;
  padding: 18px 18px 20px 18px;
  margin: -65px 0 0 0;
  min-height: 170px;
  background: linear-gradient(170deg, #141414, #0c0c0c, #080808);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
  transform: translateY(0);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cp-service-rail {
  position: absolute;
  top: 0;
  height: 110px;
  left: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: space-between;
  pointer-events: none;
  z-index: 1;
}

.rail-track {
  display: flex;
  gap: 0;
  width: max-content;
  min-width: 200%;
  padding-right: 0;
  white-space: nowrap;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.08rem;
  line-height: 1.1;
  opacity: 0.5;
  will-change: transform;
}

.rail-track span {
  color: rgba(255, 255, 255, 0.25);
  padding-right: 0.5em;
}

.rail-track span:nth-child(even) {
  color: rgba(180, 184, 186, 0.25);
}

.rail-track span::after {
  content: " ";
}

@keyframes rail-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.cp-service-rail .rail-track:nth-child(odd) {
  animation-direction: normal;
}

.cp-service-rail .rail-track:nth-child(even) {
  animation-direction: reverse;
}


.cp-service-card:hover,
.cp-service-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45), 0 0 22px rgba(190, 192, 200, 0.28);
}

.cp-service-card:hover::after,
.cp-service-card:focus-visible::after {
  border-color: rgba(255, 255, 255, 0.22);
  opacity: 1;
}

.cp-service-card:hover .cp-service-hero,
.cp-service-card:focus-visible .cp-service-hero {
  transform: scale(1.05);
  filter: brightness(0.96) saturate(1.05);
}

.cp-service-card:hover .cp-service-body,
.cp-service-card:focus-visible .cp-service-body {
  background: linear-gradient(170deg, rgba(60, 60, 60, 0.95), rgba(32, 32, 32, 0.95), rgba(18, 18, 18, 0.96));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.52);
}

.cp-service-card--test .cp-service-body {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.social-embeds .panel__header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 18px;
}

.social-embeds {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: var(--page-max);
  width: 100%;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: center;
}

.social-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: linear-gradient(150deg, #171717, #101010);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
  display: grid;
  gap: 12px;
  align-self: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-carousel {
  position: relative;
  max-width: var(--page-max);
  width: 100%;
  margin: 0 auto;
  display: block;
}

.social-carousel .social-embeds {
  flex: 1;
}

.social-nav {
  background: rgba(20, 24, 30, 0.9);
  border: 1px solid rgba(190, 196, 206, 0.4);
  color: #e3e6ec;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-nav:hover,
.social-nav:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(220, 224, 232, 0.8);
  color: #f6f7fb;
}

.social-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.social-card__meta {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.social-card__reposter,
.social-card__original-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.social-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: contain;
  padding: 2px;
  background: #0f141a;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.social-card__avatar.secondary {
  width: 34px;
  height: 34px;
  padding: 3px;
  background: #0f141a;
  border: 1px solid rgba(240, 75, 79, 0.6);
  box-shadow: none;
}

.social-card__name {
  margin: 0;
  font-weight: 700;
  color: #f3f6ff;
}

.social-card__repost,
.social-card__original,
.social-card__tagline {
  margin: 0;
  color: #aab3c2;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}

.social-card__repost {
  color: #ffb14a;
  font-weight: 700;
}

.social-card__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 6px 0 2px;
}

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

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-6px);
  background: linear-gradient(150deg, #212121, #161616);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.55), 0 0 18px rgba(255, 177, 74, 0.2);
}

.social-card__toggle {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(190, 196, 206, 0.4);
  background: rgba(20, 24, 30, 0.9);
  color: #d8dbe2;
  font-weight: 700;
  cursor: pointer;
}

.social-card__toggle:hover,
.social-card__toggle:focus-visible {
  color: #f2f4f8;
  border-color: rgba(220, 224, 232, 0.8);
}

.social-card__link.secondary {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(240, 75, 79, 0.7);
  color: #ffb14a;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(40, 16, 12, 0.92), rgba(32, 12, 10, 0.9));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 16px rgba(240, 75, 79, 0.25);
}

.social-card__link.secondary:hover,
.social-card__link.secondary:focus-visible {
  color: #ffd7c7;
  border-color: rgba(240, 75, 79, 0.9);
  background: linear-gradient(135deg, rgba(48, 20, 16, 0.96), rgba(36, 14, 12, 0.92));
  text-decoration: none;
}

.social-card__dot {
  display: none;
}

.social-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(240, 75, 79, 0.18);
  color: #ffc4b8;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(240, 75, 79, 0.55);
}

.social-card__copy {
  margin: 0 0 4px;
  color: #d9dde5;
  line-height: 1.5;
  word-break: break-word;
  white-space: pre-line;
}

.social-card__details {
  margin: 0;
}

.social-card__summary {
  cursor: pointer;
  color: #d9dde5;
  font-weight: 700;
  list-style: none;
}

.social-card__summary::-webkit-details-marker {
  display: none;
}

.social-card__summary::after {
  content: " +";
  color: #ffb14a;
  font-weight: 700;
}

.social-card__details[open] .social-card__summary::after {
  content: " –";
}

.social-card__link {
  color: #ffb14a;
  font-weight: 700;
  text-decoration: none;
}

.social-card__link:hover,
.social-card__link:focus-visible {
  color: #ffc4b8;
  text-decoration: underline;
}

.social-card__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  background: #05080c;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-card__image-wrap {
  position: relative;
  width: 100%;
}

.social-card__link--overlay {
  position: absolute;
  left: 12px;
  bottom: 22px;
  z-index: 2;
  padding: 6px 12px;
  font-size: 0.9rem;
  border-radius: 10px;
}

.cp-overlay-block--news .cp-overlay-inner {
}

.cp-overlay-block--news .social-grid {
  margin-top: 18px;
}

.cp-overlay-block--news .lede {
  max-width: 720px;
  margin: 6px 0 0;
  text-align: left;
}

.cp-overlay-block--news .social-card {
  text-align: left;
}

.cp-overlay-block--news .cp-overlay-inner {
  text-align: left;
}

.cp-service-card--test:hover .cp-service-body,
.cp-service-card--test:focus-visible .cp-service-body {
  border-color: rgba(255, 255, 255, 0.18);
}

.cp-info-block {
  width: min(var(--page-max), 100%);
  margin: 32px auto 0;
  padding: 0 var(--page-gutter);
}

.cp-info-block--secondary {
  margin-top: 18px;
}

.cp-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.cp-info-panel {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.cp-info-panel .eyebrow {
  margin: 0 0 6px;
}

.cp-info-panel h3 {
  margin: 4px 0 10px;
  font-size: 1.35rem;
}

.cp-overlay-block--faq .cp-faq {
  margin-top: 12px;
}
.cp-info-copy {
  margin: 0 0 10px;
  color: #cdd2da;
}

.cp-info-list {
  margin: 0;
  padding-left: 18px;
  color: #d9dde5;
  line-height: 1.6;
}

.cp-info-list li + li {
  margin-top: 6px;
}

.cp-info-list--numeric,
.cp-info-list--roman {
  list-style: none;
  padding-left: 0;
  counter-reset: cpsteps;
}

.cp-info-list--numeric li,
.cp-info-list--roman li {
  position: relative;
  padding-left: 38px;
  counter-increment: cpsteps;
}

.cp-info-list--numeric li::before,
.cp-info-list--roman li::before {
  content: counter(cpsteps);
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffb14a;
  color: #0b0b0f;
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cp-info-list--roman li::before {
  content: counter(cpsteps, upper-roman);
}

.cp-info-list--numeric li strong,
.cp-info-list--roman li strong {
  color: #ffb14a;
}

.cp-info-image {
  width: 100%;
  max-width: 520px;
  margin: 12px 0 0;
  display: block;
  border-radius: 12px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.cp-info-image:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45), 0 0 12px rgba(255, 177, 74, 0.18);
}

.cp-info-panel--image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.cp-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 14px;
  margin-top: 14px;
  align-items: stretch;
}

.cp-team-grid--single {
  grid-template-columns: repeat(2, minmax(360px, 1fr));
}

.cp-team-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: stretch;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, rgba(14, 16, 22, 0.92), rgba(8, 10, 14, 0.96));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cp-team-card:hover,
.cp-team-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(255, 177, 74, 0.22);
  background: linear-gradient(160deg, rgba(16, 18, 26, 0.92), rgba(10, 12, 18, 0.97));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.46);
}

.cp-team-photo-frame {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.cp-team-photo {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  border: none;
  background: transparent;
  display: block;
}

.cp-team-photo[src$=".jpeg"],
.cp-team-photo[src$=".jpg"],
.cp-team-photo[src$=".png"] {
  object-position: center;
}

.cp-team-photo--ankur {
  filter: grayscale(1);
  transform: scale(1.21);
  transform-origin: center;
}

.cp-team-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  height: 100%;
  min-height: 0;
}

.cp-team-photo--placeholder {
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
  background: radial-gradient(circle at 30% 20%, rgba(255, 177, 74, 0.28), transparent 55%),
    radial-gradient(circle at 80% 60%, rgba(47, 191, 113, 0.18), transparent 55%),
    linear-gradient(160deg, rgba(14, 16, 22, 0.92), rgba(8, 10, 14, 0.96));
}

.cp-team-body h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #ffb14a;
  font-weight: 900;
}

.cp-team-proof {
  margin: 0;
  color: #d9dde5;
  font-weight: 600;
  line-height: 1.4;
}

.cp-team-tags {
  list-style: none;
  padding: 0;
  margin: 6px 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cp-team-tags li {
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 177, 74, 0.22);
  background: rgba(255, 177, 74, 0.1);
  color: #e7ebf4;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  line-height: 1;
}

.cp-team-role {
  margin: 2px 0 6px;
  color: #c7c9ce;
  font-size: 0.92rem;
}

.cp-hero-actions-row {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cp-hero-action {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cp-hero-action:hover,
.cp-hero-action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.24);
  outline: none;
}

.cp-hero-action--primary {
  border-color: rgba(255, 177, 74, 0.55);
  background: rgba(255, 177, 74, 0.16);
  color: #ffffff;
}

.cp-hero-action--primary:hover,
.cp-hero-action--primary:focus-visible {
  border-color: rgba(255, 177, 74, 0.75);
  background: rgba(255, 177, 74, 0.22);
}

.cp-hero-action--jump {
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.035);
}

.cp-hero-action--jump:hover,
.cp-hero-action--jump:focus-visible {
  border-color: rgba(255, 177, 74, 0.4);
}

.cp-team-toggle {
  width: fit-content;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 177, 74, 0.35);
  background: rgba(255, 177, 74, 0.12);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cp-team-toggle {
  margin-top: auto;
}

.cp-team-toggle:hover,
.cp-team-toggle:focus-visible {
  border-color: rgba(255, 177, 74, 0.7);
  background: rgba(255, 177, 74, 0.18);
  transform: translateY(-1px);
  outline: none;
}

.cp-team-bio {
  position: relative;
  color: #d9dde5;
  line-height: 1.6;
  flex: 1 1 auto;
  overflow: hidden;
  min-height: 0;
}

.cp-team-bio p {
  margin: 0;
}

.cp-team-bio::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3.2em;
  background: linear-gradient(180deg, rgba(8, 10, 14, 0), rgba(8, 10, 14, 0.96));
  pointer-events: none;
}

.cp-team-card[data-truncated="0"] .cp-team-bio::after {
  display: none;
}

.cp-team-card.is-open .cp-team-bio {
  flex: 0 0 auto;
  overflow: visible;
}

.cp-team-card.is-open .cp-team-bio::after {
  display: none;
}

@media (max-width: 760px) {
  .cp-team-grid {
    grid-template-columns: 1fr;
  }

  .cp-team-bio {
    flex: 0 0 auto;
    max-height: 7.2em;
  }

  .cp-team-photo {
    width: 100%;
    height: 100%;
  }

  .cp-team-photo-frame {
    width: 96px;
    height: 96px;
  }
}

@media (min-width: 900px) {
  .cp-team-card {
    height: 410px;
  }

  .cp-team-card.is-open {
    height: auto;
  }
}

.cp-overlay-block--info .cp-info-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 22px;
}

.cp-info-note {
  margin-top: 12px;
  color: #bfc5cf;
}

.cp-faq {
  display: grid;
  gap: 14px;
}

.cp-faq-item {
  border: 1px solid #ffb14a;
  border-radius: 12px;
  background: transparent;
  overflow: hidden;
}

.cp-faq-question {
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.cp-faq-question::after {
  content: "+";
  color: #ffb14a;
  font-weight: 800;
}

.cp-faq-item.is-open .cp-faq-question::after {
  content: "–";
}

.cp-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 12px;
  color: #ffffff;
  line-height: 1.6;
  transition: max-height 0.25s ease, padding 0.25s ease;
  display: none;
  font-weight: 400;
}

.cp-faq-item.is-open .cp-faq-answer {
  padding: 0 12px 8px 12px;
  max-height: 800px;
  display: block;
}

.ot-theme .cp-faq-item {
  border-color: rgba(120, 170, 255, 0.35);
}

.ot-theme .cp-faq-question {
  color: #e3ebff;
}

.ot-theme .cp-faq-question::after {
  color: var(--primary);
}

.ot-theme .cp-faq-answer {
  color: #d9dde5;
  background: linear-gradient(140deg, rgba(12, 18, 32, 0.85), rgba(9, 14, 26, 0.95));
}

.cp-overlay-block--info .cp-overlay-inner {
  text-align: left;
}

.cp-overlay-block--info .cp-info-grid {
  margin-top: 12px;
}

.cp-service-name {
  margin: 0;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.cp-service-note {
  margin: 2px 0 0;
  color: #c7c9ce;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.cp-service-price {
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #ffd8a8;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 4px;
}

.cp-service-note-rest {
  color: #c7c9ce;
}

.cp-service-duration {
  margin: 4px 0 0;
  color: #c7c9ce;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.company .lede {
  max-width: 720px;
  margin: 6px 0 0;
  text-align: left;
}
.offerings {
  margin-top: 0;
  text-align: center;
  background: none;
  box-shadow: none;
}

.offerings .eyebrow {
  margin: 0 0 2px;
  color: var(--primary);
  letter-spacing: 0.2em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  padding: 8px 14px;
  border: 1px solid rgba(240, 75, 79, 0.65);
  border-radius: 999px;
  background: rgba(240, 75, 79, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offerings .eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(240, 75, 79, 0.4);
}

.offerings .eyebrow:hover,
.offerings .eyebrow:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 28px rgba(240, 75, 79, 0.25);
}

.eyebrow--glow {
  border: 1px solid rgba(240, 75, 79, 0.65);
  color: var(--primary);
  background: rgba(240, 75, 79, 0.18);
  box-shadow: 0 0 12px rgba(240, 75, 79, 0.35);
}

.cp-overlay-block .eyebrow {
  margin: 0 0 6px;
  color: #ffb14a;
  letter-spacing: 0.2em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  padding: 8px 14px;
  border: 1px solid rgba(255, 177, 74, 0.72);
  border-radius: 999px;
  background: rgba(255, 177, 74, 0.18);
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cp-overlay-block .eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: #ffb14a;
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255, 177, 74, 0.45);
}

.cp-overlay-block .eyebrow:hover,
.cp-overlay-block .eyebrow:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 28px rgba(255, 177, 74, 0.18), 0 0 12px rgba(255, 177, 74, 0.45);
}

.cp-overlay-block .lede {
  max-width: none;
  margin: 6px 0 0;
  text-align: left;
}

.cp-overlay-block:not(.cp-overlay-block--news) .cp-overlay-inner {
  text-align: left;
}

.cp-overlay-block:not(.cp-overlay-block--news) .cp-overlay-inner > .lede {
  display: block;
  max-width: none;
  margin: 6px 0 0;
}

.ot-hero {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 140px 0 70px;
  background: transparent;
}

.ot-hero::before {
  content: none;
}

.ot-hero__grid {
  position: relative;
  z-index: 1;
  width: min(var(--page-max), 100%);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: grid;
  grid-template-columns: minmax(400px, 1fr) auto;
  gap: 50px;
  align-items: center;
}

.ot-hero__text {
  display: grid;
  gap: 10px;
  text-align: left;
  align-items: center;
  justify-items: start;
}

.ot-hero__text h1 {
  margin: 12px 0 12px;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.ot-hero__text .lede {
  max-width: 820px;
  margin: 0 0 16px;
  color: #dbe4f8;
  text-align: left;
}

@media (max-width: 960px) {
  .ot-hero__grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  .ot-hero__media-card {
    width: 100%;
    max-width: none;
  }

  .ot-hero__media-card img {
    width: 100%;
    max-width: 100%;
  }
}

.ot-logo {
  max-width: 220px;
  margin: 6px auto 4px;
}

.ot-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(120, 170, 255, 0.25), rgba(70, 120, 220, 0.32));
  border: 1px solid rgba(120, 170, 255, 0.45);
  letter-spacing: 0.24em;
  font-weight: 800;
  font-size: 0.82rem;
  color: #e3ebff;
}

.ot-support-line {
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
  color: #c7c9ce;
  font-size: 0.95rem;
}

.ot-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(120, 170, 255, 0.25);
  background: rgba(12, 18, 32, 0.7);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
}

.ot-badge img {
  height: 28px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(120, 170, 255, 0.3));
}

.ot-hero__actions {
  justify-content: center;
  margin-top: 18px;
}

.ot-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ot-cta-pill {
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 12px 16px;
}

.ot-hero__actions .primary,
.ot-hero__actions .secondary {
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.92rem;
  box-shadow: none;
  border: 1px solid rgba(130, 140, 155, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  text-decoration: none;
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
}

.ot-hero__actions .primary {
  background: linear-gradient(135deg, #2a2f38, #1c1f26);
  color: #f2f4f8;
}

.ot-hero__actions .secondary {
  background: rgba(12, 16, 24, 0.7);
  color: #e4e8f0;
}

.ot-cta-combo {
  display: grid;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(120, 130, 150, 0.36);
  background: linear-gradient(140deg, rgba(12, 14, 22, 0.92), rgba(8, 10, 16, 0.95));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34), 0 0 14px rgba(80, 90, 110, 0.22);
  margin-top: 16px;
  width: 100%;
}

.ot-cta-combo__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ot-cta-combo__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.92rem;
  text-decoration: none;
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  border: none;
}

.ot-cta-combo__link--primary {
  background: linear-gradient(135deg, #2a2f38, #1c1f26);
  color: #f2f4f8;
}

.ot-cta-combo__link--secondary {
  background: rgba(12, 18, 32, 0.65);
  color: #dce6ff;
  border-left: 1px solid rgba(130, 140, 155, 0.3);
}

.ot-cta-combo__link:focus-visible,
.ot-cta-combo__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32), 0 0 14px rgba(100, 110, 125, 0.32);
}

.ot-hero__actions .primary:hover,
.ot-hero__actions .primary:focus-visible,
.ot-hero__actions .secondary:hover,
.ot-hero__actions .secondary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35), 0 0 18px rgba(100, 110, 125, 0.3);
  border-color: rgba(130, 140, 155, 0.7);
}

.ot-micro-proof {
  color: #c7c9ce;
  margin: 14px 0 0;
  font-size: 1rem;
}

.ot-hero__media-card {
  width: max-content;
  justify-self: center;
}

.ot-hero__text .eyebrow {
  margin-bottom: 6px;
}

.ot-hero__text h1 {
  margin: 0 0 10px;
}

.ot-overlay-block {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 32px max(
      var(--page-gutter),
      calc((100vw - var(--page-max)) / 2 + var(--page-gutter))
    ) 60px;
  position: relative;
  z-index: 2;
}

.ot-overlay-block--value {
  margin-top: 0;
}

.ot-overlay-inner,
.ot-overlay-inner--tight {
  width: min(var(--page-max), 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.ot-preview-grid--tight {
  width: min(var(--page-max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.ot-overlay-block--renders,
.ot-overlay-block--status,
.ot-overlay-block--updates {
  margin-top: 0;
}

.ot-hero__media-card,
.ot-media-card {
  background: transparent;
  border: none;
  border-radius: 16px;
  padding: 0;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ot-hero__media-card img,
.ot-media-card img {
  display: block;
  width: 95%;
  max-width: 323px;
  margin-top: 10px;
  border-radius: 12px;
  border: none;
  object-fit: cover;
}

.ot-hero__media-card:hover,
.ot-hero__media-card:focus-visible,
.ot-media-card:hover,
.ot-media-card:focus-visible {
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: none;
}

.ot-section {
  width: min(var(--page-max), 100%);
  margin: 34px auto 0;
  padding: 8px var(--page-gutter) 0;
}

.ot-section__header h2 {
  margin: 0 0 6px;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  letter-spacing: 0.01em;
}

.ot-section__header .lede {
  margin: 0;
  max-width: 720px;
  color: #c7c9ce;
}

.ot-section--center .ot-section__header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.ot-section--center .cta-group {
  justify-content: center;
}

.ot-section--center .cta-form {
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

.ot-section--center .cta-form label {
  width: 100%;
}

.ot-section--split .ot-section__header {
  text-align: left;
}

.ot-section--split .cta-group {
  justify-content: flex-start;
}

.ot-split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.ot-block {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.ot-block .cta-form {
  margin-top: 12px;
}

.ot-section--cols {
  margin-top: 8px;
}

.ot-col-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 12px;
}

@media (max-width: 760px) {
  .ot-col-grid {
    grid-template-columns: 1fr;
  }
}

.ot-col {
  padding: 4px 0;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(140, 150, 165, 0.4);
  background: linear-gradient(150deg, rgba(12, 14, 20, 0.94), rgba(8, 10, 16, 0.98));
  box-shadow: none;
  border-radius: 14px;
  padding: 14px 16px 12px;
  position: relative;
  text-align: left;
  align-self: start;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.ot-col h3 {
  margin: 0;
  font-size: 1.26rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #dce8ff;
}

.ot-col p {
  margin: 0;
  color: #d9dde5;
}

.ot-col-lead {
  color: #e2e6ee;
  font-weight: 600;
  margin-top: 2px;
}

.ot-value-list li {
  position: relative;
  padding-left: 32px;
  counter-increment: otlist;
  font-weight: 500;
  color: #d9dde5;
}

.ot-value-list strong {
  color: #cfd3dc;
}

.ot-col:hover,
.ot-col:focus-within {
  transform: translateY(-3px);
  border-color: rgba(0, 135, 206, 0.58);
  background: linear-gradient(150deg, rgba(14, 24, 38, 0.94), rgba(10, 14, 28, 0.98));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.46), 0 0 24px rgba(0, 135, 206, 0.34);
}

.ot-value-list li::before {
  content: counter(otlist, upper-roman);
  position: absolute;
  left: 0;
  top: 0;
  color: #0b1020;
  background: linear-gradient(135deg, #0087ce, #00a6f0);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.ot-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(150, 160, 175, 0.7);
  color: #d4d8e1;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  text-transform: uppercase;
  background: linear-gradient(130deg, rgba(80, 90, 110, 0.2), rgba(50, 60, 80, 0.18));
  box-shadow: none;
  margin: 0 0 6px;
  width: max-content;
  justify-self: start;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ot-eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: rgba(150, 160, 175, 0.9);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(150, 160, 175, 0.45);
}

.ot-eyebrow:hover,
.ot-eyebrow:focus-visible {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 26px rgba(110, 160, 255, 0.2), 0 0 12px rgba(110, 160, 255, 0.36);
  border-color: rgba(110, 160, 255, 0.9);
}

.ot-value-list {
  margin: 10px 0 0;
  padding-left: 0;
  color: #cdd3de;
  display: grid;
  gap: 8px;
  line-height: 1.45;
  list-style: none;
  counter-reset: otlist;
}

.ot-preview-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.ot-preview-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.ot-preview-grid--single {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.ot-preview-grid img {
  display: block;
  width: 100%;
  border-radius: 12px;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 0;
  margin: 0;
  object-fit: cover;
  background: transparent;
}

.ot-card-grid {
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  width: min(var(--page-max), 100%);
}

.ot-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: grid;
  gap: 10px;
}

.ot-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.ot-card p {
  margin: 0;
  color: #d9dde5;
}

.ot-card ul {
  margin: 0;
  padding-left: 18px;
  color: #d9dde5;
  display: grid;
  gap: 6px;
}

.ot-card .cta-group {
  margin-top: 10px;
  justify-content: flex-start;
}

.ot-section--status .cta-group {
  margin-top: 14px;
}

.ot-section--updates .cta-form {
  max-width: 460px;
  padding: 0;
  display: grid;
  gap: 4px;
}

.ot-section--updates .cta-form label {
  gap: 6px;
}

.ot-section--updates .cta-form input,
.ot-section--updates .cta-form select,
.ot-section--updates .cta-form textarea {
  background: linear-gradient(135deg, rgba(18, 30, 48, 0.7), rgba(10, 16, 30, 0.9));
  border: 1px solid rgba(140, 150, 165, 0.4);
  color: #e3ebff;
  margin-top: 6px;
  padding: 12px;
}

.ot-section--updates .cta-form button {
  background: linear-gradient(135deg, #0087ce, #00a6f0);
  color: #06101f;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(0, 135, 206, 0.3);
  padding: 13px;
}

.ot-form__status {
  margin: 6px 0 0;
  color: #c7c9ce;
  min-height: 20px;
}

.ot-form__status.is-success {
  color: #6be6b0;
}

.ot-form__status.is-error {
  color: #f6a2a5;
}

.ot-form__microcopy {
  margin: -8px 0 0;
  font-size: 0.83rem;
  color: #c7c9ce;
}

.ot-form-check {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  background: linear-gradient(135deg, rgba(18, 28, 48, 0.82), rgba(10, 16, 30, 0.88));
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 135, 206, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-self: start;
}

.ot-form-check input {
  margin-top: 0;
  width: 18px;
  height: 18px;
  accent-color: #9ba3b3;
}

.ot-waitlist .ot-block {
  display: grid;
  gap: 10px;
}

.ot-block--faq {
  display: grid;
  gap: 14px;
}

.ot-waitlist {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.ot-waitlist > * {
  align-self: start;
}

.ot-waitlist-card {
  background: linear-gradient(150deg, rgba(10, 12, 18, 0.96), rgba(6, 8, 12, 0.94));
  border: 1px solid rgba(120, 130, 150, 0.4);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38), 0 0 18px rgba(80, 90, 110, 0.18);
  border-radius: 16px;
  padding: 18px 18px 20px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 18px;
  align-items: start;
  width: 100%;
}

.ot-waitlist-card .cta-form {
  border: 1px solid rgba(120, 130, 150, 0.35);
  border-radius: 14px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  background:
    radial-gradient(circle at 30% 20%, rgba(180, 190, 205, 0.12), transparent 42%),
    radial-gradient(circle at 80% 0%, rgba(150, 160, 180, 0.12), transparent 32%),
    linear-gradient(140deg, rgba(10, 14, 20, 0.9), rgba(6, 9, 16, 0.92));
}

.ot-waitlist-card .ot-col-lead {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 4px 0 2px;
  color: #e2e6ee;
}

.ot-waitlist-card .cta-form label {
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  letter-spacing: 0.02em;
  color: #e5ebf7;
  min-width: 0;
}

.ot-waitlist-card .cta-form input,
.ot-waitlist-card .cta-form select,
.ot-waitlist-card .cta-form textarea {
  margin-top: 8px;
  background: linear-gradient(135deg, rgba(6, 10, 22, 0.9), rgba(10, 16, 30, 0.95));
  border: 1px solid rgba(140, 150, 165, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.25);
  color: #f2f5ff;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.ot-waitlist-card .cta-form input::placeholder,
.ot-waitlist-card .cta-form textarea::placeholder {
  color: rgba(226, 236, 255, 0.6);
}

.ot-waitlist-card .cta-form input:focus,
.ot-waitlist-card .cta-form select:focus,
.ot-waitlist-card .cta-form textarea:focus {
  outline: 2px solid rgba(140, 150, 165, 0.65);
  outline-offset: 2px;
  border-color: rgba(140, 150, 165, 0.8);
  box-shadow: 0 0 0 2px rgba(140, 150, 165, 0.25);
}

.ot-waitlist-card .cta-form button {
  letter-spacing: 0.03em;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(135deg, #2a2f38, #1c1f26);
  color: #f2f4f8;
  box-shadow: none;
  grid-column: 1 / -1;
}

.ot-waitlist-card .ot-form-check {
  background: linear-gradient(130deg, rgba(16, 24, 40, 0.9), rgba(10, 16, 30, 0.92));
  border-color: rgba(140, 150, 165, 0.32);
  letter-spacing: 0.01em;
  grid-column: 1 / -1;
  justify-self: start;
}

.ot-waitlist-card .ot-form__status,
.ot-waitlist-card .ot-form__microcopy {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .ot-waitlist-card {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .ot-waitlist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ot-waitlist-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .ot-waitlist {
    grid-template-columns: 1fr;
  }
}

.ot-block--faq .cp-faq {
  gap: 12px;
}

.ot-block--faq .cp-faq-item {
  border: 1px solid rgba(130, 140, 155, 0.5);
  border-radius: 12px;
  background: rgba(6, 10, 18, 0.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.ot-block--faq .cp-faq-question {
  padding: 10px 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 0.96rem;
  color: #e6eeff;
}

.ot-block--faq .cp-faq-question::after {
  color: #b8bec8;
}

.ot-block--faq .cp-faq-item.is-open .cp-faq-question::after {
  color: #b8bec8;
}

.ot-block--faq .cp-faq-answer {
  background: rgba(6, 10, 20, 0.2);
  color: #d9e2f5;
  padding: 0 12px;
}

.ot-block--faq .cp-faq-item.is-open .cp-faq-answer {
  padding: 0 12px 12px 12px;
}

.ot-cta-slider {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  margin: 18px auto 0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 135, 206, 0.18), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(0, 166, 240, 0.18), transparent 38%),
    linear-gradient(140deg, rgba(12, 20, 38, 0.9), rgba(8, 14, 26, 0.92));
  border: 1px solid rgba(0, 135, 206, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 18px rgba(0, 135, 206, 0.26);
  position: relative;
}

.ot-cta-slider__rail {
  position: absolute;
  inset: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.ot-cta-slider__thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  width: calc(50% - 6px);
  border-radius: 10px;
  background: linear-gradient(135deg, #0087ce, #00a6f0);
  box-shadow: 0 10px 22px rgba(0, 135, 206, 0.35), 0 0 12px rgba(0, 135, 206, 0.28);
  transition: transform 0.25s ease, width 0.25s ease;
  z-index: 0;
}

.ot-cta-slide {
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  color: #e3ebff;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.ot-cta-slide.is-active {
  color: #07101f;
}

.ot-cta-slide:focus-visible {
  outline: 2px solid rgba(140, 190, 255, 0.8);
  outline-offset: 3px;
}

.ot-cta-link {
  text-decoration: none;
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: #e3ebff;
  padding: 11px 22px;
  display: inline-block;
  margin: 18px auto 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0087ce, #00a6f0);
  color: #06101f;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.ot-cta-link:hover,
.ot-cta-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35), 0 0 12px rgba(0, 135, 206, 0.3);
  filter: brightness(1.03);
  outline: none;
}

.offerings__title {
  margin: 6px 0 8px;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.2;
  transition: color 0.25s ease, transform 0.25s ease;
}

.offerings .lede {
  max-width: 900px;
  margin: 2px auto 0;
  line-height: 1.4;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.offering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 18px auto 0;
  max-width: 1100px;
  position: relative;
}

.model-stage {
  width: clamp(200px, 28vw, 250px);
  max-width: 100%;
  height: auto;
  padding-top: 18px;
  border-radius: 16px;
  border: none;
  background: transparent;
  overflow: hidden;
  position: relative;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-stage canvas {
  position: relative;
  z-index: 1;
  display: block;
}

.model-placeholder {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  margin: 0 auto;
  transition: transform 0.25s ease;
  position: relative;
  z-index: 1;
}

.model-placeholder:hover {
  transform: rotate(-0.6deg) translateY(-2px) scale(1.01);
}

.model-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
  background: linear-gradient(180deg, rgba(10, 10, 14, 0.88), rgba(10, 10, 14, 0.7));
  backdrop-filter: blur(2px);
}

.model-overlay.error {
  color: #ffb0b0;
}

.supported-by {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2px 8px;
  margin: 10px auto 12px;
  max-width: 1100px;
  text-align: center;
}

.supported-label {
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.supported-logos {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2px;
}

.supported-logos img {
  height: 152px;
  width: auto;
  filter: brightness(1.1);
  animation: bob 12s ease-in-out infinite;
}

.supported-logos img.raeng {
  height: 70.5px;
}

.supported-logos img.dsit {
  height: 68.25px;
}

.supported-logos img.acc {
  height: 49.5px;
  margin-left: 10pt;
  margin-right: 24px;
}

.offering-card {
  --card-accent: rgba(0, 135, 206, 0.82);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 26px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.04), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.05), transparent 30%),
    linear-gradient(160deg, rgba(26, 28, 38, 0.92), rgba(14, 16, 22, 0.96));
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.offering-card::before,
.offering-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  z-index: 0;
  pointer-events: none;
}

.offering-card::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 50%);
  opacity: 0.55;
}

.offering-card::after {
  background: linear-gradient(145deg, rgba(0, 135, 206, 0.22), transparent 50%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.offering-card h2 {
  margin: 10px 0 8px;
  font-size: 1.65rem;
  transition: color 0.2s ease;
  z-index: 1;
}

.card-logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  z-index: 2;
}

.card-logo img {
  max-width: 180px;
  height: auto;
  transition: transform 0.2s ease;
  border-radius: 10px;
  display: block;
  filter:
    drop-shadow(0 10px 14px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 2px rgba(255, 255, 255, 0.35));
  transform: translateY(-2px);
}

.inline-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  vertical-align: middle;
}

.inline-logo img {
  height: 1.25em;
  width: auto;
  display: inline-block;
}

.inline-logo.hand-underline {
  position: relative;
  padding: 2px 4px;
  border-radius: 8px;
}

.inline-logo.hand-underline.ot-highlight::after,
.inline-logo.hand-underline.cp-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  top: 8px;
  z-index: -1;
  border-radius: inherit;
  filter: blur(10px);
  opacity: 0.6;
}

.inline-logo.hand-underline.ot-highlight::after {
  background: rgba(90, 140, 255, 0.3);
}

.inline-logo.hand-underline.cp-highlight::after {
  background: rgba(47, 191, 113, 0.3);
}

.ot-strip {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  height: 180px;
  background:
    linear-gradient(135deg, rgba(74, 125, 255, 0.6), rgba(127, 179, 255, 0.6)),
    url('banner_light.png');
  background-size: cover;
  background-position: 100% center;
  background-blend-mode: multiply;
  border-radius: 0;
  margin: 0;
  z-index: 1;
  overflow: hidden;
}

.ot-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.6), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18));
  mix-blend-mode: screen;
  background-size: 240% 240%, 280% 280%;
  animation: sheen 7s ease-in-out infinite;
  pointer-events: none;
}

.cp-strip {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  height: 180px;
  background:
    linear-gradient(135deg, rgba(12, 58, 36, 0.7), rgba(15, 79, 48, 0.7)),
    url('banner_light.png');
  background-size: cover;
  background-position: 0% center;
  background-blend-mode: multiply;
  border-radius: 0;
  margin: 0;
  z-index: 1;
  overflow: hidden;
}

.cp-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.5), transparent 44%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.14));
  mix-blend-mode: screen;
  background-size: 220% 220%, 260% 260%;
  animation: sheen 9s ease-in-out infinite alternate;
  pointer-events: none;
}
.logo-caption {
  margin-top: 6px;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.typewriter {
  display: inline;
  overflow: hidden;
  white-space: normal;
  border-right: 2px solid var(--primary);
  animation: none;
  font-weight: 700;
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
}

.typewriter strong {
  font-weight: 900;
  text-shadow: 0 0 1.2px currentColor;
}

.typewriter.is-complete {
  animation: caret 1.4s steps(1, end) infinite;
}

.hand-underline {
  position: relative;
  text-decoration: none;
  z-index: 0;
}

.hand-underline::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 2px;
  height: 70%;
  background:
    linear-gradient(
      120deg,
      rgba(255, 180, 90, 0.48),
      rgba(255, 150, 70, 0.42),
      rgba(255, 210, 120, 0.52)
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 0px,
      rgba(255, 255, 255, 0.06) 6px,
      rgba(255, 255, 255, 0) 6px,
      rgba(255, 255, 255, 0) 12px
    );
  border-radius: 10px;
  transform: rotate(-1.2deg);
  filter: blur(0.8px);
  opacity: 0.2;
  box-shadow: 0 3px 12px rgba(255, 140, 60, 0.14), 0 0 0 1px rgba(255, 160, 90, 0.1);
  mix-blend-mode: multiply;
  transform-origin: left center;
  clip-path: inset(0 100% 0 0);
  animation: highlight-draw 0.9s ease-out forwards, highlight-waver 2.6s ease-in-out infinite alternate 0.9s;
  pointer-events: none;
  z-index: -1;
}

@keyframes highlight-waver {
  0% {
    transform: rotate(-1.2deg) translateY(0);
  }
  50% {
    transform: rotate(-0.4deg) translateY(-1px);
  }
  100% {
    transform: rotate(-1.6deg) translateY(1px);
  }
}

@keyframes highlight-draw {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 0.75;
  }
}

.offering-card p {
  color: var(--muted);
  margin: 0 0 20px;
}

.card-points {
  margin: 10px 0 16px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.card-points li {
  margin-bottom: 6px;
}

.card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  z-index: 1;
}

.card__pill {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #e3e7f2;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s ease, transform 0.2s ease;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  width: fit-content;
  z-index: 1;
}

.card__cta::after {
  content: "→";
  opacity: 0.7;
}

.card__cta--pill {
  margin-top: auto;
}

.offering-card p {
  color: var(--muted);
  margin: 0 0 10px;
  z-index: 1;
}

.offering-card:hover,
.offering-card:focus-visible {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35), 0 0 22px rgba(0, 135, 206, 0.22);
  border-color: rgba(255, 255, 255, 0.16);
}

.offering-card:hover h2,
.offering-card:focus-visible h2,
.offering-card:hover .card__cta,
.offering-card:focus-visible .card__cta {
  color: #f7f9ff;
}

.offering-card:hover .card-logo img,
.offering-card:focus-visible .card-logo img {
  transform: translateY(-3px) scale(1.01);
}

.offering-card--ot {
  --card-accent: rgba(0, 135, 206, 0.9);
  background: linear-gradient(160deg, rgba(24, 32, 48, 0.95), rgba(12, 16, 26, 0.96));
}

.offering-card--ot:hover,
.offering-card--ot:focus-visible {
  border-color: rgba(0, 135, 206, 0.82);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35), 0 0 26px rgba(0, 135, 206, 0.3);
}

.offering-card--ot::after {
  background: linear-gradient(145deg, rgba(0, 135, 206, 0.24), transparent 55%);
}

.offering-card--ot:hover::after,
.offering-card--ot:focus-visible::after {
  opacity: 1;
}

.offering-card--ot:hover .card__cta,
.offering-card--ot:focus-visible .card__cta {
  color: rgba(210, 223, 255, 0.95);
  border-color: rgba(0, 135, 206, 0.6);
}

.offering-card--cp {
  --card-accent: rgba(68, 193, 122, 0.9);
  background: linear-gradient(160deg, rgba(12, 28, 22, 0.96), rgba(6, 16, 12, 0.96));
}

.offering-card--cp:hover,
.offering-card--cp:focus-visible {
  border-color: rgba(47, 191, 113, 0.85);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35), 0 0 26px rgba(47, 191, 113, 0.28);
}

.offering-card--cp:hover .card__cta,
.offering-card--cp:focus-visible .card__cta {
  color: rgba(211, 244, 226, 0.96);
  border-color: rgba(47, 191, 113, 0.6);
}

.offering-card--cp::after {
  background: linear-gradient(145deg, rgba(68, 193, 122, 0.22), transparent 55%);
}

.offering-card--cp:hover::after,
.offering-card--cp:focus-visible::after {
  opacity: 1;
}

.offering-card.is-disabled {
  pointer-events: none;
  opacity: 0.6;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  transform: none;
}

.offering-card.is-disabled .card__cta {
  color: #fff;
  border-color: transparent;
  background: rgba(216, 59, 59, 0.82);
}

.offering-card.is-disabled .card__cta::after {
  display: none;
}

[aria-disabled="true"] {
  cursor: not-allowed;
}

[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.no-js [data-animate] {
  opacity: 1 !important;
  transform: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px max(
      var(--page-gutter),
      calc((100vw - var(--page-max)) / 2 + var(--page-gutter))
    );
  background: linear-gradient(
    120deg,
    rgba(60, 60, 66, 0.95),
    rgba(22, 22, 26, 0.92),
    rgba(40, 40, 46, 0.9),
    rgba(18, 18, 22, 0.9)
  );
  background-size: 240% 240%;
  animation: header-shift 11s ease-in-out infinite;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.minimal-header {
  position: fixed;
  top: 26px;
  left: 0;
  right: 0;
  gap: 16px;
  padding: 0 34px;
  background: transparent;
  border: none;
  box-shadow: none;
  animation: none;
  backdrop-filter: none;
  justify-content: center;
  z-index: 20;
}

.cp-theme .minimal-header {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.ot-theme .minimal-header {
  padding-left: 18px;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 0;
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transform: scale(5);
  transform-origin: left top;
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.35s ease, transform 0.35s ease;
  align-self: flex-start;
}

.logo span {
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  align-items: center;
  position: relative;
}

.ot-theme .logo img {
  width: 180px;
  height: auto;
  transform: none;
  clip-path: inset(0);
}

.ot-theme .logo {
  gap: 5px;
  margin-left: -2px;
  align-items: flex-start;
}

.ot-theme .logo img {
  margin-top: -4px;
}

.ot-theme .minimal-header .logo {
  left: 30px;
  top: 4px;
}

body:not(.ot-theme):not(.cp-theme) .minimal-header .logo img {
  width: 215px;
  height: auto;
  transform: none;
  clip-path: inset(0);
  margin-top: -4px;
}

body:not(.ot-theme):not(.cp-theme) .minimal-header.is-scrolled .logo img {
  clip-path: inset(0 70% 0 0);
}

.cp-theme .minimal-header.is-scrolled .logo img {
  clip-path: inset(0 50% 0 0);
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--primary);
}

.main-nav .ep-contact-btn,
.main-nav .ep-contact-btn:hover,
.main-nav .ep-contact-btn:focus-visible {
  color: #eafff6;
}

.minimal-header .logo {
  flex: 0 0 auto;
  position: absolute;
  left: 28px;
  top: 2px;
}

.minimal-header.is-scrolled .logo img {
  clip-path: inset(0 74% 0 0);
}

.cp-theme .minimal-header.is-scrolled .logo img {
  clip-path: inset(0 74% 0 0);
}

.minimal-header .main-nav,
.minimal-header .menu-toggle {
  display: none;
}

.tri-nav {
  flex: 0 0 auto;
  display: inline-flex;
  justify-content: center;
  align-items: stretch;
  max-width: 560px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.2));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.tri-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  flex: 0 0 auto;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.98rem;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  gap: 6px;
}

.tri-link + .tri-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.tri-link:hover,
.tri-link:focus-visible {
  background: linear-gradient(145deg, rgba(90, 140, 255, 0.14), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.tri-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(90, 140, 255, 0.25), rgba(255, 255, 255, 0.08));
  background-size: 200% 200%;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.25s ease, transform 0.45s ease, background-position 0.45s ease;
  pointer-events: none;
  mix-blend-mode: screen;
}

.tri-link:hover::after,
.tri-link:focus-visible::after {
  opacity: 0.9;
  transform: translateX(0);
  background-position: 100% 50%;
}

.minimal-header .nav-contact {
  flex: 0 0 auto;
  padding: 12px 18px;
  position: absolute;
  right: 30px;
  top: 0;
}

body:not(.ot-theme):not(.cp-theme) .minimal-header .nav-contact {
  padding: 6px 12px;
  font-size: 0.86rem;
}

.ot-theme .minimal-header .nav-contact,
.cp-theme .minimal-header .nav-contact {
  padding: 6px 12px;
  font-size: 0.86rem;
}

.mini-menu {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  padding: 8px;
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 0;
}

.mini-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mini-menu__panel {
  display: none;
  position: absolute;
  top: 70px;
  left: 18px;
  right: 18px;
  min-width: 220px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(6, 7, 15, 0.95);
  border: 1px solid var(--border);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  z-index: 21;
  gap: 10px;
}

.mini-menu__panel a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.mini-menu__panel .ep-contact-btn {
  width: 100%;
  justify-content: center;
}

.minimal-header.mini-open .mini-menu__panel {
  display: grid;
}

.minimal-header.mini-open .mini-menu span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.minimal-header.mini-open .mini-menu span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.ep-contact-btn {
  --ep-btn-x: 50%;
  --ep-btn-y: 50%;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 110, 120, 0.85);
  background: linear-gradient(#140809, #0f0506);
  color: #ffecee;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.86rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  isolation: isolate;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.38);
  color: #ffecee;
}

.ep-contact-btn::before {
  content: "";
  position: absolute;
  inset: -16px;
  background: radial-gradient(circle at var(--ep-btn-x) var(--ep-btn-y), rgba(255, 120, 130, 0.3), transparent 55%);
  filter: blur(20px);
  opacity: 0.35;
  transition: opacity 0.2s ease, filter 0.2s ease;
  z-index: 0;
}

.ep-contact-btn::after {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 20% 20%, rgba(255, 140, 150, 0.18), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(200, 60, 70, 0.18), transparent 42%);
  opacity: 0.2;
  transform: rotate(3deg);
  z-index: 0;
}

.ep-contact-btn span {
  position: relative;
  z-index: 1;
}

.ep-contact-btn:hover,
.ep-contact-btn:focus-visible {
  color: #eafff6;
}

.ep-contact-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45), 0 0 18px rgba(255, 120, 130, 0.25);
  border-color: rgba(255, 110, 120, 0.95);
  background:
    linear-gradient(#19090b, #19090b) padding-box,
    linear-gradient(135deg, rgba(255, 120, 130, 0.7), rgba(180, 60, 70, 0.8)) border-box;
}

.ep-contact-btn:hover::before {
  opacity: 0.5;
  filter: blur(26px);
}

.ep-contact-icon {
  font-size: 1rem;
  transform: translateY(1px);
  transition: transform 0.18s ease-out;
}

.ep-contact-btn:hover .ep-contact-icon {
  transform: translate(3px, 1px);
}

.nav-contact {
  padding: 6px 12px;
  border-radius: 999px;
  width: auto;
  justify-content: center;
  white-space: nowrap;
}

@keyframes ep-geo-pan {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 80% 50%;
  }
  100% {
    background-position: 0% 100%;
  }
}

@keyframes ep-geo-slide {
  0% {
    background-position: 0% 20%, 20% 60%;
  }
  50% {
    background-position: 60% 40%, 0% 30%;
  }
  100% {
    background-position: 100% 80%, 80% 0%;
  }
}

.header-cta {
  display: flex;
  gap: 12px;
}

.header-cta a,
.cta-group a,
.cta-group button,
.cta-form button,
.workflow__content a,
.text-link,
.faq-question {
  font-family: "Space Grotesk", "Inter", system-ui;
}

.header-cta a {
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
}

.header-cta .ghost {
  border-color: var(--border);
  color: var(--muted);
}

.header-cta .primary {
  background: var(--primary);
  color: var(--text);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  border: none;
  background: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  margin-left: 16px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  width: 100%;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 120px 0 80px;
  position: relative;
}

.hero-brand {
  max-width: 320px;
  margin-bottom: 12px;
  margin-inline: auto;
}

.hero-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.company__content .hero-brand {
  max-width: 640px;
  margin-bottom: 16px;
  margin-inline: 0;
  display: flex;
  align-items: flex-start;
}

.company__content .hero-brand img {
  height: 320px;
  width: auto;
  display: block;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  margin: 10px 0 18px;
  line-height: 1.15;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.badge {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 30px 0 20px;
  justify-content: center;
}

.primary,
.secondary {
  border-radius: 999px;
  padding: 14px 28px;
  border: none;
  font-size: 1rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  text-decoration: none;
}

.primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #0a0818;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  cursor: pointer;
}

.trust-bar {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.trust-bar p {
  margin-top: 0;
  color: var(--muted);
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text);
}

.hero-visual {
  position: relative;
  min-height: 380px;
  perspective: 1200px;
  display: flex;
  align-items: center;
}

.hero-card {
  position: relative;
  background: rgba(7, 12, 34, 0.8);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  will-change: transform;
}

.hero-card__header,
.hero-card__body,
.hero-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.metric {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--border);
}

.metric strong {
  display: block;
  font-size: 1.5rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin: 40px 0 80px;
}

.stats div {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.stats p {
  margin: 0;
  font-size: 2.4rem;
}

.stats span {
  color: var(--muted);
}

.stat-number {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 600;
}

.panel {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 40px;
  padding: 60px;
  border: 1px solid var(--border);
  margin-bottom: 80px;
}

.panel__header h2 {
  margin: 12px 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.panel__header p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-grid article {
  background: rgba(6, 7, 15, 0.8);
  border-radius: 28px;
  border: 1px solid var(--border);
  padding: 28px;
}

.feature-grid ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.founder-note {
  margin-top: 40px;
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
}

.founder-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.workflow__image {
  padding: 30px;
}

.screen {
  border-radius: 32px;
  border: 1px solid var(--border);
  background: rgba(8, 8, 10, 0.94);
  padding: 24px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
  animation: float 12s ease-in-out infinite;
  will-change: transform;
}

.screen__status {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.8rem;
}

.pulse {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
}

.screen__chart {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex: 1;
}

.chart-bar {
  width: 20%;
  border-radius: 12px 12px 4px 4px;
  background: var(--primary);
  min-height: 120px;
  height: var(--v);
}

.screen__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.screen__footer button {
  border-radius: 999px;
  border: none;
  padding: 10px 20px;
  background: var(--accent);
  color: #041018;
  font-weight: 600;
}

.workflow__content ol {
  padding-left: 20px;
  color: var(--muted);
}

.workflow__content li {
  margin-bottom: 14px;
}

.text-link {
  color: var(--primary-strong);
  text-decoration: none;
  font-weight: 600;
}

.marquee {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  margin: 120px 0 80px;
  background: rgba(255, 255, 255, 0.02);
}

.marquee__inner {
  display: flex;
  gap: 48px;
  padding: 20px 40px;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  background: rgba(5, 5, 5, 0.85);
}

.marquee:hover .marquee__inner {
  animation-play-state: paused;
}

.marquee__inner span {
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes sheen {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes float-slow {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes typing {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes caret {
  0% {
    border-color: transparent;
  }
  50% {
    border-color: var(--primary);
  }
  100% {
    border-color: transparent;
  }
}

@keyframes color-shift {
  0% {
    color: var(--text);
  }
  50% {
    color: #e8dede;
  }
  100% {
    color: var(--text);
  }
}

@keyframes pulse-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bob {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes glowShift {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@keyframes float {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 10px);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-grid article {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  background: rgba(6, 7, 15, 0.8);
}

.testimonial-grid p {
  font-size: 1.05rem;
}

.testimonial-grid span {
  color: var(--muted);
}

.linkedin-feed {
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 60px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 80px;
}

.linkedin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 32px;
}

.linkedin-grid article {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
  background: rgba(6, 7, 15, 0.8);
}

.post-label {
  margin-top: 0;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.post-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  margin: 16px 0;
  min-height: 300px;
}

.post-frame iframe {
  width: 100%;
  min-height: 320px;
  border: none;
}

.post-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.faq {
  margin-bottom: 80px;
}

.faq-list article {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: inherit;
  font-size: 1.1rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 0.3s ease;
}

.faq-list article.active .faq-answer {
  max-height: 320px;
}

.cta {
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 60px;
  background: linear-gradient(140deg, rgba(20, 20, 24, 0.94), rgba(8, 8, 10, 0.92));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: center;
}

.cta-form {
  display: grid;
  gap: 18px;
}

.cta-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: var(--muted);
}

.cta-form .ot-form-check {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  margin-top: 10px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(6, 7, 15, 0.9);
  color: var(--text);
}

.cta-form button {
  border: none;
  border-radius: 999px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--primary);
  color: var(--text);
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(120, 120, 130, 0.4);
  padding: 10px max(
      var(--page-gutter),
      calc((100vw - var(--page-max)) / 2 + var(--page-gutter))
    ) 14px;
  color: var(--muted);
  background: transparent;
}

.drift-field {
  position: fixed;
  top: 0;
  left: -10%;
  right: -10%;
  height: 120vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.45;
  mix-blend-mode: screen;
  width: 120%;
}

.drift-rect {
  position: absolute;
  display: block;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(200, 200, 210, 0.14);
  filter: blur(28px);
  box-shadow: 0 0 110px rgba(140, 150, 160, 0.3);
  animation: drift-across 32s linear infinite;
  transform: translateX(-60vw) skewX(-2deg);
  will-change: transform, opacity;
}

.drift-rect:nth-child(1) {
  top: 5%;
  width: 340px;
  height: 340px;
  animation-duration: 30s;
  animation-delay: -6s;
  opacity: 0.55;
}

.drift-rect:nth-child(2) {
  top: 25%;
  width: 200px;
  height: 200px;
  animation-duration: 36s;
  animation-delay: -18s;
  opacity: 0.42;
}

.drift-rect:nth-child(3) {
  top: 45%;
  width: 440px;
  height: 440px;
  animation-duration: 34s;
  animation-delay: -12s;
  opacity: 0.38;
}

.drift-rect:nth-child(4) {
  top: 65%;
  width: 260px;
  height: 260px;
  animation-duration: 38s;
  animation-delay: -22s;
  opacity: 0.5;
}

.drift-rect:nth-child(5) {
  top: 82%;
  width: 360px;
  height: 360px;
  animation-duration: 40s;
  animation-delay: -28s;
  opacity: 0.46;
}

.drift-rect:nth-child(6) {
  top: 88%;
  width: 300px;
  height: 300px;
  animation-duration: 44s;
  animation-delay: -34s;
  opacity: 0.4;
}

.drift-rect:nth-child(7) {
  top: 92%;
  width: 420px;
  height: 420px;
  animation-duration: 48s;
  animation-delay: -40s;
  opacity: 0.52;
}

@keyframes drift-across {
  0% {
    transform: translateX(-60vw) skewX(-2deg);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  100% {
    transform: translateX(160vw) skewX(-2deg);
    opacity: 0.18;
  }
}

.cp-theme .company__content,
.cp-theme .offering-card--cp {
  border-color: rgba(31, 138, 83, 0.25);
}

.leader-card {
  --rx: 0deg;
  --ry: 0deg;
  --elev: 0px;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: none;
  border: none;
  border-radius: 14px;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--elev));
  transition: transform 0.25s ease;
}

.leader-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: none;
  filter: none;
  transition: none;
}

.leader-main {
  z-index: 3;
  position: absolute;
  left: 12px;
  bottom: 12px;
  right: 12px;
  padding: 8px 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.65));
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.leader-name {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.leader-title {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.leader-overlay {
  display: none;
}

.leader-card:hover {
  box-shadow: none;
}

.leader-card:hover .leader-photo,
.leader-card:focus-within .leader-photo {
  filter: none;
  transform: none;
}

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

.leader-cta {
  margin-top: 12px;
}

.leader-panel {
  background: none;
  border: none;
  box-shadow: none;
  padding-inline: 0;
}

.leader-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  margin-bottom: 12px;
}

.leader-marquee__track {
  display: inline-flex;
  gap: 16px;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  animation: marquee 14s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.leader-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.leader-link:hover,
.leader-link:focus-visible {
  text-decoration: underline;
  color: var(--primary);
}

.cp-theme .logo img {
  width: 198px;
  height: auto;
  transform: none;
}

.footer-shell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px 24px;
  align-items: start;
  max-width: var(--page-max);
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.footer-brand img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

.footer-links {
  display: grid;
  gap: 2px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.footer-meta {
  display: grid;
  gap: 0px;
  font-size: 0.95rem;
  text-align: left;
}

@media (max-width: 640px) {
  .footer-shell {
    text-align: center;
    justify-items: center;
  }

  .footer-meta {
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .nav-contact {
    width: 100%;
  }
}

.video-modal {
  border: none;
  border-radius: 24px;
  padding: 0;
  width: min(560px, 90vw);
  background: rgba(6, 7, 15, 0.98);
  color: var(--text);
}

.video-modal .modal-body {
  padding: 40px;
}

.modal-close {
  border: none;
  background: none;
  color: var(--muted);
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2rem;
}

@media (max-width: 1100px) {
  .main-nav {
    position: absolute;
    top: calc(100% + 18px);
    right: max(
      var(--page-gutter),
      calc((100vw - var(--page-max)) / 2 + var(--page-gutter))
    );
    left: max(
      var(--page-gutter),
      calc((100vw - var(--page-max)) / 2 + var(--page-gutter))
    );
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(
      160deg,
      rgba(22, 22, 30, 0.96),
      rgba(12, 12, 18, 0.95)
    );
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.45);
    display: none;
  }

  .site-header.open .main-nav {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.open .menu-toggle span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.open .menu-toggle span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .company__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-copy-columns {
    columns: 1;
  }

  .company {
    padding: 68px 0 18px;
  }

  .company__visual {
    order: 1;
    margin-top: 12px;
    display: flex;
    justify-content: center;
    justify-self: center;
    align-self: center;
    width: 100%;
  }

  .company__visual img {
    width: 80%;
  }

  .supported-by {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .supported-logos {
    justify-content: center;
    width: 100%;
  }

  .model-stage {
    width: clamp(180px, 70vw, 220px);
    max-width: 260px;
    height: auto;
    margin: 0 auto;
    padding-top: 24px;
  }

  .model-placeholder {
    width: 96%;
    height: auto;
  }

  .minimal-header {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .minimal-header .tri-nav {
    display: none;
  }

  .minimal-header .nav-contact {
    display: none;
  }

  .minimal-header .mini-menu {
    display: inline-flex;
  }

  .minimal-header .logo {
    position: absolute;
    left: 30px;
    top: 0;
  }
}

@media (max-width: 640px) {
  main {
    padding-bottom: 56px;
  }

  .panel,
  .cta {
    padding: 32px;
  }

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

  .offering-grid::before {
    display: none;
  }
}

body.modal-open {
  overflow: hidden;
}

.video-modal::backdrop {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

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

  .hero-card,
  .screen,
  .marquee__inner,
  .company__content::before,
  .company__content::after {
    animation: none !important;
  }

  .hero-card {
    transition: none !important;
  }
}

@keyframes header-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cp-info-panel--numbered .cp-info-list--numbered li::before {
  width: auto;
  min-width: 26px;
  padding: 4px 8px;
}
