/* ─────────────────────────────────────────────────────────────
   SBOX PRODUCT PAGE STYLES — website_kai/src/css/sbox.css
───────────────────────────────────────────────────────────── */

/* ── Base & Global Tokens ── */
:root {
  --max-w: 1376px;
  --px: 64px;
}

body.sbox-page {
  background-color: #161212;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}



/* ─────────────────────────────────────────────────────────────
   SECTION 2: HERO SECTION (#hero — Exact Figma Layout Frame 2147232921)
───────────────────────────────────────────────────────────── */
.sbox-hero {
  position: relative;
  width: 100%;
  background-color: #16110F;
  padding-top: 110px; /* Clearance for fixed navbar */
  padding-bottom: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.sbox-hero-container {
  width: 100%;
  max-width: var(--max-w, 1376px);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* Top Row: Left Heading + Right CTAs */
.sbox-hero-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  width: 100%;
}

/* Left Column */
.sbox-hero-heading-col {
  flex: 1;
  max-width: 580px;
}

.sbox-hero-heading-col .eyebrow-tag {
  display: inline-flex;
  margin-bottom: 1.25rem;
}

.sbox-hero-title {
  font-family: 'Sora', sans-serif;
  font-size: 54px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}

/* Right Column */
.sbox-hero-cta-col {
  flex: 1;
  max-width: 540px;
  padding-top: 1.75rem; /* Aligns description cleanly with heading */
  display: flex;
  flex-direction: column;
}

.sbox-hero-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin: 0 0 2rem 0;
}

.sbox-hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-hero-primary {
  height: 38px;
  padding: 0 18px;
  background-color: #ffce1b;
  color: #000000;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: background-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn-hero-primary:hover {
  background-color: #e5b816;
  transform: translateY(-1px);
}

.btn-hero-secondary {
  height: 38px;
  padding: 0 16px;
  background-color: transparent;
  color: #ffffff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

/* Bottom Full-Width Hero Image Card (Touches left and right page-margin border lines) */
.sbox-hero-image-card {
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-right: -40px;
  margin-bottom: 0;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  display: flex;
}

.sbox-hero-full-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .sbox-hero-top-row {
    flex-direction: column;
    gap: 30px;
  }
  .sbox-hero-heading-col,
  .sbox-hero-cta-col {
    max-width: 100%;
    padding-top: 0;
  }
  .sbox-hero-full-img {
    height: 380px;
  }
}

@media (max-width: 640px) {
  .sbox-hero-container {
    padding: 0 20px;
  }
  .sbox-hero-image-card {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
  .sbox-hero-title {
    font-size: 40px;
  }
  .sbox-hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
  }
  .sbox-hero-full-img {
    height: 260px;
  }
}

body.sbox-page .navbar-inner {
  width: 100%;
  max-width: var(--max-w, 1376px);
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
}

body.sbox-page .nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

body.sbox-page .nav-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.4;
  border-radius: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}

body.sbox-page .nav-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

body.sbox-page .nav-chevron {
  flex-shrink: 0;
}

