

/* ────────────────────────────────────────────────────────
   1. CSS VARIABLES & ROOT
   ──────────────────────────────────────────────────────── */

:root {
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #252525;
  --white: #F5F3EE;
  --pure: #FFFFFF;
  --red: #F0303C;
  --red-d: #C72030;
  --muted: #888888;
  --border-d: #2C2C2C;
  --border-l: #E2E0DB;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --max-w: 1200px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1)
}



/* ────────────────────────────────────────────────────────
   2. RESET & BASE STYLES
   ──────────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  color-scheme: dark
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  animation: pageFadeIn 0.35s ease both
}

@keyframes pageFadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  touch-action: manipulation
}

ul {
  list-style: none
}



/* ────────────────────────────────────────────────────────
   3. LAYOUT
   ──────────────────────────────────────────────────────── */

.container {
  max-width: var(--max-w);
  margin: 0 auto;


/* ────────────────────────────────────────────────────────
   4. REVEAL ANIMATIONS
   ──────────────────────────────────────────────────────── */

  padding: 0 40px
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0)
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease)
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.reveal-d1 {
  transition-delay: .15s
}

.reveal-d2 {
  transition-delay: .3s
}

.reveal-d3 {
  transition-delay: .45s
}

.reveal-d4 {
  transition-delay: .6s
}

.reveal-d5 {
  transition-delay: .75s
}

.reveal-d6 {
  transition-delay: .9s
}



/* ────────────────────────────────────────────────────────
   5. NAVIGATION
   ──────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .3s, border-color .3s, box-shadow .3s;
  border-bottom: 1px solid transparent
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  border-color: var(--border-d);
  backdrop-filter: blur(12px)
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px
}

.nav-logo {
  margin-right: auto
}

.nav-logo img {
  height: 30px;
  width: auto;
  transition: opacity .2s
}

.nav-logo:hover img {
  opacity: .8
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  color: rgba(245, 243, 238, .8);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color .2s, background .2s;
  letter-spacing: .02em
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, .06)
}

.nav-cta {
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  color: var(--pure);
  background: var(--red);
  padding: 9px 22px;
  border-radius: 4px;
  transition: background .2s, transform .15s;
  letter-spacing: .02em;
  margin-left: 8px
}

.nav-cta:hover {
  background: var(--red-d);
  transform: translateY(-1px)
}

.nav-right {
  display: flex;
  align-items: center
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all .3s
}

.nav-mobile {
  display: none
}



/* ────────────────────────────────────────────────────────
   6. HERO
   ──────────────────────────────────────────────────────── */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: var(--black);
  background-image: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(240, 48, 60, .12) 0%, transparent 60%)
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0
}

.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  padding-top: var(--nav-h);
  width: 100%;
  position: relative;
  z-index: 1
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--red)
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 108px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 0
}

.hero-title .line2 {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 243, 238, .3);
  display: block
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0
}

.hero-divider-line {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: var(--red)
}

.hero-divider-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%
}

.hero-descriptor {
  max-width: 520px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 400;
  color: rgba(245, 243, 238, .65);
  line-height: 1.7;
  margin-bottom: 44px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}


/* ────────────────────────────────────────────────────────
   7. BUTTONS
   ──────────────────────────────────────────────────────── */


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .03em;
  color: var(--pure);
  background: var(--red);
  padding: 14px 28px;
  border-radius: 4px;
  transition: background .2s, transform .15s;
  min-height: 48px
}

.btn-primary:hover {
  background: var(--red-d);
  transform: translateY(-2px)
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: .82rem;
  letter-spacing: .03em;
  color: rgba(245, 243, 238, .55);
  border: 1px solid rgba(245, 243, 238, .15);
  padding: 11px 22px;
  border-radius: 4px;
  transition: border-color .2s, background .2s, transform .15s, color .2s;
  min-height: 44px
}

.btn-secondary:hover {
  border-color: rgba(245, 243, 238, .3);
  background: rgba(255, 255, 255, .04);
  color: rgba(245, 243, 238, .8);
  transform: translateY(-2px)
}

.btn-arrow {
  display: inline-block;
  transition: transform .2s
}

.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow {
  transform: translateX(4px)
}

.hero-strip {
  border-top: 1px solid var(--border-d);
  margin-top: 80px;
  display: flex;
  align-items: stretch
}

.hero-strip-item {
  flex: 1;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--border-d);
  padding-left: 32px
}

.hero-strip-item:first-child {
  border-left: 1px solid var(--border-d)
}

.hero-strip-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1
}

.hero-strip-label {
  font-size: .75rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase
}



/* ────────────────────────────────────────────────────────
   8. SECTIONS — SHARED
   ──────────────────────────────────────────────────────── */

.section {
  padding: 100px 0
}

.section-light {
  background: var(--white);
  color: var(--dark)
}

.section-dark {
  background: var(--dark)
}

.section-black {
  background: var(--black)
}

.section-red {
  background: var(--red)
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px
}

.section-dark .section-label,
.section-black .section-label {
  color: var(--red)
}

.section-light .section-label {
  color: var(--red)
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px
}

.section-dark .section-label::before,
.section-black .section-label::before {
  background: var(--red)
}

.section-light .section-label::before {
  background: var(--red)
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.025em
}

.section-title-lg {
  font-size: clamp(36px, 4.5vw, 60px)
}

.section-title-md {
  font-size: clamp(28px, 3.5vw, 44px)
}

.section-body {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75
}

.section-dark .section-body,
.section-black .section-body {
  color: rgba(245, 243, 238, .65)
}

.section-light .section-body {
  color: #555
}

.section-header {
  margin-bottom: 64px
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap
}



/* ────────────────────────────────────────────────────────
   9. PILLARS GRID
   ──────────────────────────────────────────────────────── */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-l);
  border: 1px solid var(--border-l)
}

.pillar-card {
  background: var(--white);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .25s;
  position: relative;
  overflow: hidden
}

.pillar-card:hover {
  box-shadow: 0 24px 64px rgba(0, 0, 0, .13)
}

.pillar-icon {
  width: 44px;
  height: 44px;
  color: var(--red);
  flex-shrink: 0
}

.pillar-num {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(240, 48, 60, .5);
  text-transform: uppercase
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -.02em
}

.pillar-desc {
  font-size: .925rem;
  color: #666;
  line-height: 1.7
}

.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto
}

.pillar-tag {
  font-size: .72rem;
  font-weight: 500;
  color: var(--red);
  border: 1px solid rgba(240, 48, 60, .25);
  padding: 3px 10px;
  border-radius: 2px;
  letter-spacing: .04em
}



/* ────────────────────────────────────────────────────────
   10. PHILOSOPHY
   ──────────────────────────────────────────────────────── */

.philosophy {
  position: relative
}

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

.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -.02em;
  color: var(--white)
}

.philosophy-quote em {
  font-style: normal;
  color: var(--red)
}

.philosophy-detail {
  color: rgba(245, 243, 238, .6);
  font-size: .975rem;
  line-height: 1.8
}

.philosophy-origin {
  border-left: 2px solid var(--red);
  padding-left: 20px;
  margin-top: 24px
}

