/* === RESET & BASE === */
* { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}
h1, h2, h3, h4, .display {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  letter-spacing: -.02em;
  line-height: 1.1;
}
::selection { background: rgba(142,120,230,.22) }
a { color: inherit; text-decoration: none }
img { max-width: 100%; display: block }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px }
nav, header, section, footer { position: relative; z-index: 1 }

/* === AMBIENT BG BLUR === */
.bg-blur {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.bg-orb {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: .4;
}
.bg-orb--1 {
  width: 400px; height: 400px; top: -15%; left: -20%;
  background: radial-gradient(circle, var(--lav) 0%, transparent 70%);
  animation: orb-1 14s ease-in-out infinite alternate;
}
.bg-orb--2 {
  width: 350px; height: 350px; top: 25%; right: -20%;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
  animation: orb-2 18s ease-in-out infinite alternate;
}
.bg-orb--3 {
  width: 300px; height: 300px; bottom: -10%; left: 10%;
  background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
  animation: orb-3 16s ease-in-out infinite alternate;
}
@keyframes orb-1 {
  0% { transform: translate(0, 0) scale(1) }
  25% { transform: translate(60px, 30px) scale(1.15) }
  50% { transform: translate(20px, 70px) scale(.9) }
  75% { transform: translate(-40px, 40px) scale(1.1) }
  100% { transform: translate(-20px, -30px) scale(1.05) }
}
@keyframes orb-2 {
  0% { transform: translate(0, 0) scale(1) }
  25% { transform: translate(-50px, -40px) scale(1.12) }
  50% { transform: translate(-80px, 20px) scale(.92) }
  75% { transform: translate(-30px, 60px) scale(1.08) }
  100% { transform: translate(30px, -20px) scale(.96) }
}
@keyframes orb-3 {
  0% { transform: translate(0, 0) scale(1) }
  25% { transform: translate(40px, -50px) scale(1.1) }
  50% { transform: translate(80px, -20px) scale(.88) }
  75% { transform: translate(20px, 30px) scale(1.14) }
  100% { transform: translate(-30px, -40px) scale(1) }
}

/* === NAV (mobile base) === */
nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  background: rgba(246,243,238,.78);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 64px }
.nav-logo { height: 28px; width: auto }
.nav-links {
  display: none;
}
.nav-links a {
  font-size: 16px; font-weight: 500; color: var(--ink-mute);
  padding: 8px 14px; border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: var(--cream-2) }
.nav-links .nav-cta {
  font-size: 14px; font-weight: 600; color: var(--white);
  padding: 9px 20px; border-radius: 999px; background: var(--ink);
  transition: transform .2s, box-shadow .2s;
}
.nav-links .nav-cta:hover { color: var(--white); background: var(--ink); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(22,20,28,.25) }
.lang-sw {
  font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--violet);
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--white);
  transition: background .2s;
}
.lang-sw:hover { background: var(--cream-2) }
.nav-burger { display: block; background: none; border: 0; cursor: pointer; padding: 8px }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .3s }

/* burger open state (mobile) */
.nav-links.open {
  display: flex; flex-direction: column; align-items: stretch;
  position: absolute; top: 64px; left: 0; right: 0;
  background: var(--cream); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 12px 20px 20px; gap: 0;
  box-shadow: 0 20px 40px rgba(22,20,28,.12);
  z-index: 200;
}
.nav-links.open a {
  padding: 14px 4px; border-radius: 0; border-bottom: 1px solid var(--line);
  font-size: 16px; min-height: 48px; display: flex; align-items: center;
  justify-content: flex-start; text-align: left;
}
.nav-links.open .lang-sw {
  border: 0; background: none; padding: 14px 4px; border-radius: 0;
  border-bottom: 1px solid var(--line); justify-content: flex-start;
  font-size: 16px; letter-spacing: .05em;
}
.nav-links.open .nav-cta {
  margin-top: 12px; text-align: center; display: flex; justify-content: center;
  border-radius: 999px; border-bottom: 0; min-height: 48px; width: 100%;
}