body.sbox-page .btn-primary.nav-cta {
  background: #ffce1b;
  color: #06080c;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

body.sbox-page .btn-primary.nav-cta:hover {
  background: #ffe066;
  transform: translateY(-1px);
}

/* ── Layout Containers & Borders ── */
.sbox-section {
  width: 100%;
  padding: 5rem 0;
  position: relative;
  box-sizing: border-box;
}

.sbox-container {
  width: 100%;
  max-width: var(--max-w, 1376px);
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
  position: relative;
}

.page-margins {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-w, 1376px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 99;
}

/* ── Typography & Accents ── */
h1, h2, h3, h4,
.sbox-hero-title,
.section-title,
.carousel-main-title,
.capabilities-title,
.dev-resources-title,
.compliance-title,
.faq-title,
.get-started-title,
.usecase-header-row h2,
.statement-heading {
  font-family: 'Sora', sans-serif !important;
  color: #ffffff;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

.highlight-yellow {
  color: #ffce1b;
}

/* ── Section Body Content: DM Sans Font ── */
p,
li,
td,
th,
.text-muted,
.sbox-hero-desc,
.carousel-subtext,
.capabilities-subtext,
.compliance-right-desc,
.cap-desc,
.usecase-card-desc,
.usecase-eg-box,
.dev-card-desc,
.faq-answer,
.statement-desc,
.sbox-hero-desc {
  font-family: 'DM Sans', sans-serif !important;
}

.text-muted {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

/* ── Section Eyebrow Tag ── */
.eyebrow-tag,
.eyebrow-tag *,
.eyebrow-tag span {
  font-family: 'JetBrains Mono', monospace !important;
}

.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
}

.eyebrow-tag .red-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ff4d4d;
  display: inline-block;
}

/* ── All Buttons: JetBrains Mono Font ── */
button,
a.btn,
a.btn-primary,
a.btn-secondary,
a.btn-yellow,
a.btn-outline,
a.btn-hero-primary,
a.btn-hero-secondary,
a.nav-cta,
.nav-cta,
.btn-hero-primary,
.btn-hero-secondary,
.carousel-arrow-btn,
.dev-nav-btn,
.usecase-nav-btn,
.carr-btn,
.faq-question {
  font-family: 'JetBrains Mono', monospace !important;
}


/* ── Buttons ── */
.btn-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-yellow {
  background-color: #ffce1b;
  color: #06080c;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-yellow:hover {
  background-color: #ffe066;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 206, 27, 0.25);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────
   SECTION 1: HERO SECTION (#hero)
───────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────
   SECTION 1: HERO SECTION (#hero — Exact 1:1 match with index.html)
───────────────────────────────────────────────────────────── */
.sbox-hero-index {
  position: relative;
  width: 100%;
  min-height: 820px;
  background: #120F0F;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sbox-hero-index .sbox-new-design {
  width: 100%;
  height: 820px;
  position: relative;
  overflow: hidden;
  background-color: #120F0F;
}

.sbox-hero-index .grid-lines-icon {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 740px;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}

.sbox-hero-index .frame-parent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 820px;
  z-index: 2;
}

.sbox-hero-index .grid-4-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 820px;
}

.sbox-hero-index .grid-4 {
  height: 820px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #120F0F;
  overflow: hidden;
}

.sbox-hero-index .image-331-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: brightness(1.25) contrast(1.05);
}

.sbox-hero-index .grid-4-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, rgba(18, 15, 15, 0.72) 0%, rgba(18, 15, 15, 0.42) 50%, rgba(18, 15, 15, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.sbox-hero-index .image-322-icon {
  position: absolute;
  top: 180px;
  left: 760px;
  width: 960px;
  height: 670px;
  object-fit: cover;
  border: none !important;
  box-shadow: none !important;
  background: none !important;
}

.sbox-hero-index .grid-4-item {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, #120F0F 100%);
  height: 140px;
  z-index: 2;
}

.sbox-hero-index .frame-div {
  width: 100%;
  height: 820px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.sbox-hero-index .frame-container {
  width: 100%;
  height: 820px;
  position: absolute;
  top: 0;
  left: 0;
}

.sbox-hero-index .frame-wrapper2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 820px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 80px;
  box-sizing: border-box;
}

.sbox-hero-index .frame-parent2 {
  position: absolute;
  top: 180px;
  left: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  max-width: 640px;
  z-index: 4;
}

.sbox-hero-index .heading-1-parent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sbox-hero-index .frame-parent3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.sbox-hero-index .hero-title {
  font-family: 'Sora', sans-serif;
  font-size: 3.6rem;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}

.sbox-hero-index .run-text-speech {
  width: 580px;
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
  color: rgba(255, 255, 255, 0.75);
}

.sbox-hero-index .component-24-parent {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

/* ─────────────────────────────────────────────────────────────
   SECTION 2: FEATURE GRID (#features — Figma 1-Left + 2x2 Right Layout)
───────────────────────────────────────────────────────────── */
.features-section-redesign {
  width: 100%;
  background-color: #161212;
  padding: 4rem 0;
  border-bottom: none;
}

.features-layout-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-right: -40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-left: none;
  border-right: none;
  border-radius: 0;
  background-color: #161212;
}

.feature-col-left {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-grid-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.feature-tile-cell {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-tile-cell:nth-child(2n) {
  border-right: none;
}

.feature-tile-cell:nth-child(3),
.feature-tile-cell:nth-child(4) {
  border-bottom: none;
}

.feature-icon-wrapper {
  margin-bottom: 1.75rem;
}

.feature-icon-wrapper svg,
.feature-icon-wrapper img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.feature-cell-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.feature-cell-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 991px) {
  .features-layout-grid {
    grid-template-columns: 1fr;
  }

  .feature-col-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .feature-grid-right {
    grid-template-columns: 1fr;
  }

  .feature-tile-cell {
    border-right: none !important;
  }

  .feature-tile-cell:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* ─────────────────────────────────────────────────────────────
   SECTION 7: PLATFORM CAPABILITIES (#capabilities)
   Scoped entirely under .platform-capabilities — no bleed to other sections
───────────────────────────────────────────────────────────── */

/* ── Section shell ── */
.platform-capabilities {
  width: 100%;
  background-color: #161212;
  padding: 5rem 0 6rem;
  border: none;
}

/* ── Header block (eyebrow + h2 + subtext) ── */
.platform-capabilities .capabilities-header {
  margin-bottom: 3.5rem;
}
.platform-capabilities .capabilities-header .eyebrow-tag {
  margin-bottom: 1.25rem;
}

.capabilities-title {
  font-family: 'Sora', sans-serif !important;
  font-size: 38px !important;
  font-weight: 300 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.01em !important;
  color: #ffffff;
  margin: 0.75rem 0 1rem 0;
}

.capabilities-subtext {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45) !important;
  line-height: 1.6;
}

/* ── Grid: strict 4 columns × 3 rows ──────────────────────── */
.platform-capabilities .capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: row;
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-right: -40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  border-left: none;
  border-right: none;
}

/* ── Individual cell ── */
.platform-capabilities .cap-cell {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-height: 300px;
}

.platform-capabilities .cap-cell:nth-child(4n) {
  border-right: none;
}

.platform-capabilities .cap-cell:nth-last-child(-n+2) {
  border-bottom: none;
}


/* ── Icon block — keep amber icons untouched ── */
.platform-capabilities .cap-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}
.platform-capabilities .cap-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── FIX 2: Card titles — WHITE, never amber ── */
.platform-capabilities .cap-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #ffffff;            /* white — amber is ONLY on icon and H2 highlight */
  line-height: 1.45;
  margin-bottom: 1rem;
  letter-spacing: 0;
}

/* ── FIX 3 + 5: Description text — neutral muted gray, open line-height ── */
/* Figma value: ~rgba(255,255,255,0.45) neutral gray — not teal/cool-tinted */
.platform-capabilities .cap-desc {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

/* ── Responsive breakpoints ── */
@media (max-width: 1200px) {
  .platform-capabilities .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* On 2-col layout the empty cells still maintain border structure */
}

@media (max-width: 640px) {
  .platform-capabilities .capabilities-grid {
    grid-template-columns: 1fr;
  }
  .platform-capabilities .capabilities-title {
    font-size: 1.85rem;
  }
}


/* ─────────────────────────────────────────────────────────────
   SECTION 3: STATEMENT SECTION (#statement — Ellipse Glow & 2-Col Layout)
───────────────────────────────────────────────────────────── */
.statement-section-redesign {
  position: relative;
  width: 100%;
  background-color: #161212;
  padding: 6rem 0;
  overflow: hidden;
  border: none;
}

.statement-ellipse-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 850px;
  height: 500px;
  background: radial-gradient(ellipse 65% 55% at 50% 50%, rgba(145, 45, 22, 0.38) 0%, rgba(85, 22, 12, 0.14) 50%, transparent 75%);
  pointer-events: none;
  z-index: 1;
  filter: blur(20px);
}

.statement-container-inner {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
}

.statement-main-title {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.35;
  text-align: center;
  color: #ffffff;
  margin-bottom: 4rem;
  letter-spacing: -0.01em;
}

.statement-main-title .highlight-yellow {
  color: #ffce1b;
  font-weight: 400;
}

.statement-columns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.statement-col p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.statement-col p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .statement-main-title {
    font-size: 1.85rem;
    margin-bottom: 2.5rem;
  }
  .statement-columns-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   CAROUSELS (COMMON & #start-here REDESIGN)
───────────────────────────────────────────────────────────── */
.carousel-section-redesign {
  position: relative;
  width: 100%;
  background-color: #161212;
  padding: 5rem 0;
  border: none;
  overflow: hidden;
}

.start-here-ellipse-bg {
  display: none !important;
}

.carousel-mobile-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  width: 100%;
}

.carousel-mobile-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: background-color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.carousel-mobile-dots .dot.active {
  background-color: #FFCE1B;
  transform: scale(1.2);
}

/* On Desktop only: limit Start Here dots to 3 */
@media (min-width: 1025px) {
  .carousel-mobile-dots .dot:nth-child(n+4) {
    display: none !important;
  }
}

.carousel-container-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w, 1376px);
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.carousel-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.carousel-title-col {
  max-width: 680px;
}