.philosophy-origin p {
  font-size: .875rem;
  color: rgba(245, 243, 238, .5);
  line-height: 1.7
}

.philosophy-origin strong {
  color: rgba(245, 243, 238, .8);
  font-weight: 500
}



/* ────────────────────────────────────────────────────────
   11. VERTICALS GRID
   ──────────────────────────────────────────────────────── */

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-l);
  border: 1px solid var(--border-l)
}

.vertical-card {
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: background .25s, transform .22s ease, box-shadow .25s;
  cursor: default;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden
}

.vertical-card:hover {
  box-shadow: 0 20px 56px rgba(0, 0, 0, .11)
}

.vertical-n {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  color: rgba(240, 48, 60, .5);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding-top: 2px
}

.vertical-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0
}

.vertical-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  letter-spacing: -.01em
}

.vertical-desc {
  font-size: .82rem;
  color: #777;
  line-height: 1.6
}



/* ────────────────────────────────────────────────────────
   12. VALUES GRID
   ──────────────────────────────────────────────────────── */

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-d);
  border: 1px solid var(--border-d)
}

.value-card {
  background: var(--dark2);
  padding: 44px 40px;
  transition: background .25s;
  position: relative;
  overflow: hidden
}

.value-card:hover {
  background: var(--dark3)
}

.value-num {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  color: rgba(240, 48, 60, .5);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: .12em;
  text-transform: uppercase
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -.01em
}

.value-body {
  font-size: .9rem;
  color: rgba(245, 243, 238, .55);
  line-height: 1.75
}



/* ────────────────────────────────────────────────────────
   13. TEAM & FOUNDERS
   ──────────────────────────────────────────────────────── */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-l);
  border: 1px solid var(--border-l)
}

.team-grid-about {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-l);
  border: 1px solid var(--border-l)
}

.founder-card {
  background: var(--white);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background .25s, transform .22s ease, box-shadow .25s;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden
}

.team-grid .founder-card {
  align-items: center;
  text-align: center
}

.founder-card::after {
  display: none
}

.founder-card:hover {
  box-shadow: 0 24px 64px rgba(0, 0, 0, .13)
}

.founder-card-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px
}

.team-grid .founder-avatar {
  margin-bottom: 10px
}

.founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: .02em;
  overflow: hidden;
  box-shadow: none
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block
}

.founder-meta {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -.02em
}

.founder-role {
  font-size: .72rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .1em
}

.founder-bio {
  font-size: .9rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
  flex: 1
}

.founder-domains {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px
}

.founder-domain {
  font-size: .68rem;
  font-weight: 600;
  color: var(--dark);
  border: 1px solid var(--border-l);
  padding: 3px 10px;
  border-radius: 2px;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: var(--white)
}

.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
  transition: color .2s;
  text-decoration: none;
  margin-top: auto
}

.founder-link:hover {
  color: var(--red)
}

.founder-link svg {
  transition: transform .2s
}

.founder-link:hover svg {
  transform: translateX(3px)
}



/* ────────────────────────────────────────────────────────
   14. CTA BAND
   ──────────────────────────────────────────────────────── */

.cta-band {
  padding: 80px 0
}

.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap
}

.cta-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--pure);
  line-height: 1.1;
  letter-spacing: -.03em
}

.cta-text span {
  display: block;
  font-size: .7em;
  font-weight: 400;
  color: rgba(255, 255, 255, .7);
  letter-spacing: -.01em;
  margin-top: 8px
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--red);
  background: var(--pure);
  padding: 15px 32px;
  border-radius: 4px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  min-height: 48px
}

.btn-white:hover {
  background: var(--white);
  transform: translateY(-2px)
}



/* ────────────────────────────────────────────────────────
   15. FOOTER
   ──────────────────────────────────────────────────────── */

.footer {
  background: var(--black);
  border-top: 1px solid var(--border-d);
  padding: 72px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px
}

.footer-brand img {
  height: 28px;
  width: auto;
  margin-bottom: 20px
}

.footer-desc {
  font-size: .875rem;
  color: rgba(245, 243, 238, .45);
  line-height: 1.75;
  max-width: 280px
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, .35);
  margin-bottom: 20px
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-links a {
  font-size: .875rem;
  color: rgba(245, 243, 238, .55);
  transition: color .2s;
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 10px
}

.footer-links a:hover {
  color: var(--white)
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px
}

.footer-social-icon svg {
  width: 16px;
  height: 16px
}

.footer-bottom {
  border-top: 1px solid var(--border-d);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

.footer-legal {
  font-size: .75rem;
  color: rgba(245, 243, 238, .3);
  letter-spacing: .03em
}

.footer-cin {
  font-size: .72rem;
  color: rgba(245, 243, 238, .22);
  letter-spacing: .04em;
  text-align: right
}



/* ────────────────────────────────────────────────────────
   16. PAGE HERO
   ──────────────────────────────────────────────────────── */

.page-hero {
  padding: calc(var(--nav-h) + 72px) 0 72px;
  background: var(--black);
  border-bottom: 1px solid var(--border-d)
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px
}

.page-hero-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px
}

.page-hero-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--red)
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.03em;
  color: var(--white)
}

.page-hero-sub {
  max-width: 560px;
  font-size: 1.05rem;
  color: rgba(245, 243, 238, .55);
  line-height: 1.75;
  margin-top: 20px
}



/* ────────────────────────────────────────────────────────
   17. ABOUT — STORY & ORIGIN
   ──────────────────────────────────────────────────────── */

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

.story-text h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.02em;
  margin-bottom: 20px;
  line-height: 1.2
}

.story-text p {
  font-size: .975rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px
}

.story-aside {
  border: 1px solid var(--border-l);
  padding: 36px;
  position: relative;
  overflow: hidden
}

.story-aside+.story-aside {
  border-top: none
}

.story-aside h4 {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .08em;
  margin-bottom: 16px;
  text-transform: uppercase
}

.story-aside p {
  font-size: .9rem;
  color: #666;
  line-height: 1.75
}

.origin-mark {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--dark);
  line-height: 1;
  margin-bottom: 12px
}



/* ────────────────────────────────────────────────────────
   18. SOLUTIONS
   ──────────────────────────────────────────────────────── */

.solution-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  padding: 60px 0;
  border-bottom: 1px solid var(--border-d)
}

.solution-block:last-child {
  border-bottom: none
}

.solution-block.light-block {
  border-color: var(--border-l)
}

.solution-num {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  color: rgba(240, 48, 60, .5);
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase
}

.solution-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px
}

.solution-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.15;
  margin-bottom: 16px
}

.solution-desc {
  font-size: .975rem;
  line-height: 1.8;
  margin-bottom: 24px
}

.solution-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px
}

.solution-list li {
  font-size: .875rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5
}

.solution-list li::before {
  content: '→';
  color: var(--red);
  flex-shrink: 0
}