/* === HERO (mobile base) === */
.hero { position: relative; overflow: hidden; padding: 60px 0 56px }
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; background: var(--grad-soft);
  filter: blur(60px); pointer-events: none; z-index: 0;
  animation: glow-drift 24s ease-in-out infinite;
}
@keyframes glow-drift {
  0%, 100% { transform: translateX(-50%) scale(1) }
  33% { transform: translateX(-45%) scale(1.04) }
  66% { transform: translateX(-55%) scale(.97) }
}
.hero .wrap { position: relative; z-index: 1; text-align: center }
.hero-logo { height: 36px; margin: 0 auto 24px }
.hero h1 { font-size: clamp(36px, 8vw, 72px); font-weight: 700; margin-bottom: 18px; letter-spacing: -.03em }
.hero h1 span {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lede { font-size: 16px; color: var(--ink-soft); max-width: 58ch; margin: 0 auto 28px; line-height: 1.7 }
.hero-actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; width: 100% }
.hero-actions a { width: 100%; text-align: center; justify-content: center }

/* buttons (mobile base) */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--white); padding: 14px 32px; border-radius: 999px;
  border: 0; cursor: pointer; background: var(--ink);
  transition: transform .25s, box-shadow .25s; min-height: 48px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg) }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--ink); padding: 14px 32px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--white); cursor: pointer;
  transition: transform .25s, box-shadow .25s, background .2s; min-height: 48px;
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow); background: var(--cream-2) }

.btn-light {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--ink); padding: 14px 32px; border-radius: 999px;
  border: 0; cursor: pointer; background: var(--white);
  transition: transform .25s, box-shadow .25s; min-height: 48px;
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg) }

.hero-pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 28px }
.pill {
  font-size: 13px; font-weight: 500; color: var(--ink-mute);
  padding: 8px 16px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow);
}

/* === SECTIONS (mobile base) === */
section { padding: 56px 0 }
section + section { border-top: 1px solid var(--line) }
.sec-tag {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--violet); margin-bottom: 14px;
}
.sec-head { max-width: 60ch; margin-bottom: 32px }
.sec-head.center { text-align: center; margin-left: auto; margin-right: auto }
.sec-head h2 { font-size: 28px; font-weight: 700; margin-bottom: 16px }
.sec-head p { font-size: 15px; color: var(--ink-soft); line-height: 1.7 }

/* === PROBLEM (mobile base: 1 col) === */
.problem { background: var(--ink); color: #EFEAF6; border-top: 0 }
.problem .sec-tag { color: var(--cyan) }
.problem .sec-head p { color: #A9A3B6 }
.problem-grid { display: grid; grid-template-columns: 1fr; gap: 20px }
.problem-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 28px;
  transition: transform .25s, box-shadow .25s;
}
.problem-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.3) }
.problem-card .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(183,166,230,.18), rgba(143,210,230,.14));
  border: 1px solid rgba(255,255,255,.08);
  display: grid; place-items: center; margin-bottom: 18px; font-size: 20px;
}
.problem-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; color: #fff }
.problem-card p { font-size: 15px; color: #A9A3B6; line-height: 1.7 }

/* === SOLUTION (mobile base: 1 col) === */
.solution-text { font-size: 16px; color: var(--ink-soft); max-width: 64ch; margin-bottom: 32px; line-height: 1.75 }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 20px }
.feat-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s;
}
.feat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg) }
.feat-card .feat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-soft); border: 1px solid var(--line);
  display: grid; place-items: center; margin-bottom: 16px; font-size: 20px;
}
.feat-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px }
.feat-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.7 }

/* === STEPS (mobile base: 1 col) === */
.steps { display: grid; grid-template-columns: 1fr; gap: 20px; counter-reset: step }
.step-card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
  counter-increment: step; transition: transform .25s, box-shadow .25s;
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg) }
.step-card::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 13px;
  color: var(--violet); display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad-soft); border: 1px solid var(--line); margin-bottom: 16px;
}
.step-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px }
.step-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.7 }

