/* Metrics-matched fallback to eliminate font-swap layout shift (CLS).
   Approximates Inter so fallback text occupies the same space until Inter loads. */
@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial');
  ascent-override: 90.20%;
  descent-override: 22.48%;
  line-gap-override: 0.00%;
  size-adjust: 107.40%;
}

/* --- GLOBAL / RESET --- */
html {
  scroll-padding-top: 88px;
  scrollbar-width: thin;
  background-image:
    repeating-linear-gradient(to bottom, rgba(140, 140, 140, 0.28) 0 7px, transparent 7px 14px),
    repeating-linear-gradient(to bottom, rgba(140, 140, 140, 0.28) 0 7px, transparent 7px 14px),
    repeating-linear-gradient(to bottom, rgba(140, 140, 140, 0.28) 0 7px, transparent 7px 14px);
  background-size: 1px 100%, 1px 100%, 1px 100%;
  background-position: calc(50% - 320px) 0, 50% 0, calc(50% + 320px) 0;
  background-repeat: no-repeat;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background-color: #ffffff;
}

::-webkit-scrollbar {
  width: 8px;
}

/* --- HEADER --- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  box-sizing: border-box;
  font-family: Inter, "Inter Fallback", sans-serif;
}

.site-header::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  flex-grow: 0;
  opacity: 0.5;
  mix-blend-mode: color-burn;
  background-color: #8c8c8c;
  pointer-events: none;
}

.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 64px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px 32px;
  box-sizing: border-box;
}

.site-header-logo {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.site-header-logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(260px, 50vw);
  flex-shrink: 0;
  object-fit: contain;
}

.site-header-logo-text {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  flex-grow: 0;
  width: auto;
  height: auto;
  mix-blend-mode: color-burn;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.25px;
  text-align: left;
  color: #533afd;
}

.site-header-menu-btn {
  display: none;
}

.site-header-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 26px;
}

.site-header-link {
  width: 90px;
  height: 16px;
  flex-grow: 0;
  mix-blend-mode: color-burn;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.25px;
  text-align: left;
  color: rgba(10, 10, 10, 0.68);
  text-decoration: none;
}

.site-header-link-arrow {
  font-size: 14px;
  line-height: 1;
  opacity: 0.85;
}

.site-header-cta {
  width: 144px;
  height: 32px;
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 3px 5px;
  border-radius: 36px;
  background-color: #2b2b2b;
  line-height: 1;
  letter-spacing: -0.25px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.25s ease;
}

.site-header-cta:hover {
  background-color: #030303;
}

.site-header-cta .site-header-link-arrow {
  opacity: 1;
}

.home-nav-modal {
  display: none;
}

/* --- HERO SECTION --- */
.site-hero {
  position: relative;
  width: 100%;
  height: 798px;
  min-height: 798px;
  box-sizing: border-box;
  overflow: hidden;
}

.site-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  isolation: isolate;
  contain: layout paint style;
  background-color: #fff;
}

.site-hero-bg-video-stack {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.site-hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.site-hero-bg-video.is-ready {
  opacity: 1;
}

.site-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 88px;
  padding: 83px 64px 83px 64px;
  width: 100%;
  box-sizing: border-box;
}