/* ────────────────────────────────────────────────────────
   19. CONTACT & FORM
   ──────────────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -.02em
}

.contact-info p {
  font-size: .9rem;
  color: rgba(245, 243, 238, .55);
  line-height: 1.75;
  margin-bottom: 36px
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px
}

.contact-row-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  width: 64px;
  flex-shrink: 0;
  margin-top: 2px
}

.contact-row-val {
  font-size: .9rem;
  color: rgba(245, 243, 238, .75);
  line-height: 1.6
}

.contact-form-box {
  background: var(--dark2);
  border: 1px solid var(--border-d);
  padding: 44px
}

.form-group {
  margin-bottom: 20px
}

.form-label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, .45);
  margin-bottom: 8px
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--border-d);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  padding: 12px 16px;
  outline: none;
  border-radius: 2px;
  transition: border-color .25s, box-shadow .25s;
  font-size: max(.9rem, 16px)
}

.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(245, 243, 238, .2)
}

.form-input.is-invalid,
.form-textarea.is-invalid {
  border-color: #e05555;
  box-shadow: 0 0 0 3px rgba(224, 85, 85, .1)
}

.form-textarea {
  min-height: 130px;
  resize: vertical
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form-meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 6px;
  min-height: 18px
}

.form-error {
  display: none;
  font-size: .75rem;
  color: #e05555;
  letter-spacing: .02em
}

.form-error.visible {
  display: block
}

.form-char-count {
  font-size: .72rem;
  color: rgba(245, 243, 238, .3);
  letter-spacing: .04em;
  flex-shrink: 0;
  margin-left: 8px;
  transition: color .2s
}

.form-char-count.at-limit {
  color: #e05555
}

.btn-submit {
  width: 100%;
  background: var(--red);
  color: var(--pure);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 15px;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s, opacity .2s;
  border: none;
  margin-top: 8px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative
}

.btn-submit:hover:not(:disabled) {
  background: var(--red-d)
}

.btn-submit:disabled {
  opacity: .7;
  cursor: not-allowed
}

.btn-submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite
}

.btn-submit.loading .btn-submit-text {
  opacity: 0;
  position: absolute
}

.btn-submit.loading .btn-submit-spinner {
  display: block
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.form-success {
  display: none;
  align-items: center;
  gap: 16px;
  background: rgba(61, 153, 112, .1);
  border: 1px solid rgba(61, 153, 112, .35);
  padding: 20px 24px;
  border-radius: 2px;
  margin-top: 12px;
  animation: fadeSlideUp .4s var(--ease)
}

.form-success.visible {
  display: flex
}

.form-success-icon {
  width: 36px;
  height: 36px;
  background: rgba(61, 153, 112, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3d9970;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0
}

.form-success strong {
  display: block;
  color: var(--white);
  font-size: .9rem;
  margin-bottom: 4px
}

.form-success p {
  font-size: .82rem;
  color: rgba(245, 243, 238, .55);
  margin: 0
}

.form-error-box {
  display: none;
  background: rgba(224, 85, 85, .08);
  border: 1px solid rgba(224, 85, 85, .3);
  padding: 16px 20px;
  border-radius: 2px;
  color: rgba(245, 243, 238, .8);
  font-size: .875rem;
  margin-top: 12px;
  line-height: 1.6;
  animation: fadeSlideUp .4s var(--ease)
}

.form-error-box.visible {
  display: block
}

.form-error-box a {
  color: var(--red);
  text-decoration: underline
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}



/* ────────────────────────────────────────────────────────
   20. STEPS GRID
   ──────────────────────────────────────────────────────── */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-d);
  border: 1px solid var(--border-d)
}

.steps-grid-item {
  background: var(--dark2);
  padding: 36px 28px;
  transition: background .25s, transform .22s ease, box-shadow .25s;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden
}

.steps-grid-item:hover {
  background: var(--dark3);
  box-shadow: inset 0 0 0 1px rgba(240, 48, 60, .2), 0 0 48px rgba(240, 48, 60, .06)
}

.steps-grid-item .step-num {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  color: rgba(240, 48, 60, .5);
  margin-bottom: 16px;
  letter-spacing: .12em;
  text-transform: uppercase
}

.steps-grid-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px
}

.steps-grid-item p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.7
}

.divider {
  border: none;
  border-top: 1px solid;
  margin: 0
}

.divider-d {
  border-color: var(--border-d)
}

.divider-l {
  border-color: var(--border-l)
}



/* ────────────────────────────────────────────────────────
   21. RESPONSIVE — MIN-WIDTH BREAKPOINTS
   ──────────────────────────────────────────────────────── */

@media (min-width:1440px) {
  :root {
    --max-w: 1380px
  }

  .container {
    padding: 0 48px
  }

  .nav-inner {
    padding: 0 48px
  }

  .hero-content {
    padding: 0 48px;
    padding-top: var(--nav-h)
  }

  .page-hero-inner {
    padding: 0 48px
  }

  .cta-inner {
    padding: 0 48px
  }

  .section {
    padding: 110px 0
  }

  .section-header {
    margin-bottom: 72px
  }

  .section-title-lg {
    font-size: clamp(48px, 4.5vw, 68px)
  }

  .hero-descriptor {
    max-width: 600px
  }

  .page-hero-sub {
    max-width: 640px;
    font-size: 1.1rem
  }

  .footer-desc {
    max-width: 320px
  }

  .careers-open {
    max-width: 820px
  }

  .policy-wrap {
    max-width: 860px
  }

  .contact-grid {
    gap: 100px
  }

  .story-grid {
    gap: 100px
  }

  .philosophy-grid {
    gap: 100px
  }

  .footer-grid {
    gap: 80px
  }
}

@media (min-width:1920px) {
  :root {
    --max-w: 1760px
  }

  .container {
    padding: 0 60px
  }

  .nav-inner {
    padding: 0 60px
  }

  .hero-content {
    padding: 0 60px;
    padding-top: var(--nav-h)
  }

  .page-hero-inner {
    padding: 0 60px
  }

  .cta-inner {
    padding: 0 60px
  }

  .section {
    padding: 130px 0
  }

  .section-header {
    margin-bottom: 88px
  }

  .hero-title {
    font-size: clamp(108px, 7.5vw, 180px)
  }

  .page-hero-title {
    font-size: clamp(72px, 5.5vw, 120px)
  }

  .section-title-lg {
    font-size: clamp(56px, 4vw, 80px)
  }

  .section-title-md {
    font-size: clamp(44px, 3.2vw, 60px)
  }

  .hero-descriptor {
    max-width: 760px;
    font-size: 1.2rem
  }

  .page-hero-sub {
    max-width: 820px;
    font-size: 1.15rem
  }

  .footer-desc {
    max-width: 400px;
    font-size: 1rem
  }

  .careers-open {
    max-width: 1100px
  }

  .policy-wrap {
    max-width: 1000px
  }

  .err-inner {
    max-width: 880px
  }

  .pillars-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .verticals-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .values-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .team-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .contact-grid {
    gap: 120px
  }

  .story-grid {
    gap: 120px
  }

  .philosophy-grid {
    gap: 120px
  }

  .footer-grid {
    gap: 100px;
    margin-bottom: 80px
  }

  .pillar-card {
    padding: 56px 44px
  }

  .value-card {
    padding: 56px 48px
  }

  .founder-card {
    padding: 56px 48px
  }

  .steps-grid-item {
    padding: 48px 40px
  }

  .contact-form-box {
    padding: 56px
  }
}