/* === DIFF (mobile base: 1 col) === */
.diff-grid { display: grid; grid-template-columns: 1fr; gap: 20px }
.diff-card { border-radius: var(--radius-lg); padding: 28px; position: relative; overflow: hidden }
.diff-them { background: #F0EDED; border: 1px solid #DDD8D8 }
.diff-us { background: linear-gradient(160deg, #1B1822, #262234); color: #EFEAF6 }
.diff-us .diff-glow {
  position: absolute; bottom: -80px; right: -60px;
  width: 300px; height: 300px; background: var(--grad);
  filter: blur(80px); opacity: .35; pointer-events: none;
}
.diff-card .diff-label {
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 24px;
}
.diff-them .diff-label { color: var(--ink-mute) }
.diff-us .diff-label { color: var(--cyan) }
.diff-card ul { list-style: none; display: flex; flex-direction: column; gap: 18px }
.diff-card li { position: relative; padding-left: 28px; font-size: 15px; line-height: 1.6 }
.diff-them li { color: var(--ink-soft) }
.diff-us li { color: #CFC8DC; position: relative; z-index: 1 }
.diff-card li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 10px; height: 10px; border-radius: 50%;
}
.diff-them li::before { background: #C4BFBF }
.diff-us li::before { background: var(--grad) }

/* === PRICING (mobile base: 1 col) === */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: start }
.price-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg) }
.price-card.featured {
  background: linear-gradient(160deg, #1B1822, #262234);
  color: #EFEAF6; border-color: transparent;
  position: relative; overflow: hidden;
}
.price-card.featured .price-glow {
  position: absolute; bottom: -60px; right: -40px;
  width: 280px; height: 280px; background: var(--grad);
  filter: blur(70px); opacity: .4; pointer-events: none;
}
.price-tier {
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 20px;
}
.price-card:not(.featured) .price-tier { color: var(--violet) }
.price-card.featured .price-tier { color: var(--cyan); position: relative; z-index: 1 }
.price-badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px; margin-left: 8px;
  background: var(--grad); color: var(--ink); letter-spacing: .05em; vertical-align: middle;
}
.price-amount {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(32px, 4vw, 42px); margin-bottom: 4px;
  position: relative; z-index: 1;
}
.price-amount small { font-size: 16px; font-weight: 500; opacity: .6 }
.price-build { font-size: 14px; margin-bottom: 20px; position: relative; z-index: 1 }
.price-card:not(.featured) .price-build { color: var(--ink-mute) }
.price-card.featured .price-build { color: #A9A3B6 }
.price-desc { font-size: 15px; line-height: 1.7; margin-bottom: 24px; position: relative; z-index: 1 }
.price-card:not(.featured) .price-desc { color: var(--ink-soft) }
.price-card.featured .price-desc { color: #CFC8DC }
.price-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 12px; margin-bottom: 28px; position: relative; z-index: 1;
}
.price-features li { font-size: 14px; padding-left: 24px; position: relative; line-height: 1.6 }
.price-card:not(.featured) .price-features li { color: var(--ink-soft) }
.price-card.featured .price-features li { color: #CFC8DC }
.price-features li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  font-weight: 700; font-size: 14px;
}
.price-card:not(.featured) .price-features li::before { color: var(--violet) }
.price-card.featured .price-features li::before { color: var(--cyan) }
.price-cta {
  display: block; width: 100%; text-align: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600;
  padding: 14px 24px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .25s, box-shadow .25s; position: relative; z-index: 1;
  min-height: 48px;
}
.price-card:not(.featured) .price-cta { background: var(--cream-2); color: var(--ink); border: 1px solid var(--line) }
.price-card:not(.featured) .price-cta:hover { background: var(--cream); transform: translateY(-1px); box-shadow: var(--shadow) }
.price-card.featured .price-cta { background: var(--white); color: var(--ink) }
.price-card.featured .price-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg) }
.price-custom {
  background: var(--cream-2); border: 1px dashed var(--line);
}
.price-custom .price-tier { color: var(--ink-mute) }
.price-custom .price-amount { font-size: clamp(28px, 3.5vw, 36px) }
.price-custom .price-build { color: var(--ink-mute) }
.price-custom .price-desc { color: var(--ink-soft) }
.price-custom .price-features li { color: var(--ink-soft) }
.price-custom .price-features li::before { color: var(--violet) }
.price-custom .price-cta {
  background: var(--ink); color: var(--white); border: 0;
}
.price-custom .price-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg) }
.pricing-notes { margin-top: 32px; display: flex; flex-direction: column; gap: 12px }
.pricing-note { font-size: 14px; color: var(--ink-mute); padding: 16px 20px; background: var(--cream-2); border-radius: 12px; line-height: 1.6 }
.pricing-note strong { color: var(--ink-soft); font-weight: 600 }