.carousel-main-title {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.carousel-subtext {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.carousel-nav-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-arrow-btn:hover {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.carousel-track-wrapper {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.carousel-track-wrapper::-webkit-scrollbar {
  display: none;
}

.carousel-track-wrapper .carousel-track {
  display: flex;
  gap: 20px;
  overflow: visible;
}

.carousel-card-item {
  width: 280px;
  flex-shrink: 0;
  background: rgba(52, 32, 31, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px;
  box-sizing: border-box;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
}

.carousel-card-item:hover {
  transform: translateY(-4px);
  border-color: #FFCE1B;
  box-shadow: 0 0 16px rgba(255, 206, 27, 0.25);
  background: rgba(52, 32, 31, 0.55);
}

.video-thumb-box {
  width: 100%;
  height: 165px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

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

.video-card-info {
  padding-top: 14px;
}

.video-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 12px;
  min-height: 44px;
}

.video-card-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
}

.video-card-duration svg {
  stroke: #FF4D4D;
}

.video-card-duration span {
  color: rgba(255, 255, 255, 0.7);
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 320px;
  scroll-snap-align: start;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.carousel-card:hover {
  border-color: rgba(255, 206, 27, 0.3);
  transform: translateY(-3px);
}

/* Video Cards (#start-here) */
.video-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #0f131d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-icon-overlay {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(6, 8, 12, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffce1b;
}

.video-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.video-card-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;

}

.video-card-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Use Case Cards (#use-cases) */
.usecase-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.usecase-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.usecase-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.usecase-card-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.usecase-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 1rem;
}

.usecase-eg-box {
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  line-height: 1.55;
}

/* Developer Resource Cards (#dev-resources) */
.dev-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.dev-card-body {
  padding: 2rem;
}

.dev-card-title {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* ─────────────────────────────────────────────────────────────
   SECTION 6: PLATFORM CAPABILITIES (#capabilities)
───────────────────────────────────────────────────────────── */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.capability-tile {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.capability-tile:hover {
  border-color: rgba(255, 206, 27, 0.3);
  transform: translateY(-2px);
}

.capability-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.25rem;
}

.capability-tile h4 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.capability-tile p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.55;
}

/* ─────────────────────────────────────────────────────────────
   SECTION 7: INTEGRATIONS SECTION (#integrations)
───────────────────────────────────────────────────────────── */
.integrations-banner {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
}

.integrations-img {
  max-width: 100%;
  height: auto;
  margin-top: 2rem;
}

/* ─────────────────────────────────────────────────────────────
   SECTION 10: TECHNICAL SPECS (#specs — 3x5 Specification Matrix Grid Table)
───────────────────────────────────────────────────────────── */
.specs-section {
  position: relative;
  width: 100%;
  background-color: #161212;
  padding: 5rem 0 6rem;
  overflow: hidden;
  border: none;
}

.specs-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3.5rem;
}

.specs-header .eyebrow-tag {
  display: inline-flex;
  margin-bottom: 1rem;
}

.specs-title {
  font-family: 'Sora', sans-serif;
  font-size: 2.75rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
}

/* Single unified 3-column x 5-row specification matrix grid */
.specs-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-sizing: border-box;
}

.spec-cell {
  padding: 2rem 2.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 110px;
  box-sizing: border-box;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.spec-cell:nth-child(3n) {
  border-right: none;
}

.spec-cell:nth-last-child(-n+3) {
  border-bottom: none;
}

.spec-cell:hover {
  background: rgba(255, 255, 255, 0.03);
}

.spec-cell-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

/* Reserved 18px x 18px icon position box */
.spec-icon-box {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spec-icon-box svg,
.spec-icon-box img,
.placeholder-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.spec-cell-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.76rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.spec-cell-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .specs-matrix-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .spec-cell:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .spec-cell:nth-child(2n) {
    border-right: none;
  }
  .spec-cell:nth-last-child(-n+3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .spec-cell:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* Mobile: 1 column */
@media (max-width: 640px) {
  .specs-title {
    font-size: 2rem;
  }
  .specs-matrix-grid {
    grid-template-columns: 1fr;
  }
  .spec-cell {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }
  .spec-cell:last-child {
    border-bottom: none !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   SECTION 9: AT A GLANCE (#glance)
───────────────────────────────────────────────────────────── */
.glance-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.glance-pill {
  background: rgba(255, 206, 27, 0.1);
  border: 1px solid rgba(255, 206, 27, 0.25);
  color: #ffce1b;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 100px;
}

.glance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.glance-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 2rem;
}

.glance-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

/* ─────────────────────────────────────────────────────────────
   SECTION 12: COMPLIANCE & GOVERNANCE (#compliance — Exact Figma match)
───────────────────────────────────────────────────────────── */
.compliance-section {
  position: relative;
  width: 100%;
  background-color: #161212;
  padding: 5rem 0 6rem;
  overflow: hidden;
  border: none;
}

.compliance-ellipse-bg {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 850px;
  height: 450px;
  background: radial-gradient(ellipse at center, rgba(255, 77, 77, 0.16) 0%, rgba(255, 206, 27, 0.05) 45%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.compliance-header-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.compliance-main-title {
  font-family: 'Sora', sans-serif !important;
  font-size: 2.75rem;
  font-weight: 300 !important;
  color: #ffffff;
  line-height: 1.25;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* Single unified bordered panel containing both columns (Touches left and right page-margin border lines) */
.compliance-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-right: -40px;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-left: none;
  border-right: none;
  border-radius: 0;
  overflow: hidden;
  box-sizing: border-box;
}

/* Dark card box containing the 8 capability tags — standalone rounded card with left/right/bottom space */
.compliance-tag-box {
  position: relative;
  background: rgba(52, 32, 31, 0.20);
  border: none;
  border-radius: 16px;
  padding: 2.5rem 2.25rem;
  margin-top: 2rem;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  overflow: hidden;
}

/* Left Column: 5 items with divider lines between them */
.compliance-left-col {
  position: relative;
  z-index: 2;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.compliance-item {
  padding: 2.25rem 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compliance-item:last-child {
  border-bottom: none;
}

.compliance-item-title {
  font-family: 'Sora', sans-serif !important;
  font-size: 1.15rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 0.6rem 0;
}

.compliance-item-desc {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin: 0;
}

/* Right Column: Heading, Paragraphs, 2x4 Tag Grid */
.compliance-right-col {
  position: relative;
  z-index: 2;
  padding: 3rem 2.5rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.compliance-right-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 1.25rem 0;
}

.compliance-right-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin: 0 0 1.25rem 0;
}

/* 2-column x 4-row Tag Grid matching exact Figma design & icons */
.compliance-tag-box {
  background: rgba(52, 32, 31, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 24px;
  margin-top: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.compliance-tag-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1.75rem;
  column-gap: 2rem;
  margin-top: 0;
}

.compliance-tag {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  box-sizing: border-box;
}

.compliance-tag-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 1px;
}

.compliance-tag span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: normal;
  line-height: 1.3;
}

/* ─────────────────────────────────────────────────────────────
   SECTION 13: FAQ SECTION (#faqs — Exact Figma match)
───────────────────────────────────────────────────────────── */
.faq-section {
  position: relative;
  width: 100%;
  background-color: #161212;
  padding: 5.5rem 0 2.5rem;
  overflow: hidden;
  border: none;
}

.faq-section .sbox-container {
  position: relative;
  z-index: 2;
}

/* Centered 60% column layout */
.faq-container-inner {
  max-width: 60%;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-header .eyebrow-tag {
  display: inline-flex;
  margin-bottom: 1.25rem;
}

.faq-title {
  font-family: 'Sora', sans-serif;
  font-size: 2.75rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}

.faq-title .highlight-yellow {
  color: #ffce1b;
  font-weight: 300;
}

/* Plain text FAQ list — no boxed card borders */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 1.25rem 1rem;
  transition: all 0.2s ease;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Question text: ALWAYS white/off-white in all states (collapsed, active, hover) — SORA FONT */
.faq-question,
.faq-question span,
.faq-item.active .faq-question,
.faq-item.active .faq-question span,
.faq-question:hover,
.faq-question:hover span {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Sora', sans-serif !important;
  font-size: 1.05rem;
  font-weight: 400; /* Regular weight */
  color: #ffffff !important; /* Always white — amber is ONLY on 'questions.' title span */
  user-select: none;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: #ffce1b;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.35s ease;
  padding: 0;
  opacity: 0;
  color: rgba(255, 255, 255, 0.55); /* Muted gray */
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.92rem;
  line-height: 1.65;
  font-weight: 300;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 0.85rem;
  padding-bottom: 0.5rem;
  opacity: 1;
}

/* ─────────────────────────────────────────────────────────────
   SECTION 14: FINAL CTA SECTION (#get-started — Exact Figma match)
───────────────────────────────────────────────────────────── */
.get-started-section {
  position: relative;
  width: 100%;
  background: transparent;
  padding: 3.5rem 0 7rem;
  overflow: hidden;
  border: none;
  text-align: center;
}

/* Soft, heavily blurred elliptical glow centered in section */
.get-started-ellipse-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: 450px;
  background: radial-gradient(ellipse 65% 55% at 50% 50%, rgba(145, 45, 22, 0.38) 0%, rgba(85, 22, 12, 0.14) 50%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

.get-started-section .sbox-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.get-started-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}

.get-started-section .eyebrow-tag {
  display: inline-flex;
  margin-bottom: 1.25rem;
}

.get-started-title {
  font-family: 'Sora', sans-serif;
  font-size: 2.75rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 1.25rem 0;
}

.get-started-title .highlight-yellow {
  color: #FFCE1B;
  font-weight: 300;
}

.get-started-subtext {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 2.25rem auto;
}

.get-started-btn-wrap {
  display: flex;
  justify-content: center;
}

.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  background-color: #FFCE1B !important;
  color: #06080c !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(255, 206, 27, 0.2) !important;
}

.btn-yellow:hover {
  background-color: #e6b914 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px rgba(255, 206, 27, 0.35) !important;
}

/* ─────────────────────────────────────────────────────────────
   SECTION 15: FOOTER (Shared component styling from technical-report.css & philosophy.html)
───────────────────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 10;
  background: #161212;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-sizing: border-box;
}

.footer-inner {
  width: 100%;
  max-width: var(--max-w, 1376px);
  margin: 0 auto;
  padding: 40px 40px;
  box-sizing: border-box;
}

/* Top nav row */
.footer-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 0.1px solid rgba(255, 255, 255, 0.15) !important;
  margin-bottom: 48px;
}

.footer-nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-nav-link:hover {
  color: #ffffff;
}

.footer-nav-link--active {
  color: #FFCE1B;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0.5px solid rgba(255, 255, 255, 0.20);
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s;
}

.social-icon:hover {
  border-color: rgba(255, 255, 255, 0.60);
  background: rgba(255, 255, 255, 0.06);
}

/* Bottom row: big K + addresses + ZIROHLabs */
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-big-logo {
  flex-shrink: 0;
}

.big-k-square {
  width: 120px;
  height: 120px;
  background: #FFCE1B;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.footer-addresses {
  display: flex;
  gap: 60px;
  flex: 1;
  padding: 0 60px;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-city {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.80);
  letter-spacing: 0.02em;
  margin: 0;
}

.footer-addr-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 20px;
  margin: 0;
}

.footer-ziroh {
  flex-shrink: 0;
}

.ziroh-logo {
  height: 36px;
  width: auto;
  filter: none;
  transition: opacity 0.18s ease;
}

.ziroh-logo:hover {
  opacity: 0.9;
}

/* Legal section */
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-copyright {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 32px;
}

.footer-legal-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.18s ease;
}

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

/* ── Breakpoint Placeholders ── */
@media (max-width: 991px) {
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .footer-addresses {
    padding: 0;
    gap: 32px;
    flex-wrap: wrap;
  }
}

/* ─────────────────────────────────────────────────────────────
   SECTION: DEVELOPER RESOURCES CAROUSEL (#dev-resources)
───────────────────────────────────────────────────────────── */
.dev-resources-section {
  padding: 100px 0;
  background-color: #161212;
  position: relative;
  overflow: hidden;
}

.dev-resources-container {
  width: 100%;
  max-width: var(--max-w, 1376px);
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* Header Content (Centered) */
.dev-resources-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dev-resources-header .eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.dev-resources-title {
  font-family: 'Sora', sans-serif;
  font-size: 40px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem 0;
}

.dev-resources-title .highlight-yellow {
  color: #FFCE1B;
}

.dev-resources-subtext {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0;
  max-width: 800px;
}

/* Horizontal Track Wrapper */
.dev-resources-track-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: 2.5rem;
}

.dev-resources-track-wrapper::-webkit-scrollbar {
  display: none;
}

.dev-resources-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 4px 0;
}

/* Individual Resource Card */
.dev-resource-card {
  width: 280px;
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.dev-card-img-wrap {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #1f1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0.85rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.dev-resource-card:hover .dev-card-img-wrap {
  border-color: rgba(255, 206, 27, 0.4);
  transform: translateY(-2px);
}

.dev-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.dev-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  text-align: left;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Navigation Row Centered Below */
.dev-resources-nav-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.dev-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dev-nav-btn:hover:not(:disabled) {
  border-color: #FFCE1B;
  color: #FFCE1B;
  background-color: rgba(255, 206, 27, 0.08);
}

.dev-nav-btn:disabled,
.dev-nav-btn.disabled {
  opacity: 0.35;
  cursor: default;
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

/* ─────────────────────────────────────────────────────────────
   SECTION: USE CASES CAROUSEL (#use-cases)
───────────────────────────────────────────────────────────── */
.usecase-section-redesign {
  padding: 100px 0;
  background-color: #161212;
  position: relative;
  overflow: hidden;
}

.usecase-container-inner {
  width: 100%;
  max-width: var(--max-w, 1376px);
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.usecase-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  width: 100%;
}

.usecase-header-row h2 {
  font-family: 'Sora', sans-serif;
  font-size: 38px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0.75rem 0 1rem 0;
}

.usecase-nav-btns {
  display: flex;
  align-items: center;
  gap: 14px;
}

.usecase-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.usecase-nav-btn:hover:not(:disabled) {
  border-color: #FFCE1B;
  color: #FFCE1B;
  background-color: rgba(255, 206, 27, 0.08);
}

.usecase-nav-btn:disabled,
.usecase-nav-btn.disabled {
  opacity: 0.35;
  cursor: default;
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

/* Horizontal Track Wrapper */
.usecases-track-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.usecases-track-wrapper::-webkit-scrollbar {
  display: none;
}

.usecases-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 4px 0;
}

/* Panel Card Anatomy (With 3rd Card Glimpse Peak) */
.usecase-panel-card {
  width: 510px;
  flex: 0 0 510px;
  background-color: rgba(52, 32, 31, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.usecase-panel-card:hover {
  border-color: rgba(255, 206, 27, 0.25);
  transform: translateY(-2px);
}

.usecase-card-top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.uc-img-wrap {
  width: 190px;
  height: 175px;
  flex: 0 0 190px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #120e0d;
}

.uc-img-wrap img.usecase-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.uc-text-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.usecase-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 0.65rem 0;
  text-align: left;
}

.usecase-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin: 0;
  text-align: left;
}

.usecase-eg-box {
  margin-top: 18px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
  text-align: left;
}

/* ─────────────────────────────────────────────────────────────
   DESKTOP ONLY LAYOUT OVERRIDES (>= 1025px)
───────────────────────────────────────────────────────────── */
@media (min-width: 1025px) {
  .page-margins {
    width: calc(100% - 128px);
    max-width: var(--max-w, 1376px);
  }

  .sbox-hero-container,
  body.sbox-page .navbar-inner,
  .sbox-container,
  .carousel-container-inner,
  .footer-inner,
  .dev-resources-container,
  .usecase-container-inner {
    width: calc(100% - 128px);
    max-width: var(--max-w, 1376px);
  }
}

/* ─────────────────────────────────────────────────────────────
   TABLET & MOBILE RESPONSIVE STYLES
───────────────────────────────────────────────────────────── */

/* ── TABLET BREAKPOINT (769px - 1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {

  /* Tablet Page Margins (Left & Right vertical border lines matching Philosophy page) */
  .page-margins {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 48px) !important;
    max-width: 960px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
    pointer-events: none !important;
    z-index: 9999 !important;
  }



  .hamburger {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
    padding: 8px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    margin: 0 !important;
    position: relative !important;
    z-index: 10002 !important;
  }

  .hamburger span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background: #ffffff !important;
    border-radius: 2px !important;
    transition: transform 0.25s ease, opacity 0.25s ease !important;
  }

  /* Hero Section Tablet Layout — Centered 1-column layout framed cleanly inside left/right border lines */
  .sbox-hero {
    position: relative !important;
    padding-top: 120px !important;
    padding-bottom: 40px !important;
    background: #16110F !important;
    overflow: hidden !important;
  }

  .sbox-hero-container,
  .sbox-container,
  .usecase-container-inner,
  .statement-container-inner,
  .faq-container-inner,
  .dev-resources-container {
    width: calc(100% - 48px) !important;
    max-width: 960px !important;
    margin: 0 auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2rem !important;
    box-sizing: border-box !important;
  }

  .sbox-hero-top-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 680px !important;
  }

  .sbox-hero-heading-col,
  .sbox-hero-cta-col {
    flex: none !important;
    max-width: 100% !important;
    width: 100% !important;
    padding-top: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .sbox-hero-heading-col .eyebrow-tag {
    display: inline-flex !important;
    margin: 0 auto 1.5rem auto !important;
    font-size: 0.72rem !important;
    padding: 6px 14px !important;
    letter-spacing: 0.08em !important;
  }

  .sbox-hero-title {
    font-size: 46px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.015em !important;
    color: #ffffff !important;
    text-align: center !important;
    margin: 0 0 1rem 0 !important;
  }

  .sbox-hero-title .highlight-yellow {
    color: #FFCE1B !important;
  }

  .sbox-hero-desc {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.72) !important;
    text-align: center !important;
    margin: 0 auto 1.75rem auto !important;
    max-width: 620px !important;
  }

  .sbox-hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .btn-hero-primary {
    height: 40px !important;
    padding: 0 20px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    border-radius: 4px !important;
    background-color: #FFCE1B !important;
    color: #000000 !important;
    white-space: nowrap !important;
  }

  .btn-hero-secondary {
    height: 40px !important;
    padding: 0 18px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    border-radius: 4px !important;
    background-color: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    white-space: nowrap !important;
  }

  /* Full-width Hero Image Card on Tablet reaching left & right border lines */
  .sbox-hero-image-card {
    display: flex !important;
    width: calc(100% + 40px) !important;
    max-width: none !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: none !important;
    box-sizing: border-box !important;
  }

  .sbox-hero-full-img {
    width: 100% !important;
    height: 440px !important;
    object-fit: cover !important;
    object-position: center 30% !important;
    display: block !important;
    border-radius: 0 !important;
  }

  /* Section 3: Feature Grid Section on Tablet (Exact 1:1 match to Figma Tablet screenshot) */
  .features-section-redesign {
    padding: 0 !important;
    background: #16110F !important;
  }

  .features-section-redesign .sbox-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .features-layout-grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-sizing: border-box !important;
  }

  /* Top Full-Width Cell: Runs on any CPU you already own */
  .feature-col-left {
    width: 100% !important;
    max-width: 100% !important;
    padding: 2.5rem 2.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-sizing: border-box !important;
  }

  /* Bottom 2x2 Grid */
  .feature-grid-right {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .feature-tile-cell {
    padding: 2.5rem 2rem !important;
    box-sizing: border-box !important;
  }

  .feature-tile-cell:nth-child(odd) {
    padding: 2.5rem 2rem 2.5rem 2.5rem !important;
    border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
  }

  .feature-tile-cell:nth-child(even) {
    padding: 2.5rem 2.5rem 2.5rem 2rem !important;
  }

  .feature-tile-cell:nth-child(1),
  .feature-tile-cell:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  }

  .feature-cell-title {
    font-family: 'Sora', sans-serif !important;
    font-size: 1.25rem !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    margin: 1.25rem 0 0.75rem 0 !important;
  }

  .feature-cell-desc {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
  }
}

/* ── MOBILE BREAKPOINT (768px and below) ── */
@media (max-width: 768px) {
  /* Mobile Hamburger Button */
  .hamburger {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
    padding: 8px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    z-index: 10001 !important;
    margin-left: auto !important;
  }

  .hamburger span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background: #ffffff !important;
    border-radius: 2px !important;
    transition: transform 0.25s ease, opacity 0.25s ease !important;
  }

  .hamburger.active span:nth-child(1),
  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }
  .hamburger.active span:nth-child(2),
  .hamburger.open span:nth-child(2) {
    opacity: 0 !important;
  }
  .hamburger.active span:nth-child(3),
  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }


}