@media (min-width:2560px) {
  :root {
    --max-w: 2360px;
    --nav-h: 80px
  }

  .container {
    padding: 0 80px
  }

  .nav-inner {
    padding: 0 80px
  }

  .hero-content {
    padding: 0 80px;
    padding-top: var(--nav-h)
  }

  .page-hero-inner {
    padding: 0 80px
  }

  .cta-inner {
    padding: 0 80px
  }

  .section {
    padding: 160px 0
  }

  .section-header {
    margin-bottom: 100px
  }

  .hero-title {
    font-size: clamp(180px, 8.5vw, 260px)
  }

  .page-hero-title {
    font-size: clamp(120px, 6vw, 160px)
  }

  .section-title-lg {
    font-size: clamp(72px, 4vw, 100px)
  }

  .section-title-md {
    font-size: clamp(56px, 3.2vw, 72px)
  }

  .hero-descriptor {
    max-width: 900px;
    font-size: 1.3rem
  }

  .page-hero-sub {
    max-width: 1000px;
    font-size: 1.25rem
  }

  .footer-desc {
    max-width: 500px;
    font-size: 1.05rem
  }

  .careers-open {
    max-width: 1400px
  }

  .policy-wrap {
    max-width: 1200px
  }

  .nav-logo img {
    height: 36px
  }

  .nav-link {
    font-size: 1rem;
    padding: 10px 18px
  }

  .nav-cta {
    font-size: 1rem;
    padding: 12px 28px
  }

  .pillar-card {
    padding: 64px 56px
  }

  .value-card {
    padding: 64px 56px
  }

  .founder-card {
    padding: 64px 56px
  }

  .steps-grid-item {
    padding: 56px 48px
  }

  .contact-form-box {
    padding: 64px
  }

  .contact-grid {
    gap: 160px
  }

  .story-grid {
    gap: 160px
  }

  .philosophy-grid {
    gap: 160px
  }

  .footer-grid {
    gap: 120px;
    margin-bottom: 100px
  }
}



/* ────────────────────────────────────────────────────────
   22. RESPONSIVE — MAX-WIDTH BREAKPOINTS
   ──────────────────────────────────────────────────────── */