/* === FAQ (mobile base) === */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0 }
.faq-item { border-bottom: 1px solid var(--line) }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; cursor: pointer; min-height: 48px;
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--ink); background: none; border: 0; width: 100%; text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: var(--violet) }
.faq-q .chevron {
  flex: none; width: 32px; height: 32px; display: grid; place-items: center;
  border-radius: 50%; background: var(--cream-2);
  transition: transform .3s, background .3s; font-size: 12px; color: var(--ink-mute);
}
.faq-item.open .faq-q .chevron { transform: rotate(180deg); background: var(--grad-soft) }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px }
.faq-a p { font-size: 14px; color: var(--ink-soft); line-height: 1.75; max-width: 62ch }

/* === FINAL CTA (mobile base) === */
.final-cta {
  background: linear-gradient(160deg, #1B1822, #262234);
  color: #EFEAF6; border-top: 0; text-align: center;
  position: relative; overflow: hidden;
}
.final-cta .cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 400px; background: var(--grad);
  filter: blur(100px); opacity: .2; pointer-events: none;
}
.final-cta .wrap { position: relative; z-index: 1 }
.final-cta h2 { font-size: 26px; font-weight: 700; margin-bottom: 16px; color: #fff }
.final-cta p { font-size: 15px; color: #A9A3B6; max-width: 48ch; margin: 0 auto 32px; line-height: 1.7 }
.cta-phone { margin-top: 20px !important }
.cta-phone a { color: #CFC8DC; font-size: 15px; transition: color .2s }
.cta-phone a:hover { color: #fff }

/* === FOOTER (mobile base: stacked) === */
footer { padding: 40px 0; border-top: 1px solid var(--line) }
.foot-in {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 20px;
}
.foot-logo { height: 22px; opacity: .5 }
.foot-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px }
.foot-links a {
  font-size: 14px; color: var(--ink-mute); transition: color .2s;
  min-height: 44px; display: flex; align-items: center;
}
.foot-links a:hover { color: var(--ink) }
.foot-copy { font-size: 13px; color: var(--ink-mute) }

/* === SHORT HERO (inner pages) === */
.hero--short { padding: 48px 0 40px }
.hero--short h1 { font-size: clamp(28px, 6vw, 48px) }

/* ============================================
   PAGE: ABOUT — editorial, asymmetric, personal
   ============================================ */

/* about hero: dark, full-width, gradient bg */
.hero--about {
  background: linear-gradient(160deg, #1B1822, #262234);
  color: #EFEAF6; padding: 80px 0 64px;
}
.hero--about .hero-glow { opacity: .5 }
.hero--about h1 { color: #fff }
.hero--about .lede { color: #A9A3B6 }

/* origin: asymmetric 2-col with big pull-quote */
.about-origin { display: grid; grid-template-columns: 1fr; gap: 40px }
.about-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 4vw, 36px); font-weight: 700; line-height: 1.3;
  color: var(--ink); position: relative; padding-left: 24px;
}
.about-quote::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--grad); border-radius: 2px;
}
.about-narrative { max-width: 60ch }
.about-narrative p { font-size: 16px; color: var(--ink-soft); line-height: 1.85; margin-bottom: 18px }
.about-narrative p:last-child { margin-bottom: 0 }

/* values strip: horizontal scroll on mobile, 3-col on desktop */
.values-strip { display: grid; grid-template-columns: 1fr; gap: 20px }
.value-item {
  background: var(--ink); color: #EFEAF6;
  border-radius: var(--radius-lg); padding: 32px; position: relative; overflow: hidden;
}
.value-item::after {
  content: attr(data-num); position: absolute; top: 16px; right: 20px;
  font-family: 'Space Grotesk', sans-serif; font-size: 72px; font-weight: 700;
  color: rgba(255,255,255,.04); line-height: 1;
}
.value-item h3 {
  font-size: 18px; font-weight: 600; margin-bottom: 10px; color: #fff;
  position: relative; z-index: 1;
}
.value-item p { font-size: 15px; color: #A9A3B6; line-height: 1.7; position: relative; z-index: 1 }

/* team: horizontal cards with large photos */
.team-row { display: grid; grid-template-columns: 1fr; gap: 32px }
.team-card-hz {
  display: grid; grid-template-columns: 1fr; gap: 0;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s;
}
.team-card-hz:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg) }
.team-img {
  aspect-ratio: 4/3; background: var(--grad-soft); overflow: hidden;
}
.team-img img { width: 100%; height: 100%; object-fit: cover }
.team-body { padding: 28px }
.team-body h3 { font-size: 22px; font-weight: 600; margin-bottom: 4px }
.team-body .team-role {
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--violet); margin-bottom: 14px;
}
.team-body p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 16px }
.team-linkedin {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; color: var(--violet);
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line);
  transition: background .2s, color .2s;
}
.team-linkedin:hover { background: var(--grad-soft); color: var(--ink) }