.site-hero-copy {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-hero-eyebrow {
  margin: 0 0 4px;
  height: auto;
  align-self: stretch;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: -0.25px;
  text-align: left;
  color: #533afd;
}

.site-hero-title {
  margin: 0;
  width: 544px;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 64px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.05;
  letter-spacing: -0.25px;
  text-align: left;
  padding: 24px 0;
  background: linear-gradient(90deg, #2b2b2b 0%, #6b7280 50%, #1a1a1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.9;
}

.site-hero-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
}

.site-hero-title-rest {
  color: rgba(10, 10, 10, 0.68);
}

.site-hero-desc {
  margin: 0;
  padding: 0;
  padding-bottom: 32px;
  width: 500px;
  max-width: 100%;
  align-self: stretch;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.25px;
  text-align: left;
  color: #0a0a0a;
}

.site-hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.site-hero-btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 12px 32px;
  border-radius: 36px;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.25px;
  text-decoration: none;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.site-hero-btn:hover {
  background-color: #030303;
  color: #fff;
}

.site-hero-btn--primary {
  color: #fff;
  background-color: #2b2b2b;
}

.site-hero-btn--secondary {
  color: #2b2b2b;
  background-color: #fff;
  border: 1px solid #2b2b2b;
}

.site-hero-btn--secondary:hover {
  background-color: #ededed;
  color: #030303;
  border-color: #030303;
}

.site-hero-dashboard {
  position: absolute;
  right: 0;
  top: 56%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: min(680px, 48vw);
  pointer-events: none;
}

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

/* Hero code card */
.hero-code-card {
  display: none;
  position: absolute;
  left: 60px;
  bottom: 2%;
  z-index: 4;
  width: 330px;
  height: 220px;
  box-sizing: border-box;
  flex-direction: column;
  background-color: #f8fbfe;
  border-radius: 8px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow:
    0 4px 12px rgba(10, 10, 10, 0.08),
    0 16px 40px rgba(10, 10, 10, 0.12);
  transform: translateX(-18%);
  overflow: hidden;
  pointer-events: none;
}

.hero-code-card__tools {
  display: flex;
  align-items: center;
  padding: 5px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.hero-code-card__circle {
  padding: 0 2px;
}

.hero-code-card__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.hero-code-card__dot--red   { background-color: #ff605c; }
.hero-code-card__dot--yellow { background-color: #ffbd44; }
.hero-code-card__dot--green  { background-color: #00ca4e; }

.hero-code-card__content {
  flex: 1;
  min-height: 0;
  padding: 12px 12px 14px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hero-code-card__content::-webkit-scrollbar {
  display: none;
}

.hero-code-card__pre {
  margin: 0;
}

.hero-code-card__content pre {
  margin: 0;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 10px;
  line-height: 1.55;
  color: #0a0a0a;
  white-space: pre-wrap;
  word-break: break-word;
}

.hero-code-card__kw      { color: #533afd; }
.hero-code-card__fn      { color: #0a0a0a; }
.hero-code-card__prop    { color: #7e858b; }
.hero-code-card__str     { color: #00a67e; }
.hero-code-card__comment { color: #7e858b; }

.hero-code-card__cursor {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  margin-left: 1px;
  background-color: #533afd;
  vertical-align: text-bottom;
  animation: hero-code-cursor-blink 1s step-end infinite;
}

@keyframes hero-code-cursor-blink {
  50% { opacity: 0; }
}

@media (min-width: 1025px) {
  .site-hero-dashboard .hero-code-card {
    display: flex;
  }
}

.site-hero-dashboard-wide {
  display: none;
}

@media (min-width: 1550px) {
  .site-hero-main {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    box-sizing: border-box;
    width: 100%;
    max-width: 1280px;
    margin: 88px auto 0;
    padding: 83px 64px;
  }

  .site-hero-main .site-hero-content {
    margin-top: 0;
    padding: 0;
    flex: 1;
    min-width: 0;
    width: auto;
    max-width: none;
  }

  .site-hero-dashboard-wide {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    position: relative;
  }

  .site-hero-dashboard-wide-img {
    display: block;
    max-width: min(600px, 38vw);
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    box-shadow:
      0 4px 6px rgba(10, 10, 10, 0.04),
      0 12px 40px rgba(10, 10, 10, 0.12);
    transform: scaleY(1.06);
    transform-origin: center center;
  }

  .site-hero-dashboard-wide .hero-code-card {
    display: flex;
    left: 15px;
    bottom: -10%;
    width: 300px;
    height: 200px;
    transform: translateX(-14%);
  }

  .site-hero-dashboard-wide .hero-code-card__content {
    padding: 12px 12px 16px;
  }

  .site-hero-dashboard-wide .hero-code-card__content pre {
    font-size: 9px;
    line-height: 1.5;
  }

  .site-hero-dashboard {
    display: none;
  }
}

/* --- FOOTER --- */
footer.site-footer {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: radial-gradient(circle at top left, #102A5C 0%, #050816 45%, #02040A 100%);
  font-family: Inter, "Inter Fallback", sans-serif;
  overflow: hidden;
}

footer.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../../../img/FooterBackgroundLogo.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  opacity: 0.02;
  pointer-events: none;
}

.site-footer-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  box-sizing: border-box;
}

.site-footer-main {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 100px;
  width: 100%;
}

.site-footer-brand {
  width: 310px;
  max-width: 100%;
  flex-shrink: 0;
}

.site-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.site-footer-logo:hover {
  opacity: 0.85;
}

.site-footer-logo-img {
  display: block;
  width: 40px;
  height: 40px;
}

.site-footer-logo-text {
  width: 99px;
  height: 24px;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.25px;
  text-align: left;
  color: #ffffff;
}

.site-footer-desc {
  margin: 20px 0;
  width: 310px;
  height: 63px;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.25px;
  text-align: left;
  color: #9ca3af;
}

.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.site-footer-nav {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 25%;
  width: auto;
  max-width: 100%;
  flex: 0 0 auto;
  min-width: 0;
  margin-top: -15px;
}

.site-footer-col {
  width: max-content;
  max-width: 140px;
}

.site-footer-col:last-child {
  max-width: min(280px, 100%);
  min-width: 0;
}

.site-footer-col--links {
  max-width: 160px;
}

.site-footer-heading {
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.25px;
  text-align: left;
  color: #ffffff;
}

.site-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.25px;
  text-align: left;
  color: #9ca3af;
}

.site-footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.site-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer-contact-item {
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: #9ca3af;
}

.site-footer-contact-item a {
  color: #9ca3af;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
  transition: color 0.2s ease;
}

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

.site-footer-contact-item--stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.site-footer-contact-label {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: #ffffff;
}

.site-footer-copyright {
  margin: 64px 0 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.25px;
  color: #7e858b;
}

.site-footer-copyright-text {
  margin: 0;
}

.site-footer-legal {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

.site-footer-legal a {
  color: #7e858b;
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.25px;
  transition: color 0.2s ease;
}

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

/* ============================================================
   SECTION LAYOUT — shared across all feature sections
   ============================================================ */

/* Sections get alternating backgrounds relative to .feat-hero */
.feat-hero ~ .Section {
  position: relative;
}

.feat-hero ~ .Section:nth-of-type(odd) {
  clip-path: inset(0 -100vmax);
}

.feat-hero ~ .Section:nth-of-type(odd)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100vmax;
  right: -100vmax;
  background-image: linear-gradient(180deg, #F7FAFF 0%, #EEF4FF 100%);
  z-index: -1;
}

.feat-hero ~ .Section:nth-of-type(even) {
  background-color: #ffffff;
  box-shadow: 0 0 0 100vmax #ffffff;
  clip-path: inset(0 -100vmax);
}

.Section {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 64px;
  padding: 80px 64px;
  box-sizing: border-box;
}

.Content {
  align-self: stretch;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}

.Content--section3 {
  flex-grow: 1;
  width: auto;
  box-sizing: border-box;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.section-label {
  height: 16px;
  align-self: stretch;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.25px;
  text-align: left;
  color: #533afd;
}

.section-title {
  margin: 0;
  align-self: stretch;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 40px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.05;
  letter-spacing: -0.25px;
  text-align: left;
  color: #0a0a0a;
  padding: 24px 0px;
}

.section-title .text-style-1 {
  color: #7e858b;
}

.section-content {
  align-self: stretch;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.25px;
  text-align: left;
  color: #0a0a0a;
}

.cta-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 0;
}

.cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 32px;
  border-radius: 36px;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.25px;
  text-decoration: none;
  box-sizing: border-box;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.cta-button.primary {
  color: #fff;
  background-color: #2b2b2b;
  border-color: #2b2b2b;
}

.cta-button.primary:hover {
  background-color: #030303;
  border-color: #030303;
  color: #fff;
}

.cta-button.secondary {
  color: #2b2b2b;
  background-color: #fff;
  border-color: #2b2b2b;
}

.cta-button.secondary:hover {
  background-color: #ededed;
  color: #030303;
  border-color: #030303;
}

.page-feature .cta-button.primary {
  background-color: #2b2b2b;
  border-color: #2b2b2b;
}

.page-feature .cta-button.primary:hover {
  background-color: #030303;
  border-color: #030303;
}

.section-list {
  margin: 0;
  padding: 24px 0 0 30px;
  align-self: stretch;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.25px;
  text-align: left;
  color: #0a0a0a;
  list-style: disc;
}

.section-list li {
  margin-bottom: 0.5rem;
}

.Placeholder {
  width: 100%;
  max-width: 628px;
  flex-grow: 0;
  flex-shrink: 1;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 6px 16px rgba(28, 32, 46, 0.06);
  overflow: hidden;
  position: relative;
}

.Placeholder--image-id {
  aspect-ratio: 640 / 400;
}

.Placeholder-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

@media (min-width: 1025px) {
  .Section ~ .Section {
    justify-content: flex-start;
    align-items: center;
    gap: 64px;
  }

  .Section > .Content {
    flex: 1 1 0;
    min-width: 0;
  }

  .Section > .Placeholder {
    width: 100%;
    max-width: 613px;
    flex: 0 1 613px;
    aspect-ratio: 1350 / 850;
  }

  .Section .Placeholder-img {
    object-fit: contain;
  }
}

/* ============================================================
   FEATURE PAGE – HERO  (feat-hero)
   ============================================================ */

/* Override .site-hero dimensions; use gradient instead of video (product page) */
.feat-hero {
  height: auto;
  min-height: 760px;
  overflow: visible;
  background: radial-gradient(ellipse 110% 90% at 82% -5%, #ede9fe 0%, #fce7f3 32%, #ffffff 65%);
}

.feat-hero .site-hero-bg {
  display: none;
}

/* Two-column inner wrapper */
.feat-hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 160px 64px 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
  box-sizing: border-box;
}

.feat-hero-copy {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feat-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  border: 1.5px solid rgba(83, 58, 253, 0.2);
  background: rgba(83, 58, 253, 0.05);
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #533afd;
  margin: 0 0 24px;
}

.feat-hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.feat-hero-title {
  margin: 0 0 20px;
  padding: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 62px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #0a0a0a;
  -webkit-text-fill-color: #0a0a0a;
  overflow: visible;
}

.feat-hero-title-accent {
  display: inline-block;
  line-height: 1.15;
  background: linear-gradient(90deg, #2b2b2b 0%, #6b7280 50%, #1a1a1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 0.12em;
  overflow: visible;
}

.feat-hero-desc {
  margin: 0 0 24px;
  padding: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: #4b5563;
  max-width: 500px;
}

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

.feat-hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1.5px solid #e5e7eb;
  background: #ffffff;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(10, 10, 10, 0.06);
}

.feat-hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.feat-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 999px;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.feat-hero-btn--primary {
  background: #2b2b2b;
  color: #ffffff;
  border: 2px solid transparent;
}

.feat-hero-btn--primary:hover {
  background: #030303;
}

.feat-hero-btn--secondary {
  background: #ffffff;
  color: #2b2b2b;
  border: 2px solid #d1d5db;
}

.feat-hero-btn--secondary:hover {
  border-color: #030303;
  color: #030303;
  background-color: #ededed;
}

/* Feature page only — centered white hero (home page font sizes) */
.page-feature .feat-hero {
  height: auto;
  min-height: auto;
  background: transparent;
}

.page-feature .feat-hero-inner {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 64px 64px;
  gap: 0;
}

.page-feature .feat-hero-copy {
  width: 100%;
  max-width: 900px;
  align-items: center;
  text-align: center;
}

.page-feature .feat-hero-title {
  margin: 0 0 32px;
  padding: 16px 0;
  width: 100%;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.25px;
  text-align: center;
  color: #0a0a0a;
  -webkit-text-fill-color: #0a0a0a;
  overflow: visible;
}

.page-feature .feat-hero-title-line {
  display: block;
  width: 100%;
  overflow: visible;
}

.page-feature .feat-hero-title-accent {
  display: inline-block;
  line-height: 1.15;
  background: linear-gradient(90deg, #2b2b2b 0%, #6b7280 50%, #1a1a1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 0.12em;
  overflow: visible;
}

.page-feature .feat-hero-actions {
  justify-content: center;
  gap: 16px;
}

.page-feature .feat-hero .site-hero-btn--primary {
  background-color: #2b2b2b;
}

.page-feature .feat-hero .site-hero-btn--primary:hover {
  background-color: #030303;
  color: #fff;
}

/* ── Right column ── */
.feat-hero-visual {
  flex: 0 0 560px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: center;
}

/* Dark Python code card */
.feat-code-card {
  background: #1a1b2e;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 8px 24px rgba(10, 10, 10, 0.18),
    0 24px 64px rgba(10, 10, 10, 0.22);
}

.feat-code-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.feat-code-card__dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.feat-code-card__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.feat-code-card__dot--red    { background: #ff5f57; }
.feat-code-card__dot--yellow { background: #febc2e; }
.feat-code-card__dot--green  { background: #28c840; }

.feat-code-card__filename {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 13px;
  color: #8892a4;
  margin-left: 4px;
}

.feat-code-card__pre {
  margin: 0;
  padding: 20px 24px 24px;
  overflow-x: auto;
}

.feat-code-card__code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 13.5px;
  line-height: 1.75;
  color: #d4d4d8;
  display: block;
  white-space: pre;
}

/* Python syntax highlighting */
.py-kw      { color: #c792ea; }
.py-cls     { color: #ffcb6b; }
.py-str     { color: #c3e88d; }
.py-comment { color: #637777; font-style: italic; }
.py-fn      { color: #82aaff; }

/* Status / verification card */
.feat-status-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1.5px solid #f3f4f6;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(10, 10, 10, 0.06);
}

.feat-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
}

.feat-status-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
}

.feat-status-icon {
  display: inline-flex;
  flex-shrink: 0;
}