@media (max-width:1024px) {
  .container {
    padding: 0 32px
  }

  .nav-inner {
    padding: 0 32px
  }

  .hero-content {
    padding: 0 32px;
    padding-top: var(--nav-h)
  }

  .page-hero-inner {
    padding: 0 32px
  }

  .cta-inner {
    padding: 0 32px
  }

  .pillars-grid {
    grid-template-columns: 1fr 1fr
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .team-grid-about {
    grid-template-columns: repeat(2, 1fr)
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .solution-block {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr
  }

  .section {
    padding: 80px 0
  }
}

@media (max-width:768px) {
  :root {
    --nav-h: 58px
  }

  .nav {
    background: rgba(10, 10, 10, 0.98) !important;
    border-color: var(--border-d) !important;
    backdrop-filter: blur(12px)
  }

  .nav-inner {
    padding: 0 18px;
    gap: 0
  }

  .nav-links {
    display: none
  }

  .nav-cta {
    font-size: .8rem;
    padding: 8px 14px
  }

  .nav-toggle {
    display: flex;
    margin-left: 8px
  }

  .nav-mobile {
    display: block;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, .98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 8px 18px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
    border-bottom: 1px solid var(--border-d);
    transform: translateY(-110%);
    transition: transform .3s var(--ease);
    z-index: 999
  }

  .nav-mobile.open {
    transform: translateY(0)
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--nav-h);
    background: rgba(0, 0, 0, .6);
    z-index: 998;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity .3s var(--ease)
  }

  .nav-overlay.open {
    display: block;
    opacity: 1
  }

  .nav-mobile a {
    display: flex;
    align-items: center;
    font-size: .95rem;
    font-weight: 500;
    color: rgba(245, 243, 238, .8);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-d);
    min-height: 44px
  }

  .nav-mobile a:last-child {
    border-bottom: none;
    color: var(--red);
    font-weight: 600
  }

  .container {
    padding: 0 18px
  }

  .section {
    padding: 52px 0
  }

  .section-header {
    margin-bottom: 36px
  }

  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px
  }

  .section-title-lg {
    font-size: clamp(26px, 6.5vw, 44px)
  }

  .section-title-md {
    font-size: clamp(22px, 5.5vw, 34px)
  }

  .hero {
    min-height: 100svh
  }

  .hero-content {
    padding: 0 18px;
    padding-top: calc(var(--nav-h) + 20px)
  }

  .hero-eyebrow {
    font-size: .7rem;
    margin-bottom: 16px
  }

  .hero-title {
    font-size: clamp(28px, 8vw, 55px)
  }

  .hero-title .line2 {
    -webkit-text-stroke: 1px rgba(245, 243, 238, .25)
  }

  .hero-divider {
    margin: 18px 0
  }

  .hero-descriptor {
    font-size: .9rem;
    margin-bottom: 28px;
    max-width: 100%
  }

  .hero-actions {
    gap: 10px
  }

  .hero-actions .btn-primary {
    flex: 1;
    justify-content: center;
    white-space: nowrap;
    padding-left: 16px;
    padding-right: 16px;
    font-size: .82rem
  }

  .hero-actions .btn-secondary {
    flex: 0;
    justify-content: center;
    white-space: nowrap;
    padding-left: 14px;
    padding-right: 14px;
    font-size: .78rem
  }

  .hero-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 36px;
    border: none
  }

  .hero-strip-item {
    border: none !important;
    border-bottom: 1px solid var(--border-d) !important;
    border-left: 1px solid var(--border-d) !important;
    padding: 16px 14px
  }

  .hero-strip-item:first-child {
    border-left: 1px solid var(--border-d) !important
  }

  .hero-strip-item:nth-child(even) {
    border-right: 1px solid var(--border-d) !important
  }

  .hero-strip-item:nth-child(3),
  .hero-strip-item:nth-child(4) {
    border-bottom: none !important
  }

  .hero-strip-num {
    font-size: 1.5rem
  }

  .hero-strip-label {
    font-size: .65rem
  }

  .pillars-grid {
    grid-template-columns: 1fr
  }

  .pillar-card {
    padding: 26px 20px
  }

  .verticals-grid {
    grid-template-columns: 1fr 1fr
  }

  .values-grid {
    grid-template-columns: 1fr
  }

  .value-card {
    padding: 28px 22px
  }

  .team-grid {
    grid-template-columns: 1fr 1fr !important
  }

  .team-grid-about {
    grid-template-columns: 1fr 1fr !important
  }

  .founder-card {
    padding: 28px 22px
  }

  .founder-avatar {
    width: 64px !important;
    height: 64px !important;
    font-size: 1rem !important
  }

  .cta-band {
    padding: 48px 0
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 0 18px
  }

  .cta-text {
    font-size: clamp(18px, 4.5vw, 28px)
  }

  .btn-white {
    align-self: flex-start
  }

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

  .philosophy-quote {
    font-size: clamp(16px, 3.5vw, 22px)
  }

  .footer {
    padding: 48px 0 0
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px
  }

  .footer-cin {
    text-align: left
  }

  .footer-cin span {
    display: block
  }

  .footer-cin span.footer-cin-dot {
    display: none
  }

  .page-hero {
    padding: calc(var(--nav-h) + 40px) 0 40px
  }

  .page-hero-inner {
    padding: 0 18px
  }

  .page-hero-title {
    font-size: clamp(30px, 8vw, 52px)
  }

  .page-hero-sub {
    font-size: .9rem
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .story-text h3 {
    font-size: 1.35rem
  }

  .story-aside {
    padding: 22px 18px
  }

  .solution-block {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 36px 0
  }

  .solution-list {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .contact-form-box {
    padding: 24px 18px
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .steps-grid {
    grid-template-columns: 1fr
  }

  .form-input,
  .form-textarea,
  .form-select {
    font-size: 16px
  }
}

@media (max-width:480px) {
  .container {
    padding: 0 16px
  }

  .nav-inner {
    padding: 0 16px
  }

  .nav-mobile {
    padding-left: 16px;
    padding-right: 16px
  }

  .hero-content {
    padding: 0 16px;
    padding-top: calc(var(--nav-h) + 16px)
  }

  .hero-title {
    font-size: clamp(24px, 8vw, 38px)
  }

  .hero-strip-num {
    font-size: 1.3rem
  }

  .section {
    padding: 44px 0
  }

  .pillar-card {
    padding: 22px 16px
  }

  .value-card {
    padding: 24px 18px
  }

  .founder-card {
    padding: 24px 18px
  }

  .team-grid {
    grid-template-columns: 1fr !important
  }

  .team-grid-about {
    grid-template-columns: 1fr !important
  }

  .verticals-grid {
    grid-template-columns: 1fr
  }

  .vertical-card {
    flex-direction: column;
    gap: 8px
  }

  .vertical-n {
    font-size: .7rem
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .cta-inner {
    padding: 0 16px
  }

  .page-hero-inner {
    padding: 0 16px
  }

  .contact-form-box {
    padding: 20px 14px
  }

  .steps-grid-item {
    padding: 24px 18px
  }
}

.pillar-card {
  cursor: auto
}



/* ────────────────────────────────────────────────────────
   23. PRIVACY POLICY
   ──────────────────────────────────────────────────────── */

.policy-wrap {
  max-width: 740px
}

.policy-block {
  margin-bottom: 48px
}

.policy-block:last-child {
  margin-bottom: 0
}

.policy-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.015em;
  margin-bottom: 14px
}

.policy-block p {
  font-size: .975rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 12px
}

.policy-block p:last-child {
  margin-bottom: 0
}

.policy-list {
  margin: 12px 0 14px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.policy-list li {
  font-size: .95rem;
  color: #555;
  line-height: 1.7;
  padding-left: 20px;
  position: relative
}

.policy-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: .85rem
}

.policy-link {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s
}

.policy-link:hover {
  border-color: var(--red)
}

.policy-contact-box {
  margin-top: 20px;
  border: 1px solid var(--border-l);
  padding: 28px 32px
}

.policy-contact-box p {
  font-size: .9rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 6px
}

.policy-contact-box p:last-child {
  margin-bottom: 0
}

.policy-contact-box strong {
  color: var(--dark)
}



/* ────────────────────────────────────────────────────────
   24. CARD ICONS & HOVER EFFECTS
   ──────────────────────────────────────────────────────── */

.card-icon {
  width: 44px;
  height: 44px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 10px;
  margin-bottom: 20px;
  display: block
}

.pillar-card::before,
.vertical-card::before,
.value-card::before,
.founder-card::before,
.steps-grid-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height .35s var(--ease)
}

.pillar-card:hover::before,
.vertical-card:hover::before,
.value-card:hover::before,
.founder-card:hover::before,
.steps-grid-item:hover::before {
  height: 100%
}

.pillar-card {
  transition: background .25s, transform .12s ease, box-shadow .25s;
  transform-style: preserve-3d;
  will-change: transform
}

.value-card {
  transition: background .25s, transform .12s ease, box-shadow .25s;
  transform-style: preserve-3d;
  will-change: transform
}

.value-card:hover {
  box-shadow: inset 0 0 0 1px rgba(240, 48, 60, .2), 0 0 48px rgba(240, 48, 60, .06)
}

.section-dark .verticals-grid {
  background: var(--border-d);
  border-color: var(--border-d)
}

.section-dark .vertical-card:hover {
  background: var(--dark3);
  box-shadow: inset 0 0 0 1px rgba(240, 48, 60, .2), 0 0 48px rgba(240, 48, 60, .06)
}

@media (prefers-reduced-motion:no-preference) {
  .hero-title.reveal {
    transform: translateY(56px) skewY(2deg);
    transition: opacity 1.5s var(--ease), transform 1.5s var(--ease)
  }

  .hero-title.reveal.visible {
    transform: translateY(0) skewY(0deg)
  }
}



/* ────────────────────────────────────────────────────────
   25. REVEAL OVERRIDES FOR CARDS
   ──────────────────────────────────────────────────────── */

.pillar-card.reveal,
.value-card.reveal,
.vertical-card.reveal,
.founder-card.reveal,
.steps-grid-item.reveal,
.blog-card.reveal,
.offer-card.reveal,
.role-card.reveal {
  opacity: 1;
  transform: none
}



/* ────────────────────────────────────────────────────────
   26. PROGRESS BAR & BACK TO TOP
   ──────────────────────────────────────────────────────── */

#pageProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--red);
  z-index: 10000;
  pointer-events: none;
  opacity: 1
}

#backToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--pure);
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .2s;
  z-index: 997;
  pointer-events: none
}

#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all
}

#backToTop:hover {
  background: var(--red-d)
}

@media (max-width:768px) {
  #backToTop {
    bottom: 20px;
    right: 16px
  }
}



/* ────────────────────────────────────────────────────────
   27. RESPONSIVE — SMALL / LANDSCAPE
   ──────────────────────────────────────────────────────── */

@media (max-width:360px) {
  .container {
    padding: 0 14px
  }

  .nav-inner {
    padding: 0 14px
  }

  .nav-mobile {
    padding-left: 14px;
    padding-right: 14px
  }

  .hero-content {
    padding: 0 14px;
    padding-top: calc(var(--nav-h) + 12px)
  }

  .hero-title {
    font-size: clamp(26px, 10vw, 36px)
  }

  .cta-inner {
    padding: 0 14px
  }

  .page-hero-inner {
    padding: 0 14px
  }

  .contact-form-box {
    padding: 18px 12px
  }

  .hero-actions {
    flex-direction: column
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    flex: none
  }
}