/* location: minimal inline */
.location-inline {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  padding: 20px 28px; background: var(--cream-2); border-radius: var(--radius);
}
.location-inline svg { flex: none }
.location-inline span { font-size: 15px; color: var(--ink-soft) }

/* ============================================
   PAGE: PRODUCT — dark hero, alternating sections
   ============================================ */

.hero--product {
  background: linear-gradient(160deg, #1B1822 0%, #1a1a2e 50%, #262234 100%);
  color: #EFEAF6; padding: 80px 0 64px;
}
.hero--product .hero-glow { opacity: .4 }
.hero--product h1 { color: #fff }
.hero--product .lede { color: #A9A3B6 }
.hero--product .btn-primary { background: var(--white); color: var(--ink) }
.hero--product .btn-primary:hover { box-shadow: 0 6px 24px rgba(255,255,255,.2) }
.hero--product .btn-secondary { border-color: rgba(255,255,255,.2); color: #EFEAF6; background: transparent }
.hero--product .btn-secondary:hover { background: rgba(255,255,255,.06) }

/* feature showcase: alternating left/right with icon + text */
.feature-showcase { display: flex; flex-direction: column; gap: 0 }
.feature-row {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  padding: 40px 0; border-bottom: 1px solid var(--line);
  align-items: center;
}
.feature-row:last-child { border-bottom: 0 }
.feature-visual {
  aspect-ratio: 4/3; border-radius: var(--radius-lg);
  background: var(--grad-soft); display: grid; place-items: center;
  border: 1px solid var(--line);
}
.feature-visual svg { width: 48px; height: 48px; stroke: var(--violet); stroke-width: 1.5 }
.feature-text h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px }
.feature-text p { font-size: 16px; color: var(--ink-soft); line-height: 1.75 }

/* process timeline: vertical with connecting line */
.process-timeline { position: relative; padding-left: 40px }
.process-timeline::before {
  content: ""; position: absolute; left: 16px; top: 0; bottom: 0;
  width: 2px; background: var(--line);
}
.process-step {
  position: relative; padding: 0 0 40px; margin: 0;
}
.process-step:last-child { padding-bottom: 0 }
.process-dot {
  position: absolute; left: -40px; top: 4px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--grad-soft); border: 2px solid var(--line);
  display: grid; place-items: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--violet); z-index: 2;
}
.process-step h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px }
.process-step p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; max-width: 52ch }

/* ============================================
   PAGE: CASES — editorial magazine layout
   ============================================ */

.hero--cases {
  background: var(--cream); padding: 80px 0 0; border-bottom: 0;
}
.hero--cases + section { border-top: 0 }
.hero--cases .hero-glow { display: none }
.hero--cases h1 {
  font-size: clamp(40px, 8vw, 80px); letter-spacing: -.04em;
}
.hero--cases .lede { max-width: 48ch }