@media (max-width: 768px) {

  /* Prevent horizontal scrolling & page shifting */
  html, body, .sbox-page {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  /* Fixed left and right vertical page border lines (Philosophy match) */
  .page-margins {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    max-width: none !important;
    transform: none !important;
    border-left: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
    pointer-events: none !important;
    z-index: 99 !important;
  }

  .sbox-section,
  .sbox-hero,
  .statement-section,
  .capabilities-section,
  .compliance-section,
  .faq-section,
  .get-started-section,
  .footer {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  /* Page Shell & Container */
  .sbox-container,
  .sbox-hero-container,
  .statement-container-inner,
  .usecase-container-inner,
  .dev-resources-container,
  .carousel-container-inner {
    padding-left: 32px !important;
    padding-right: 32px !important;
    box-sizing: border-box !important;
  }

  /* ── 1. Hero Section (Figma Mobile 1:1 Parity) ── */
  .sbox-hero {
    position: relative !important;
    padding-top: 90px !important;
    padding-bottom: 0 !important;
    background: #161212 !important;
  }

  .sbox-hero-container {
    position: relative !important;
    width: calc(100% - 32px) !important;
    margin: 0 auto !important;
    padding: 36px 20px 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    background-image: linear-gradient(180deg, rgba(16, 13, 13, 0.35) 0%, rgba(16, 13, 13, 0.75) 45%, #161212 95%), url('../../public/assets/sbox/image 595.png') !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    box-sizing: border-box !important;
  }

  .sbox-hero-top-row {
    position: relative !important;
    z-index: 2 !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 24px !important;
  }

  .sbox-hero-heading-col,
  .sbox-hero-cta-col {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .eyebrow-tag,
  .sbox-hero-heading-col .eyebrow-tag {
    margin: 0 auto 1.25rem auto !important;
    white-space: nowrap !important;
    font-size: 0.65rem !important;
    padding: 6px 12px !important;
    gap: 6px !important;
    letter-spacing: 0.04em !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .eyebrow-tag .red-dot {
    width: 7px !important;
    height: 7px !important;
  }

  .sbox-hero-title {
    font-size: 2.2rem !important;
    line-height: 1.25 !important;
    text-align: center !important;
    margin-bottom: 1.25rem !important;
    color: #ffffff !important;
  }

  /* Mobile uniform white heading — no highlighted yellow word */
  .sbox-hero-title .highlight-yellow {
    color: #ffffff !important;
    font-weight: inherit !important;
  }

  .sbox-hero-desc {
    font-size: 0.92rem !important;
    line-height: 1.65 !important;
    text-align: center !important;
    max-width: 100% !important;
    margin: 0 auto 1.75rem auto !important;
    color: rgba(255, 255, 255, 0.65) !important;
  }

  .sbox-hero-buttons {
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }

  .btn-hero-primary {
    width: 100% !important;
    justify-content: center !important;
    height: 46px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    border-radius: 4px !important;
    background-color: #FFCE1B !important;
    color: #06080c !important;
  }

  .btn-hero-secondary {
    width: 100% !important;
    justify-content: center !important;
    height: 46px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    border-radius: 4px !important;
    background-color: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
  }

  .sbox-hero-image-card {
    display: none !important;
  }

  .features-section-redesign {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  /* ── 2. Statement Section (#statement) Mobile Alignment & Gaps ── */
  .statement-section-redesign {
    padding: 3rem 0 !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .statement-ellipse-bg {
    top: 18% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100vw !important;
    height: 380px !important;
    filter: blur(25px) !important;
  }

  .statement-container-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 32px !important;
    padding-right: 32px !important;
    box-sizing: border-box !important;
  }

  .statement-main-title {
    font-size: 1.4rem !important;
    line-height: 1.4 !important;
    text-align: left !important;
    margin-bottom: 1.75rem !important;
    padding: 0 !important;
  }

  .statement-columns-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
    width: 100% !important;
  }

  .statement-col p {
    font-size: 0.9rem !important;
    line-height: 1.65 !important;
    color: rgba(255, 255, 255, 0.65) !important;
    margin-bottom: 0.85rem !important;
  }

  /* ── 3. Start Here / Product Overview ── */
  .start-here-ellipse-bg {
    display: none !important;
  }

  .carousel-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .carousel-nav-btns,
  .usecase-nav-btns {
    display: none !important;
  }

  .carousel-mobile-dots {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 24px !important;
    width: 100% !important;
  }

  .carousel-mobile-dots .dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
    transition: background-color 0.25s ease, transform 0.25s ease !important;
    cursor: pointer !important;
  }

  .carousel-mobile-dots .dot.active {
    background-color: #FFCE1B !important;
    transform: scale(1.2) !important;
  }

  .sbox-video-card {
    width: 260px !important;
    flex: 0 0 260px !important;
  }

  /* ── 4. Use Cases Section ── */
  .usecase-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .usecase-header-row h2 {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
  }

  .carousel-track-wrapper,
  .usecases-track-wrapper {
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    display: flex !important;
    gap: 16px !important;
    padding-bottom: 8px !important;
  }

  .carousel-card-item,
  .usecase-panel-card {
    width: 84vw !important;
    flex: 0 0 84vw !important;
    scroll-snap-align: start !important;
    box-sizing: border-box !important;
  }

  .usecase-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .usecase-card-top {
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }

  .uc-img-wrap {
    width: 100% !important;
    height: 150px !important;
    flex: none !important;
  }

  .usecase-card-title {
    font-size: 17px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
  }

  .usecase-card-desc {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6 !important;
  }

  .usecase-eg-box {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
  }

  .usecase-panel-card {
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.03) !important;
  }

  /* ── 5. Platform Capabilities Grid (#capabilities) Mobile Brightness & Contrast ── */
  .capabilities-title {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
    color: #ffffff !important;
  }

  .capabilities-subtext {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.65 !important;
  }

  .platform-capabilities .capabilities-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .platform-capabilities .cap-cell {
    padding: 2rem 1.25rem !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    min-height: auto !important;
  }

  .platform-capabilities .cap-title {
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    margin-bottom: 0.75rem !important;
  }

  .platform-capabilities .cap-desc {
    font-size: 0.8rem !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .platform-capabilities .cap-cell:last-child {
    border-bottom: none !important;
  }

  /* ── 6. Compliance & Governance (#compliance) Mobile Brightness & Contrast ── */
  .compliance-ellipse-bg {
    display: none !important;
  }

  .compliance-main-title {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
    color: #ffffff !important;
  }

  .compliance-panel {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .compliance-left-col {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .compliance-item {
    padding: 1.75rem 1.25rem !important;
  }

  .compliance-item-title {
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    color: #ffffff !important;
  }

  .compliance-item-desc {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    color: rgba(255, 255, 255, 0.92) !important;
  }

  .compliance-right-col {
    padding: 2rem 1.25rem 1.5rem !important;
  }

  .compliance-right-title {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
  }

  .compliance-right-desc {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    color: rgba(255, 255, 255, 0.92) !important;
  }

  .compliance-tag-box {
    margin-top: 1.75rem !important;
    padding: 20px 16px !important;
    background: rgba(52, 32, 31, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .compliance-tag-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    row-gap: 1.5rem !important;
    column-gap: 0.75rem !important;
    width: 100% !important;
  }

  .compliance-tag {
    align-items: flex-start !important;
    gap: 0.6rem !important;
  }

  .compliance-tag-img {
    width: 18px !important;
    height: 18px !important;
    margin-top: 1px !important;
  }

  .compliance-tag span {
    font-size: 0.75rem !important;
    line-height: 1.35 !important;
    letter-spacing: 0.04em !important;
    color: #ffffff !important;
    white-space: normal !important;
  }

  /* ── 7. Developer Resources ── */
  .dev-resources-title {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
  }

  .dev-resource-card {
    width: 240px !important;
    flex: 0 0 240px !important;
  }

  .dev-card-img-wrap {
    height: 140px !important;
  }

  /* ── 8. Get Started Section ── */
  .get-started-title {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
  }

  .get-started-subtext {
    font-size: 14px !important;
  }

  .btn-yellow {
    width: 100% !important;
    justify-content: center !important;
  }

  /* ── 9. FAQs Section ── */
  .faq-container-inner {
    max-width: 100% !important;
  }

  .faq-item {
    padding: 1.25rem 0.85rem !important;
  }

  .faq-title {
    font-size: 2rem !important;
  }

  .faq-question {
    font-size: 0.95rem !important;
  }

  /* ── 10. Footer ── */
  .footer-inner {
    padding: 30px 20px !important;
  }

  .footer-nav-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
    padding-bottom: 0 !important;
  }

  .footer-nav-links {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .footer-bottom-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 24px !important;
  }

  .footer-addresses {
    flex-direction: column !important;
    gap: 20px !important;
    padding: 0 !important;
    width: 100% !important;
  }
}


/* ─────────────────────────────────────────────────────────────
   MOBILE FOOTER REDESIGN (Exact 1:1 Figma Match)
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .footer {
    position: relative !important;
    background-color: #120e0d !important;
    padding: 36px 0 24px !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  .footer-inner {
    padding: 0 20px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .footer-nav-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
    padding-bottom: 24px !important;
    margin-bottom: 24px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    width: 100% !important;
  }

  .footer-nav-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 24px !important;
    width: 100% !important;
  }

  .footer-nav-link {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
  }

  .footer-nav-link--active,
  .footer-nav-link:hover {
    color: #FFCE1B !important;
    text-decoration: underline !important;
    text-underline-offset: 4px !important;
  }

  .footer-socials {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 20px !important;
  }

  .social-icon {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    border: 0.5px solid rgba(255, 255, 255, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
  }

  .footer-bottom-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .footer-addresses {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .footer-address {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    margin: 0 !important;
  }

  .footer-city {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 !important;
  }

  .footer-addr-text {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 12.5px !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.5) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }

  .footer-big-logo {
    display: block !important;
    margin-top: 8px !important;
    margin-bottom: 16px !important;
  }

  .big-k-square {
    width: 90px !important;
    height: 90px !important;
    background: #FFCE1B !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    object-fit: cover !important;
  }

  .footer-ziroh {
    display: none !important;
  }

  .footer-legal {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding-top: 24px !important;
    margin-top: 16px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    width: 100% !important;
  }

  .footer-legal-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 20px !important;
  }

  .footer-legal-links a {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 12.5px !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
  }

  .footer-copyright {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 12px !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.45) !important;
    margin: 0 !important;
  }
}



  /* ════════════════════════════════════════════════
     UPPER LINE REMOVAL & FOOTER LOWER LINE RESTORATION (<= 1024px)
  ════════════════════════════════════════════════ */
  /* 1. Restore Footer's own Top Border (Lower Line) */
  body .footer,
  body footer.footer,
  body footer#footer,
  body footer#footer-mobile,
  .footer,
  #footer,
  #footer-mobile {
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
  }

  /* 2. Hide horizontal line dividers directly above footer */
  .line-horizontal,
  .line-horizontal:last-of-type,
  main > .line-horizontal:last-child {
    display: none !important;
    border: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* 3. Hide dummy/glow sections right above footer */
  .why-section[style*="min-height:0"],
  .get-started-section[style*="min-height:0"],
  .why-section:last-of-type {
    border-top: none !important;
    border-bottom: none !important;
    display: none !important;
  }

  /* 4. Remove section bottom borders right above footer on mobile (Upper Line) */
  main > section:last-of-type,
  main > div:last-of-type,
  section:last-of-type,
  .models-section,
  .faq-accordion-list,
  .dev-section,
  .tribute-section,
  .community-section,
  .jobs-grid,
  .dynamic-jd-wrapper,
  .phil2-contact-section,
  .phil-status-contact,
  .related-videos,
  .event-detail-body,
  .gallery-large,
  .event-quote,
  .event-meta,
  .md-code-tablet,
  .session-header-row {
    border-bottom: none !important;
  }


/* ════════════════════════════════════════════════
   MOBILE FOOTER OVERRIDES (<= 1024px)
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  body .footer,
  body footer.footer,
  body footer#footer,
  body footer#footer-mobile,
  .footer,
  #footer,
  #footer-mobile {
    position: relative !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    margin: 32px 0 0 0 !important;
    padding: 0 !important;
    background: var(--bg, #120F0F) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-sizing: border-box !important;
    display: block !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    z-index: 10 !important;
  }

  
  /* Remove section bottom border right above footer on mobile to eliminate upper line */
  main > section:last-of-type,
  main > div:last-of-type,
  section:last-of-type,
  .phil2-mobile-page-wrapper > main > section:last-of-type,
  .phil-mobile-page-wrapper > main > section:last-of-type,
  .sbox-page section:last-of-type,
  .page-section:last-of-type,
  .faq-section,
  .get-started-section,
  .community-section,
  .related-videos,
  .phil2-contact-section {
    border-bottom: none !important;
  }

  body .footer .footer-inner,
  body footer#footer-mobile .footer-inner,
  .footer-inner {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 32px 36px !important;
    box-sizing: border-box !important;
    border-left: none !important;
    border-right: none !important;
    display: block !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    height: auto !important;
  }

  /* Top Nav Row */
  body .footer .footer-nav-row,
  body footer#footer-mobile .footer-nav-row,
  .footer-nav-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
    padding-bottom: 24px !important;
    margin-bottom: 24px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body .footer .footer-nav-links,
  body footer#footer-mobile .footer-nav-links,
  .footer-nav-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body .footer .footer-nav-link,
  body footer#footer-mobile .footer-nav-link,
  .footer-nav-link {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
  }

  /* Social Icons */
  body .footer .footer-socials,
  body footer#footer-mobile .footer-socials,
  .footer-socials {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
  }

  body .footer .social-icon,
  body footer#footer-mobile .social-icon,
  .social-icon {
    width: 32px !important;
    height: 32px !important;
    background: #ffffff !important;
    border-radius: 6px !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
  }

  body .footer .social-icon svg path,
  body .footer .social-icon svg circle,
  body footer#footer-mobile .social-icon svg path,
  body footer#footer-mobile .social-icon svg circle,
  .social-icon svg path,
  .social-icon svg circle {
    stroke: #000000 !important;
    fill: #000000 !important;
  }

  body .footer .social-icon svg path[fill="none"],
  body footer#footer-mobile .social-icon svg path[fill="none"],
  .social-icon svg path[fill="none"] {
    fill: none !important;
  }

  /* Middle Row: Addresses & Logos */
  body .footer .footer-bottom-row,
  body footer#footer-mobile .footer-bottom-row,
  .footer-bottom-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    padding-bottom: 24px !important;
    margin-bottom: 24px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Addresses: Left (Bengaluru) & Right (Palo Alto) */
  body .footer .footer-addresses,
  body footer#footer-mobile .footer-addresses,
  .footer-addresses {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    width: 100% !important;
    padding: 0 !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
    order: 1 !important;
    box-sizing: border-box !important;
  }

  body .footer .footer-address:first-child,
  body footer#footer-mobile .footer-address:first-child,
  .footer-address:first-child {
    flex: 1 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }

  body .footer .footer-address:last-child,
  body .footer .footer-address:nth-child(2),
  body footer#footer-mobile .footer-address:last-child,
  body footer#footer-mobile .footer-address:nth-child(2),
  .footer-address:last-child,
  .footer-address:nth-child(2) {
    flex: 1 !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }

  body .footer .footer-city,
  body footer#footer-mobile .footer-city,
  .footer-city {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    margin: 0 !important;
  }

  body .footer .footer-addr-text,
  body footer#footer-mobile .footer-addr-text,
  .footer-addr-text {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 11px !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }

  /* ZIROHLabs Logo: Below Addresses, Left Aligned */
  body .footer .footer-ziroh,
  body footer#footer-mobile .footer-ziroh,
  .footer-ziroh {
    order: 2 !important;
    align-self: flex-start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    margin-bottom: 24px !important;
    grid-column: auto !important;
    grid-row: auto !important;
    display: block !important;
    text-align: left !important;
  }

  body .footer .ziroh-logo,
  body footer#footer-mobile .ziroh-logo,
  .ziroh-logo {
    height: 28px !important;
    width: auto !important;
    display: block !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  /* Big K. Square Logo: Below ZIROHLabs Logo, Left Aligned */
  body .footer .footer-big-logo,
  body footer#footer-mobile .footer-big-logo,
  .footer-big-logo {
    order: 3 !important;
    align-self: flex-start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    display: block !important;
  }

  body .footer .big-k-square,
  body footer#footer-mobile .big-k-square,
  .big-k-square {
    width: 72px !important;
    height: 72px !important;
    border-radius: 4px !important;
    display: block !important;
    margin-left: 0 !important;
  }

  /* Bottom Legal Section */
  body .footer .footer-legal,
  body footer#footer-mobile .footer-legal,
  .footer-legal {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    border-top: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body .footer .footer-legal-links,
  body footer#footer-mobile .footer-legal-links,
  .footer-legal-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 24px !important;
    order: 1 !important;
    width: 100% !important;
  }

  body .footer .footer-legal-links a,
  body footer#footer-mobile .footer-legal-links a,
  .footer-legal-links a {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
  }

  body .footer .footer-copyright,
  body footer#footer-mobile .footer-copyright,
  .footer-copyright {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0 !important;
    order: 2 !important;
    width: 100% !important;
    text-align: left !important;
  }
}