@media (max-height:500px) and (orientation:landscape) {
  .hero {
    min-height: 100svh;
    justify-content: flex-start
  }

  .hero-content {
    padding-top: calc(var(--nav-h) + 12px);
    padding-bottom: 32px
  }

  .hero-title {
    font-size: clamp(28px, 6vh, 52px)
  }

  .hero-eyebrow {
    margin-bottom: 10px
  }

  .hero-divider {
    margin: 12px 0
  }

  .hero-descriptor {
    margin-bottom: 16px;
    font-size: .875rem
  }

  .hero-strip {
    margin-top: 20px
  }

  .hero-strip-item {
    padding: 12px 14px
  }
}



/* ────────────────────────────────────────────────────────
   28. 404 ERROR PAGE
   ──────────────────────────────────────────────────────── */

.err-section {
  min-height: calc(100svh - 80px);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(240, 48, 60, .12) 0%, transparent 60%)
}

.err-section #heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0
}

.err-inner {
  position: relative;
  z-index: 1;
  max-width: 640px
}

.err-num {
  font-family: var(--font-display);
  font-size: clamp(100px, 18vw, 180px);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(245, 243, 238, .1);
  line-height: 1;
  letter-spacing: -.05em;
  margin-bottom: 8px
}

.err-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 16px
}

.err-desc {
  font-size: 1rem;
  color: rgba(245, 243, 238, .55);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 40px
}

.err-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}



/* ────────────────────────────────────────────────────────
   29. CAREERS — OPEN ROLES
   ──────────────────────────────────────────────────────── */

.careers-open {
  max-width: 680px
}

.section-light .values-grid {
  background: var(--border-l);
  border-color: var(--border-l)
}

.section-light .value-card {
  background: var(--white)
}

.section-light .value-card:hover {
  background: var(--white);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .13)
}

.section-light .value-title {
  color: var(--dark)
}

.section-light .value-body {
  color: #555
}



/* ────────────────────────────────────────────────────────
   30. ROLE CARDS
   ──────────────────────────────────────────────────────── */

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-d);
  border: 1px solid var(--border-d)
}

.role-card {
  background: var(--dark2);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: background .25s
}

.role-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height .35s var(--ease)
}

.role-card:hover::before {
  height: 100%
}

.role-card:hover {
  background: var(--dark3)
}

.role-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px
}

.role-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px
}

.role-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -.02em
}

.role-meta {
  flex-shrink: 0
}

.role-badge {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border-d);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap
}

.role-desc {
  font-size: .9rem;
  color: rgba(245, 243, 238, .55);
  line-height: 1.8;
  margin-bottom: 28px
}

.role-section {
  margin-bottom: 24px
}

.role-section-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, .35);
  margin-bottom: 12px
}

.role-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.role-list li {
  font-size: .875rem;
  color: rgba(245, 243, 238, .6);
  line-height: 1.6;
  padding-left: 18px;
  position: relative
}

.role-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: .8rem
}

.role-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-d);
  transition: gap .2s
}

.role-apply:hover {
  gap: 14px
}



/* ────────────────────────────────────────────────────────
   31. OFFER CARDS
   ──────────────────────────────────────────────────────── */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-d);
  border: 1px solid var(--border-d)
}

.offer-card {
  background: var(--dark2);
  padding: 40px 36px;
  transition: background .25s;
  position: relative;
  overflow: hidden
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height .35s var(--ease)
}

.offer-card:hover::before {
  height: 100%
}

.offer-card:hover {
  background: var(--dark3)
}

.offer-num {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  color: rgba(240, 48, 60, .5);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px
}

.offer-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -.01em
}

.offer-body {
  font-size: .9rem;
  color: rgba(245, 243, 238, .55);
  line-height: 1.75
}

@media(max-width:1024px) {
  .roles-grid {
    grid-template-columns: 1fr
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {
  .roles-grid {
    grid-template-columns: 1fr
  }

  .offer-grid {
    grid-template-columns: 1fr
  }

  .role-card {
    padding: 28px 22px
  }

  .offer-card {
    padding: 28px 22px
  }

  .role-header {
    flex-direction: column;
    gap: 10px
  }
}

.roles-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border-d);
  border: 1px solid var(--border-d)
}

.role-block {
  background: var(--dark2);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  transition: background .25s;
  position: relative;
  overflow: hidden
}

.role-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height .35s var(--ease)
}

.role-block:hover::before {
  height: 100%
}

.role-block:hover {
  background: var(--dark3)
}

.role-block-left {
  padding: 48px 40px;
  border-right: 1px solid var(--border-d);
  display: flex;
  flex-direction: column;
  gap: 16px
}

.role-block-right {
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-content: start
}

@media(max-width:1024px) {
  .role-block {
    grid-template-columns: 1fr
  }

  .role-block-left {
    border-right: none;
    border-bottom: 1px solid var(--border-d);
    padding: 32px 28px
  }

  .role-block-right {
    grid-template-columns: 1fr;
    padding: 32px 28px
  }
}

@media(max-width:768px) {

  .role-block-left,
  .role-block-right {
    padding: 24px 20px
  }
}

/* ── WORK / PORTFOLIO PAGE ───────────────────────────────────────────────────*/
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-d);
  border: 1px solid var(--border-d)
}

.work-card {
  background: var(--dark2);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: background .25s
}

.work-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height .35s var(--ease)
}

.work-card:hover::before {
  height: 100%
}

.work-card:hover {
  background: var(--dark3)
}

.work-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px
}

.work-num {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(240, 48, 60, .5);
  text-transform: uppercase
}

.work-soon-badge {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, .25);
  white-space: nowrap
}

.work-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 16px
}

.work-desc {
  font-size: .9rem;
  color: rgba(245, 243, 238, .5);
  line-height: 1.8;
  flex: 1
}

.work-card-footer {
  border-top: 1px solid var(--border-d);
  padding-top: 18px;
  margin-top: 28px
}

.work-pillars {
  display: flex;
  align-items: center;
  gap: 0
}

.work-pillar {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(245, 243, 238, .35);
  letter-spacing: .08em;
  text-transform: uppercase
}

.work-pillar+.work-pillar::before {
  content: '·';
  margin: 0 8px;
  color: rgba(245, 243, 238, .18)
}

@media(max-width:1024px) {
  .work-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:768px) {
  .work-card {
    padding: 28px 22px
  }
}

/* ─── THEME TOGGLE BUTTON ─────────────────────────────── */


/* ────────────────────────────────────────────────────────
   32. THEME TOGGLE BUTTON
   ──────────────────────────────────────────────────────── */

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  color: rgba(245, 243, 238, .65);
  transition: color .2s, background .2s;
  flex-shrink: 0;
  margin-left: 2px
}

.theme-toggle:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .06)
}

.theme-icon {
  width: 17px;
  height: 17px;
  display: none;
  pointer-events: none
}

.theme-icon-sun {
  display: block
}

.theme-icon-moon {
  display: none
}

[data-theme="light"] .theme-icon-sun {
  display: none
}

[data-theme="light"] .theme-icon-moon {
  display: block
}

[data-theme="light"] .theme-toggle {
  color: rgba(17, 17, 17, .55)
}

[data-theme="light"] .theme-toggle:hover {
  color: #111;
  background: rgba(0, 0, 0, .05)
}