/* case studies: full-width cards with accent color band */
.cases-stack { display: flex; flex-direction: column; gap: 0 }
.case-full {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}
.case-full:last-child { border-bottom: 0 }
.case-full-meta { margin-bottom: 16px }
.case-full-industry {
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--violet);
}
.case-full h3 { font-size: clamp(24px, 4vw, 36px); font-weight: 700; margin-bottom: 12px; line-height: 1.2 }
.case-full > p { font-size: 16px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 20px; max-width: 56ch }
.case-full-metric {
  display: inline-flex; align-items: baseline; gap: 12px;
  padding: 16px 24px; background: var(--ink); border-radius: var(--radius);
}
.case-full-metric .metric-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.case-full-metric .metric-label { font-size: 14px; color: #A9A3B6 }

/* results banner: full-width dark */
.results-banner {
  background: var(--ink); color: #EFEAF6;
  padding: 64px 0; border-top: 0;
}
.results-banner .wrap {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
.result-big { text-align: center }
.result-big .result-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 6vw, 64px); font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; line-height: 1;
}
.result-big .result-label { font-size: 15px; color: #A9A3B6; margin-top: 8px }

/* ============================================
   PAGE: CONTACT — split screen, gradient right
   ============================================ */

.page-contact { display: flex; flex-direction: column; min-height: 100vh }
.contact-split { display: grid; grid-template-columns: 1fr; flex: 1 }
.contact-left {
  padding: 48px 20px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-left h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 5vw, 44px); font-weight: 700; margin-bottom: 12px; line-height: 1.15;
}
.contact-left .lede { font-size: 16px; color: var(--ink-soft); margin-bottom: 32px; max-width: 48ch; line-height: 1.7 }
.contact-form { display: flex; flex-direction: column; gap: 20px }
.form-group { display: flex; flex-direction: column; gap: 6px }
.form-group label {
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: .06em; color: var(--ink-soft);
}
.form-group input,
.form-group textarea {
  font-family: 'Inter', system-ui, sans-serif; font-size: 15px;
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--white); color: var(--ink); outline: 0;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--violet); box-shadow: 0 0 0 3px rgba(142,120,230,.12);
}
.form-group textarea { resize: vertical; min-height: 120px }
.form-hp { position: absolute; left: -9999px }
.form-success {
  background: var(--grad-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 24px; margin-top: 16px;
}
.form-success p { font-size: 15px; color: var(--ink-soft); font-weight: 500 }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px }