/* ─── LIGHT MODE ──────────────────────────────────────── */


/* ────────────────────────────────────────────────────────
   33. LIGHT MODE THEME
   ──────────────────────────────────────────────────────── */

[data-theme="light"] {
  color-scheme: light
}

/* Body */
[data-theme="light"] body {
  background: #F5F3EE
}

/* Nav */
[data-theme="light"] .nav.scrolled {
  background: rgba(245, 243, 238, .97);
  border-color: #E2E0DB
}

[data-theme="light"] .nav-link {
  color: rgba(17, 17, 17, .7)
}

[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active {
  color: #111;
  background: rgba(0, 0, 0, .05)
}

[data-theme="light"] .nav-toggle span {
  background: #111
}

[data-theme="light"] .nav-mobile {
  background: rgba(245, 243, 238, .99);
  border-color: #E2E0DB
}

[data-theme="light"] .nav-mobile a {
  color: rgba(17, 17, 17, .8);
  border-color: #E2E0DB
}

[data-theme="light"] .nav-mobile a:last-child {
  color: var(--red)
}

[data-theme="light"] .nav-overlay {
  background: rgba(200, 198, 193, .6)
}

/* Hero */
[data-theme="light"] .hero {
  background-color: #F5F3EE;
  background-image: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(240, 48, 60, .07) 0%, transparent 60%)
}

[data-theme="light"] .hero-title {
  color: #111
}

[data-theme="light"] .hero-title .line2 {
  -webkit-text-stroke: 1.5px rgba(17, 17, 17, .2);
  color: transparent
}

[data-theme="light"] .hero-descriptor {
  color: rgba(17, 17, 17, .6)
}

[data-theme="light"] .hero-strip {
  border-color: #E2E0DB
}

[data-theme="light"] .hero-strip-item {
  border-color: #E2E0DB
}

[data-theme="light"] .hero-strip-label {
  color: #888
}

[data-theme="light"] .btn-secondary {
  color: rgba(17, 17, 17, .55);
  border-color: rgba(17, 17, 17, .15)
}

[data-theme="light"] .btn-secondary:hover {
  border-color: rgba(17, 17, 17, .3);
  background: rgba(0, 0, 0, .04);
  color: rgba(17, 17, 17, .8)
}

/* Page hero */
[data-theme="light"] .page-hero {
  background: #F5F3EE;
  border-color: #E2E0DB
}

[data-theme="light"] .page-hero-title {
  color: #111
}

[data-theme="light"] .page-hero-sub {
  color: rgba(17, 17, 17, .6)
}

/* Philosophy (section-black) */


[data-theme="light"] .philosophy-quote {
  color: #111
}

[data-theme="light"] .philosophy-detail {
  color: rgba(17, 17, 17, .65)
}

[data-theme="light"] .philosophy-origin p {
  color: rgba(17, 17, 17, .55)
}

[data-theme="light"] .philosophy-origin strong {
  color: rgba(17, 17, 17, .8)
}

/* Section dark */
[data-theme="light"] .section-dark {
  background: #EAEAE6
}

[data-theme="light"] .section-dark .section-title {
  color: #111
}

[data-theme="light"] .section-dark .section-body {
  color: rgba(17, 17, 17, .65)
}

/* Value cards */
[data-theme="light"] .values-grid {
  background: #DEDAD4;
  border-color: #DEDAD4
}

[data-theme="light"] .value-card {
  background: #F2F0EB
}

[data-theme="light"] .value-card:hover {
  background: #EAE8E3;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .08)
}

[data-theme="light"] .value-title {
  color: #111
}

[data-theme="light"] .value-body {
  color: rgba(17, 17, 17, .6)
}

/* Verticals in dark sections */
[data-theme="light"] .section-dark .verticals-grid,
[data-theme="light"] .section-dark .vertical-card,
[data-theme="light"] .section-dark .vertical-title,
[data-theme="light"] .section-dark .vertical-desc {
  color: #111
}

[data-theme="light"] .section-dark .verticals-grid {
  background: #DEDAD4;
  border-color: #DEDAD4
}

[data-theme="light"] .section-dark .vertical-card {
  background: #F2F0EB
}

[data-theme="light"] .section-dark .vertical-title {
  color: #111 !important
}

[data-theme="light"] .section-dark .vertical-desc {
  color: rgba(17, 17, 17, .6) !important
}

[data-theme="light"] .section-dark .vertical-card:hover {
  background: #EAE8E3;
  box-shadow: 0 20px 56px rgba(0, 0, 0, .08)
}

/* Steps grid */
[data-theme="light"] .steps-grid {
  background: #DEDAD4;
  border-color: #DEDAD4
}

[data-theme="light"] .steps-grid-item {
  background: #F2F0EB
}

[data-theme="light"] .steps-grid-item:hover {
  background: #EAE8E3;
  box-shadow: none
}

[data-theme="light"] .steps-grid-item h3 {
  color: #111
}

[data-theme="light"] .steps-grid-item p {
  color: rgba(17, 17, 17, .6)
}

/* Role cards */
[data-theme="light"] .roles-grid {
  background: #DEDAD4;
  border-color: #DEDAD4
}

[data-theme="light"] .role-card {
  background: #F2F0EB
}

[data-theme="light"] .role-card:hover {
  background: #EAE8E3
}

[data-theme="light"] .role-title {
  color: #111
}

[data-theme="light"] .role-desc {
  color: rgba(17, 17, 17, .6)
}

[data-theme="light"] .role-list li {
  color: rgba(17, 17, 17, .65)
}

[data-theme="light"] .role-section-title {
  color: rgba(17, 17, 17, .4)
}

[data-theme="light"] .role-badge {
  color: rgba(17, 17, 17, .5);
  border-color: #DEDAD4
}

[data-theme="light"] .role-apply {
  border-color: #DEDAD4
}

/* Offer cards */
[data-theme="light"] .offer-grid {
  background: #DEDAD4;
  border-color: #DEDAD4
}

[data-theme="light"] .offer-card {
  background: #F2F0EB
}

[data-theme="light"] .offer-card:hover {
  background: #EAE8E3
}

[data-theme="light"] .offer-title {
  color: #111
}

[data-theme="light"] .offer-body {
  color: rgba(17, 17, 17, .6)
}

/* Solution blocks */
[data-theme="light"] .solution-block {
  border-color: #E2E0DB
}

/* Contact */
[data-theme="light"] .contact-info h3 {
  color: #111
}

[data-theme="light"] .contact-info p {
  color: rgba(17, 17, 17, .6) !important
}

[data-theme="light"] .contact-row-val {
  color: rgba(17, 17, 17, .75)
}

[data-theme="light"] .contact-form-box {
  background: #F2F0EB;
  border-color: #DEDAD4
}

[data-theme="light"] .form-input,
[data-theme="light"] .form-textarea,
[data-theme="light"] .form-select {
  background: #F5F3EE;
  color: #111;
  border-color: #DEDAD4
}

[data-theme="light"] .form-input::placeholder,
[data-theme="light"] .form-textarea::placeholder {
  color: rgba(17, 17, 17, .25)
}