.contact-right {
  background: linear-gradient(160deg, #1B1822, #262234);
  color: #EFEAF6; padding: 48px 24px;
  display: flex; flex-direction: column; justify-content: center; gap: 32px;
  position: relative; overflow: hidden;
}
.contact-right::before {
  content: ""; position: absolute; bottom: -100px; right: -80px;
  width: 300px; height: 300px; background: var(--grad);
  filter: blur(80px); opacity: .25; pointer-events: none;
}
.contact-right h2 {
  font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 8px;
  position: relative; z-index: 1;
}
.contact-right > p { font-size: 15px; color: #A9A3B6; line-height: 1.7; position: relative; z-index: 1 }

.info-stack { display: flex; flex-direction: column; gap: 24px; position: relative; z-index: 1 }
.info-row { display: flex; align-items: flex-start; gap: 16px }
.info-icon {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: linear-gradient(135deg, rgba(183,166,230,.18), rgba(143,210,230,.14));
  border: 1px solid rgba(255,255,255,.08);
  display: grid; place-items: center;
}
.info-row .info-label {
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: #A9A3B6; margin-bottom: 4px;
}
.info-row a, .info-row p {
  font-size: 15px; color: #CFC8DC; line-height: 1.5;
}
.info-row a { transition: color .2s }
.info-row a:hover { color: #fff }

/* ============================================
   PAGE: HOME — trust grid, existing styles
   ============================================ */

/* === TRUST GRID === */
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 16px }
.trust-item {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 20px 24px;
  transition: transform .25s;
}
.trust-item:hover { transform: translateY(-2px) }
.trust-item .icon {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: linear-gradient(135deg, rgba(183,166,230,.18), rgba(143,210,230,.14));
  border: 1px solid rgba(255,255,255,.08);
  display: grid; place-items: center;
}
.trust-item span { font-size: 15px; color: #CFC8DC }

/* === LEGAL CONTENT === */

/* === LEGAL CONTENT === */
.legal-content { padding: 0 0 64px }
.legal-body { max-width: 720px; margin: 0 auto }
.legal-body h2 {
  font-size: 20px; font-weight: 600; margin: 32px 0 12px; color: var(--ink);
}
.legal-body h3 { font-size: 17px; font-weight: 600; margin: 24px 0 8px; color: var(--ink) }
.legal-body p { font-size: 15px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 14px }
.legal-body ul { list-style: disc; padding-left: 24px; margin-bottom: 14px }
.legal-body li { font-size: 15px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 6px }
.legal-body a { color: var(--violet); text-decoration: underline; text-underline-offset: 2px }
.legal-body a:hover { color: var(--ink) }

/* === FOOTER LEGAL LINKS === */
.foot-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px }
.foot-legal a {
  font-size: 13px; color: var(--ink-mute); transition: color .2s;
}
.foot-legal a:hover { color: var(--ink) }

/* === NAV ACTIVE STATE === */
.nav-links a.active { color: var(--violet) }

/* === ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease }
.reveal.visible { opacity: 1; transform: translateY(0) }

/* ============================================
   DESKTOP ENHANCEMENTS (min-width, mobile-first)
   ============================================ */

/* 641px+ : wrap padding, hero expand, FAQ bigger */
@media (min-width: 641px) {
  .wrap { padding: 0 32px }

  .hero { padding: 80px 0 64px }
  .hero--short { padding: 60px 0 48px }
  .hero-logo { height: 44px; margin-bottom: 28px }
  .hero h1 { margin-bottom: 24px }
  .hero .lede { font-size: clamp(17px, 2vw, 20px); margin-bottom: 36px }
  .hero-actions { flex-direction: row; width: auto }
  .hero-actions a { width: auto }
  .hero-pills { margin-top: 40px }

  .btn-primary, .btn-secondary, .btn-light { font-size: 16px }

  section { padding: 80px 0 }
  .sec-head { margin-bottom: 44px }
  .sec-head h2 { font-size: clamp(28px, 4vw, 44px) }
  .sec-head p { font-size: 17px }

  .solution-text { font-size: 18px; margin-bottom: 44px }
  .prose p { font-size: 17px }

  .trust-grid { grid-template-columns: repeat(2, 1fr) }

  /* about page */
  .about-origin { grid-template-columns: 1fr 1fr }
  .values-strip { grid-template-columns: repeat(3, 1fr) }
  .team-row { grid-template-columns: repeat(2, 1fr) }
  .team-card-hz { grid-template-columns: 1fr }

  /* product page */
  .feature-row { grid-template-columns: 1fr 1fr }
  .feature-row:nth-child(even) .feature-visual { order: 2 }
  .feature-row:nth-child(even) .feature-text { order: 1 }

  /* cases page */
  .case-full { grid-template-columns: 1fr }
  .results-banner .wrap { grid-template-columns: repeat(3, 1fr) }

  /* contact page */
  .contact-split { grid-template-columns: 1fr 1fr }
  .contact-left { padding: 64px 48px }
  .contact-right { padding: 64px 48px }
  .form-row { grid-template-columns: 1fr 1fr }

  .faq-q { font-size: 17px; padding: 22px 0 }
  .faq-q .chevron { width: 24px; height: 24px; font-size: 14px }
  .faq-a p { font-size: 15px }

  .final-cta h2 { font-size: clamp(28px, 4vw, 44px) }
  .final-cta p { font-size: 17px }

  .diff-card { padding: 36px }

  .foot-in { flex-direction: column; align-items: center; text-align: center; gap: 16px }
  .foot-links a { font-size: 13px; min-height: auto; display: inline }
  .foot-legal a { font-size: 12px }
}

@media (min-width: 821px) {
  .foot-in { flex-direction: row; align-items: center; justify-content: space-between; text-align: left; flex-wrap: wrap }
}

/* 821px+ : 2-col grids (solution, diff) + 3-col problem */
@media (min-width: 821px) {
  .problem-grid { grid-template-columns: repeat(3, 1fr) }
  .features-grid { grid-template-columns: repeat(2, 1fr) }
  .diff-grid { grid-template-columns: 1fr 1fr }
}

/* 861px+ : desktop nav */
@media (min-width: 861px) {
  .nav-links {
    display: flex; align-items: center; gap: 4px;
  }
  .nav-links a { font-size: 14px }
  .nav-burger { display: none }
}

/* 961px+ : 4-col steps, 3-col pricing */
@media (min-width: 961px) {
  .hero { padding: 100px 0 80px }
  .hero-logo { height: 48px; margin-bottom: 32px }

  .steps { grid-template-columns: repeat(4, 1fr) }
  .pricing-grid { grid-template-columns: repeat(4, 1fr) }

  .bg-orb--1 { width: 750px; height: 750px; left: -15% }
  .bg-orb--2 { width: 650px; height: 650px; right: -15% }
  .bg-orb--3 { width: 550px; height: 550px }
}

/* 641-960: 2-col steps + 2-col pricing */
@media (min-width: 641px) and (max-width: 960px) {
  .steps { grid-template-columns: repeat(2, 1fr) }
  .pricing-grid { grid-template-columns: repeat(2, 1fr) }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px }
::-webkit-scrollbar-track { background: var(--cream) }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px }
::-webkit-scrollbar-thumb:hover { background: var(--ink-mute) }