[data-theme="light"] .form-label {
  color: rgba(17, 17, 17, .5)
}

[data-theme="light"] .form-char-count {
  color: rgba(17, 17, 17, .35)
}



/* Footer */
[data-theme="light"] .footer {
  background: #EEECEA;
  border-color: #E2E0DB
}

[data-theme="light"] .footer-desc {
  color: rgba(17, 17, 17, .5)
}

[data-theme="light"] .footer-col-title {
  color: rgba(17, 17, 17, .4)
}

[data-theme="light"] .footer-links a {
  color: rgba(17, 17, 17, .6)
}

[data-theme="light"] .footer-links a:hover {
  color: #111
}

[data-theme="light"] .footer-bottom {
  border-color: #E2E0DB
}

[data-theme="light"] .footer-legal {
  color: rgba(17, 17, 17, .35)
}

[data-theme="light"] .footer-cin {
  color: rgba(17, 17, 17, .28)
}

/* Blog article (dark page-hero) */
[data-theme="light"] .article-breadcrumb {
  color: rgba(17, 17, 17, .5)
}

[data-theme="light"] .article-hero-title {
  color: #111
}

[data-theme="light"] .article-meta {
  border-color: rgba(17, 17, 17, .1)
}

[data-theme="light"] .article-meta .blog-author-name {
  color: #111
}

[data-theme="light"] .article-author-role {
  color: rgba(17, 17, 17, .5)
}

[data-theme="light"] .article-meta-right .blog-date,
[data-theme="light"] .article-meta-right .blog-read-time {
  color: rgba(17, 17, 17, .5)
}

[data-theme="light"] .article-meta-right .blog-read-time {
  border-color: rgba(17, 17, 17, .15)
}

/* 404 */
[data-theme="light"] .err-section {
  background-color: #F5F3EE;
  background-image: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(240, 48, 60, .07) 0%, transparent 60%)
}

[data-theme="light"] .err-num {
  -webkit-text-stroke: 2px rgba(17, 17, 17, .08)
}

[data-theme="light"] .err-title {
  color: #111
}

[data-theme="light"] .err-desc {
  color: rgba(17, 17, 17, .6)
}

/* Back to top */
[data-theme="light"] #backToTop {
  background: var(--red)
}

/* Logo invert in light mode */
[data-theme="light"] .nav-logo img,
[data-theme="light"] .footer-brand img {
  filter: invert(1)
}

/* ─── LIGHT MODE FIXES ────────────────────────────────── */

/* Fix 1: Base body text color */
[data-theme="light"] body {
  color: #111
}

/* Fix 2: Section-black (careers open, contact steps, etc.) */
[data-theme="light"] .section-black {
  background: #EEECEA
}

[data-theme="light"] .section-black .section-title {
  color: #111
}

[data-theme="light"] .section-black .section-title-md {
  color: #111
}

[data-theme="light"] .section-black .careers-open {
  color: #111
}

[data-theme="light"] .section-black .section-body {
  color: rgba(17, 17, 17, .65)
}

/* Fix 3: Steps grid in section-black */
[data-theme="light"] .section-black .steps-grid {
  background: #DEDAD4;
  border-color: #DEDAD4
}

[data-theme="light"] .section-black .steps-grid-item {
  background: #F2F0EB
}

[data-theme="light"] .section-black .steps-grid-item:hover {
  background: #EAE8E3;
  box-shadow: none
}

[data-theme="light"] .section-black .steps-grid-item h3 {
  color: #111
}

[data-theme="light"] .section-black .steps-grid-item p {
  color: rgba(17, 17, 17, .6)
}

/* Fix 4: Solution blocks in dark sections */
[data-theme="light"] .solution-title {
  color: #111 !important
}

[data-theme="light"] .solution-desc {
  color: rgba(17, 17, 17, .65) !important
}

[data-theme="light"] .solution-list li {
  color: rgba(17, 17, 17, .7) !important
}

/* Fix 5: Verticals inline background override */
[data-theme="light"] .section-dark .verticals-grid,
[data-theme="light"] .section-black .verticals-grid {
  background: #DEDAD4 !important;
  border-color: #DEDAD4 !important
}

[data-theme="light"] .section-dark .vertical-card,
[data-theme="light"] .section-black .vertical-card {
  background: #F2F0EB
}

[data-theme="light"] .section-dark .vertical-n,
[data-theme="light"] .section-black .vertical-n {
  color: rgba(240, 48, 60, .5)
}

/* Fix 6: Select dropdown — use native browser arrow */
[data-theme="light"] .form-select {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  background-image: none;
  padding-right: 16px
}

/* Fix 7: Section titles globally in light mode */
[data-theme="light"] .section-title {
  color: #111
}

/* ─── LIGHT MODE: VARIABLE OVERRIDES (fixes inline background:var(--dark2)) ── */
[data-theme="light"] {
  --dark2: #EEECEA;
  --dark3: #E6E4DF;
  --border-d: #DEDAD4;
}

/* ─── LIGHT MODE: !important overrides for hardcoded inline styles ─────────── */

/* solutions.html — vertical titles (inline color:var(--white)) */
[data-theme="light"] .vertical-title {
  color: #111 !important
}



/* contact-form-heading inherits from body (dark in light mode) */
.contact-form-heading {
  color: var(--white)
}

[data-theme="light"] .contact-form-heading {
  color: #111
}

/* Careers open roles — paragraph has hardcoded inline rgba, needs !important */
[data-theme="light"] .careers-open p {
  color: rgba(17, 17, 17, .65) !important
}

/* ─── MOBILE LIGHT MODE FIXES ─────────────────────────── */

/* Mobile nav is always dark (rgba(10,10,10) !important) —
   revert logo invert so it stays white on the dark mobile nav */
@media (max-width: 768px) {
  [data-theme="light"] .nav-logo img {
    filter: none
  }
}

/* Remove sticky hover state on touch devices for theme toggle */
@media (hover: none) {
  .theme-toggle:hover {
    background: transparent
  }
  [data-theme="light"] .theme-toggle:hover {
    background: transparent
  }
}

/* Mobile nav is always dark — keep toggle + hamburger icons white in light mode */
@media (max-width: 768px) {
  [data-theme="light"] .theme-toggle {
    color: rgba(245, 243, 238, .65)
  }
  [data-theme="light"] .nav-toggle span {
    background: #F5F3EE
  }
}

/* Remove tap highlight on mobile */
.theme-toggle {
  -webkit-tap-highlight-color: transparent
}

/* Hiring Soon badge on role cards */
.hiring-soon-badge {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(240, 48, 60, .35);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
  background: rgba(240, 48, 60, .06)
}

[data-theme="light"] .hiring-soon-badge {
  background: rgba(240, 48, 60, .06);
  border-color: rgba(240, 48, 60, .3)
}

/* Light mode: speculative section sub-text */
[data-theme="light"] #speculative p {
  color: rgba(17, 17, 17, .45) !important
}

/* Offset speculative anchor for fixed nav height */
#speculative {
  scroll-margin-top: calc(var(--nav-h) + 24px)
}
