/* ═══════════════════════════════════════════════════════════
   XUNARIS TECHNOLOGIES — inner.css v3.0 (DARK)
   Inner / sub-page styles. Requires style.css as base.
   ═══════════════════════════════════════════════════════════ */

/* ── ABOUT PAGE ─────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--bd-0);
}
.about-story-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85) saturate(0.7); }

.about-stats-inline {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.about-stat-inline { text-align: center; }
.about-stat-inline .num {
  font-size: 36px; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -0.03em; line-height: 1;
}
.about-stat-inline .lbl { font-size: 13px; color: var(--tx-3); margin-top: 4px; }

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.vm-card {
  background: var(--bg-1);
  border: 1px solid var(--bd-0);
  border-radius: var(--r-xl);
  padding: 40px;
  transition: border-color var(--t), background var(--t);
}
.vm-card:hover { border-color: var(--bd-1); background: var(--bg-2); }
.vm-card-tag { margin-bottom: 20px; }
.vm-card h3 { font-size: 22px; margin-bottom: 12px; color: var(--tx-1); }
.vm-card > p { font-size: 15px; line-height: 1.7; margin-bottom: 24px; color: var(--tx-2); }
.vm-goals { display: flex; flex-direction: column; gap: 10px; }
.vm-goal {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--tx-2); font-weight: 500;
}
.vm-goal::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.value-card {
  background: var(--bg-1);
  border: 1px solid var(--bd-0);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: all var(--t);
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(77,142,255,0.22); box-shadow: var(--sh-hover); }
.value-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.value-icon svg { width: 22px; height: 22px; }
.value-card h4 { font-size: 16px; margin-bottom: 10px; color: var(--tx-1); }
.value-card p  { font-size: 14px; line-height: 1.7; color: var(--tx-3); }

.founder-section {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.founder-img-wrap { position: relative; }
.founder-img {
  border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 3/4;
  border: 1px solid var(--bd-0);
}
.founder-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.80) saturate(0.6); }
.founder-badge {
  position: absolute; bottom: -16px; left: 24px; right: 24px;
  background: var(--bg-2);
  border: 1px solid var(--bd-1);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  box-shadow: var(--sh-card);
}
.founder-badge-name { font-size: 16px; font-weight: 700; color: var(--tx-1); }
.founder-badge-title { font-size: 13px; color: var(--tx-3); margin-top: 2px; }
.founder-content { padding-top: 16px; }
.founder-quote {
  font-size: 20px; line-height: 1.55; color: var(--tx-1);
  font-weight: 600; font-style: italic;
  margin-bottom: 28px; padding-left: 20px;
  border-left: 3px solid var(--accent);
}
.founder-content p { font-size: 16px; line-height: 1.8; margin-bottom: 16px; color: var(--tx-2); }
.founder-exp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: var(--accent-dim);
  border-radius: var(--r-full); border: 1px solid rgba(77,142,255,0.18);
  font-size: 13px; font-weight: 600; color: var(--accent); margin-top: 12px;
}

/* ── LEADERSHIP PAGE ─────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.team-card {
  background: var(--bg-1);
  border: 1px solid var(--bd-0);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t);
}
.team-card:hover { transform: translateY(-4px); border-color: rgba(77,142,255,0.22); box-shadow: var(--sh-hover); }
.team-card-img { aspect-ratio: 1; overflow: hidden; }
.team-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.80) saturate(0.6);
  transition: transform var(--t-lg), filter var(--t-lg);
}
.team-card:hover .team-card-img img { transform: scale(1.04); filter: brightness(0.90) saturate(0.75); }
.team-card-body { padding: 24px; }
.team-card h3 { font-size: 18px; margin-bottom: 4px; color: var(--tx-1); }
.team-card-role { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.team-card p  { font-size: 14px; line-height: 1.65; color: var(--tx-3); }

/* ── SERVICES PAGE ───────────────────────────────────────── */
.services-list {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 56px;
  border: 1px solid var(--bd-0); border-radius: var(--r-xl); overflow: hidden;
}
.service-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 32px; align-items: center;
  padding: 32px 40px;
  background: var(--bg-1);
  border-bottom: 1px solid var(--bd-0);
  transition: background var(--t); cursor: pointer;
}
.service-row:last-child { border-bottom: none; }
.service-row:hover { background: var(--bg-2); }
.service-row-num {
  font-size: 13px; font-weight: 700; color: var(--tx-3); letter-spacing: 0.08em;
}
.service-row-content h3 { font-size: 18px; margin-bottom: 8px; color: var(--tx-1); }
.service-row-content p  { font-size: 14px; line-height: 1.65; max-width: 680px; color: var(--tx-3); }
.service-row-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.service-row-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--bd-0);
  display: flex; align-items: center; justify-content: center;
  color: var(--tx-3); flex-shrink: 0;
  transition: all var(--t);
}
.service-row:hover .service-row-arrow {
  background: var(--accent); border-color: var(--accent);
  color: #fff; box-shadow: 0 2px 16px rgba(77,142,255,0.35);
}
.service-row-arrow svg { width: 16px; height: 16px; }

/* Why Xunaris section on services page */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.why-card {
  background: var(--bg-1);
  border: 1px solid var(--bd-0);
  border-radius: var(--r-xl);
  padding: 40px;
  transition: all var(--t);
}
.why-card:hover { transform: translateY(-4px); border-color: rgba(77,142,255,0.22); box-shadow: var(--sh-hover); }
.why-card-num {
  font-size: 3rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 16px; opacity: 0.40;
}
.why-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--tx-1); }
.why-card p  { font-size: 15px; line-height: 1.75; color: var(--tx-3); }

/* ── APPROACH PAGE ───────────────────────────────────────── */
.phases-timeline {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 56px; position: relative;
}
.phases-timeline::before {
  content: ''; position: absolute; left: 28px; top: 0; bottom: 0;
  width: 1px; background: var(--bd-0);
}
.phase-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px; padding: 0 0 48px; position: relative;
}
.phase-item:last-child { padding-bottom: 0; }
.phase-dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: #fff;
  flex-shrink: 0; position: relative; z-index: 1;
  box-shadow: 0 2px 16px rgba(77,142,255,0.35);
}
.phase-content { padding-top: 12px; }
.phase-content h3 { font-size: 22px; margin-bottom: 12px; color: var(--tx-1); }
.phase-content > p { font-size: 16px; line-height: 1.75; margin-bottom: 24px; color: var(--tx-2); }
.phase-activities { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.phase-activity {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--tx-3); line-height: 1.5;
}
.phase-activity::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); margin-top: 7px; flex-shrink: 0;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.principle-card {
  background: var(--bg-1);
  border: 1px solid var(--bd-0);
  border-radius: var(--r-xl); padding: 32px;
  transition: all var(--t);
}
.principle-card:hover { transform: translateY(-4px); border-color: rgba(77,142,255,0.22); box-shadow: var(--sh-hover); }
.principle-num {
  font-size: 3rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 16px; opacity: 0.35;
}
.principle-card h4 { font-size: 16px; margin-bottom: 10px; color: var(--tx-1); }
.principle-card p  { font-size: 14px; line-height: 1.7; color: var(--tx-3); }

/* ── CAREERS PAGE ────────────────────────────────────────── */
.careers-hero-stats {
  display: flex; gap: 40px; margin-top: 32px; flex-wrap: wrap;
}
.ch-stat-num { font-size: 36px; font-weight: 800; color: var(--tx-1); line-height: 1; letter-spacing: -0.03em; }
.ch-stat-label { font-size: 13px; color: var(--tx-3); margin-top: 4px; }

.careers-search {
  display: flex; align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--bd-1);
  border-radius: var(--r-full);
  padding: 6px 6px 6px 20px;
  gap: 12px; max-width: 640px; margin-top: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.40);
  transition: border-color var(--t);
}
.careers-search:focus-within { border-color: rgba(77,142,255,0.40); box-shadow: 0 0 0 3px rgba(77,142,255,0.10), 0 4px 24px rgba(0,0,0,0.40); }
.careers-search input {
  flex: 1; border: none; outline: none;
  font-size: 15px; font-family: var(--font);
  color: var(--tx-1); background: transparent;
}
.careers-search input::placeholder { color: var(--tx-3); }
.careers-search-sep { width: 1px; height: 24px; background: var(--bd-0); flex-shrink: 0; }
.careers-search select {
  border: none; outline: none; font-size: 14px; font-family: var(--font);
  color: var(--tx-2); background: transparent; padding: 0 8px; cursor: pointer;
}
.careers-search-btn {
  background: var(--grad); color: #fff; border: none;
  padding: 11px 22px; border-radius: var(--r-full);
  font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: var(--font); white-space: nowrap;
  transition: all var(--t); box-shadow: 0 2px 12px rgba(77,142,255,0.30);
}
.careers-search-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(77,142,255,0.45); }

.careers-tracks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.track-card {
  background: var(--bg-1);
  border: 1px solid var(--bd-0);
  border-radius: var(--r-xl); padding: 32px;
  transition: all var(--t);
}
.track-card:hover { transform: translateY(-4px); border-color: rgba(77,142,255,0.22); box-shadow: var(--sh-hover); }
.track-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--accent);
}
.track-icon svg { width: 24px; height: 24px; }
.track-card h3 { font-size: 17px; margin-bottom: 10px; color: var(--tx-1); }
.track-card p  { font-size: 14px; line-height: 1.7; color: var(--tx-3); }

.hire-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.hire-stage {
  background: var(--bg-1);
  border: 1px solid var(--bd-0);
  border-radius: var(--r-xl); padding: 32px;
  position: relative; transition: all var(--t);
}
.hire-stage.featured {
  background: var(--bg-3);
  border-color: rgba(77,142,255,0.25);
  box-shadow: 0 0 0 1px rgba(77,142,255,0.12), var(--sh-card);
}
.hire-stage:hover { transform: translateY(-4px); box-shadow: var(--sh-hover); }
.hire-stage.featured:hover { border-color: rgba(77,142,255,0.40); }
.hire-stage-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px; display: block;
}
.hire-stage.featured .hire-stage-tag { color: var(--teal); }
.hire-stage h3 { font-size: 20px; margin-bottom: 12px; color: var(--tx-1); }
.hire-stage p  { font-size: 14px; line-height: 1.7; color: var(--tx-2); }

.life-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.life-img {
  border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3;
  border: 1px solid var(--bd-0);
}
.life-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75) saturate(0.55); }
.life-content h2 { margin-bottom: 16px; color: var(--tx-1); }
.life-content p  { font-size: 16px; line-height: 1.8; margin-bottom: 16px; color: var(--tx-2); }
.culture-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px;
}
.culture-stat {
  background: var(--bg-2);
  border: 1px solid var(--bd-0);
  border-radius: var(--r-lg); padding: 24px;
  transition: border-color var(--t);
}
.culture-stat:hover { border-color: rgba(77,142,255,0.20); }
.culture-stat-num {
  font-size: 32px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.culture-stat p { font-size: 13px; line-height: 1.5; color: var(--tx-3); }

.hire-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.hire-steps::before {
  content: ''; position: absolute;
  top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px);
  height: 1px; background: var(--bd-0);
}
.hire-step { text-align: center; padding: 0 24px; }
.hire-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: #fff;
  margin: 0 auto 20px; position: relative; z-index: 1;
  box-shadow: 0 2px 16px rgba(77,142,255,0.30);
}
.hire-step h4 { font-size: 16px; margin-bottom: 8px; color: var(--tx-1); }
.hire-step p  { font-size: 14px; line-height: 1.65; color: var(--tx-3); }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: start;
}
.contact-form {
  background: var(--bg-1);
  border: 1px solid var(--bd-0);
  border-radius: var(--r-xl); padding: 48px;
}
.contact-form h2 { font-size: 26px; margin-bottom: 32px; color: var(--tx-1); }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--tx-2); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--bd-0);
  border-radius: var(--r-md);
  font-size: 14px; font-family: var(--font);
  color: var(--tx-1); background: var(--bg-2);
  transition: border-color var(--t), box-shadow var(--t); outline: none;
}
.form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(77,142,255,0.12); }
.form-input::placeholder { color: var(--tx-3); }
textarea.form-input { resize: vertical; min-height: 120px; }
select.form-input { cursor: pointer; appearance: none; }
select.form-input option { background: var(--bg-2); color: var(--tx-1); }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--grad); color: #fff; border: none;
  border-radius: var(--r-full); font-size: 15px; font-weight: 600;
  font-family: var(--font); cursor: pointer;
  transition: all var(--t); margin-top: 8px;
  box-shadow: 0 2px 16px rgba(77,142,255,0.30);
}
.form-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 28px rgba(77,142,255,0.45); }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
.contact-info-card {
  background: var(--bg-1);
  border: 1px solid var(--bd-0);
  border-radius: var(--r-xl); padding: 32px;
}
.contact-info-card h3 { font-size: 18px; margin-bottom: 20px; color: var(--tx-1); }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--bd-0);
}
.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-icon {
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--tx-3); margin-bottom: 3px;
}
.contact-info-value { font-size: 14px; font-weight: 600; color: var(--tx-1); }
.contact-info-value a { color: var(--tx-1); transition: color var(--t); }
.contact-info-value a:hover { color: var(--accent); }

.next-steps-card {
  background: var(--bg-3);
  border: 1px solid rgba(77,142,255,0.18);
  border-radius: var(--r-xl); padding: 32px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.next-steps-card h3 { font-size: 17px; color: var(--tx-1); margin-bottom: 20px; }
.next-step {
  display: flex; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--bd-0);
}
.next-step:last-child { border-bottom: none; padding-bottom: 0; }
.next-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(77,142,255,0.18); border: 1px solid rgba(77,142,255,0.30);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--accent); flex-shrink: 0;
}
.next-step p { font-size: 14px; color: var(--tx-3); line-height: 1.55; }

/* ── INSIGHTS / BLOG ─────────────────────────────────────── */
.insights-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px;
}
.insight-card {
  background: var(--bg-1);
  border: 1px solid var(--bd-0);
  border-radius: var(--r-xl); overflow: hidden;
  transition: all var(--t); display: flex; flex-direction: column;
}
.insight-card:hover { transform: translateY(-4px); border-color: rgba(77,142,255,0.22); box-shadow: var(--sh-hover); }
.insight-card-img { aspect-ratio: 16/9; overflow: hidden; }
.insight-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75) saturate(0.55);
  transition: transform var(--t-lg), filter var(--t-lg);
}
.insight-card:hover .insight-card-img img { transform: scale(1.04); filter: brightness(0.85) saturate(0.7); }
.insight-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.insight-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.insight-cat { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; }
.insight-date { font-size: 12px; color: var(--tx-3); }
.insight-card-body h3 { font-size: 17px; line-height: 1.4; margin-bottom: 10px; color: var(--tx-1); }
.insight-card-body p  { font-size: 14px; line-height: 1.65; flex: 1; margin-bottom: 20px; color: var(--tx-3); }
.insight-link {
  font-size: 13px; font-weight: 600; color: var(--accent);
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap var(--t);
}
.insight-link:hover { gap: 9px; }
.insight-link svg { width: 13px; height: 13px; }

/* ── SERVICE DETAIL PAGE ─────────────────────────────────── */
.service-detail-layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start;
}
.service-detail-sidebar { position: sticky; top: 96px; }
.sidebar-nav-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--tx-3); margin-bottom: 12px;
}
.sidebar-nav a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; font-size: 14px; font-weight: 500; color: var(--tx-2);
  border-radius: var(--r-sm); border: 1px solid transparent;
  transition: all var(--t);
}
.sidebar-nav a:hover { background: var(--bg-2); color: var(--tx-1); border-color: var(--bd-0); }
.sidebar-nav a.active { background: var(--accent-dim); color: var(--accent); border-color: rgba(77,142,255,0.20); font-weight: 600; }
.sidebar-nav a svg { width: 14px; height: 14px; }
.service-detail-content h2 { margin-bottom: 16px; color: var(--tx-1); }
.service-detail-content p  { font-size: 16px; line-height: 1.8; margin-bottom: 20px; color: var(--tx-2); }
.service-bullets { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.service-bullet {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--tx-2); line-height: 1.6;
}
.service-bullet::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); margin-top: 9px; flex-shrink: 0;
}

/* ── INDUSTRY DETAIL ─────────────────────────────────────── */
.industry-hero-img { position: absolute; inset: 0; z-index: 0; }
.industry-hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.08; }
.industry-detail-layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start;
}

/* Generic card utility (used by sidebar) */
.card {
  background: var(--bg-1); border: 1px solid var(--bd-0);
  border-radius: var(--r-xl); padding: 28px;
  margin-bottom: 20px;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-story           { grid-template-columns: 1fr; gap: 40px; }
  .vm-grid               { grid-template-columns: 1fr; }
  .values-grid           { grid-template-columns: repeat(2, 1fr); }
  .founder-section       { grid-template-columns: 1fr; gap: 40px; }
  .founder-img-wrap      { max-width: 360px; }
  .team-grid             { grid-template-columns: repeat(2, 1fr); }
  .contact-layout        { grid-template-columns: 1fr; }
  .contact-sidebar       { order: -1; }
  .service-detail-layout { grid-template-columns: 1fr; }
  .industry-detail-layout{ grid-template-columns: 1fr; }
  .principles-grid       { grid-template-columns: repeat(2, 1fr); }
  .hire-steps            { grid-template-columns: repeat(2, 1fr); }
  .hire-steps::before    { display: none; }
  .hire-step             { padding: 0 16px; }
  .insights-grid         { grid-template-columns: repeat(2, 1fr); }
  .careers-tracks        { grid-template-columns: repeat(2, 1fr); }
  .hire-stages           { grid-template-columns: 1fr; }
  .life-layout           { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .values-grid           { grid-template-columns: 1fr; }
  .vm-grid               { grid-template-columns: 1fr; }
  .team-grid             { grid-template-columns: 1fr; }
  .form-row              { grid-template-columns: 1fr; }
  .contact-form          { padding: 28px; }
  .principles-grid       { grid-template-columns: 1fr; }
  .phase-activities      { grid-template-columns: 1fr; }
  .hire-steps            { grid-template-columns: 1fr; }
  .insights-grid         { grid-template-columns: 1fr; }
  .careers-tracks        { grid-template-columns: 1fr; }
  .culture-stats         { grid-template-columns: 1fr; }
  .why-grid              { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   LEGACY DESIGN SYSTEM — missing class definitions
   Used by approach.html, why-xunaris.html, leadership.html,
   partners.html, insights.html and career sub-pages.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Typography helpers ───────────────────────────────────────── */
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 800; line-height: 1.12;
  letter-spacing: -0.025em; color: var(--tx-1);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.body-text { font-size: 1.0625rem; line-height: 1.8; color: var(--tx-2); margin-bottom: 16px; }

/* ── Page hero aliases ────────────────────────────────────────── */
.page-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.03em; color: var(--tx-1); margin-bottom: 20px;
}
.page-hero-title em {
  font-style: italic;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.page-hero-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
/* .hero-desc is an alias for .page-hero-desc used on some pages */
.hero-desc {
  font-size: 1.0625rem; color: var(--tx-2); max-width: 580px; line-height: 1.75;
  margin-top: 16px;
}
/* .hero-about / .hero-service-detail are visual modifiers — no extra styles needed */
.hero-about, .hero-service-detail { }

/* ── Section wrappers ─────────────────────────────────────────── */
.inner-section { padding: var(--section-py) 0; }
.inner-section.bg-alt, .bg-alt { background: var(--bg-1); }

/* Eyebrow label — alias for .section-eyebrow */
.section-tag {
  display: block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.section-tag.center { text-align: center; }

/* GSAP placeholder — elements are visible by default without JS animation */
.gs-reveal { opacity: 1; transform: none; }

/* ── Approach page ────────────────────────────────────────────── */
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-img {
  width: 100%; border-radius: var(--r-xl);
  border: 1px solid var(--bd-0);
  filter: brightness(0.80) saturate(0.6);
}

.approach-steps {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 56px;
  border: 1px solid var(--bd-0); border-radius: var(--r-xl); overflow: hidden;
}
.approach-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 32px;
  padding: 40px; background: var(--bg-1);
  border-bottom: 1px solid var(--bd-0);
  transition: background var(--t);
}
.approach-step:last-child { border-bottom: none; }
.approach-step:hover { background: var(--bg-2); }
.approach-step-num {
  font-size: 2.5rem; font-weight: 800; line-height: 1.1;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; opacity: 0.35; padding-top: 4px;
}
.approach-step-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--accent-dim); border: 1px solid rgba(77,142,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 16px;
}
.approach-step-icon svg { width: 24px; height: 24px; }
.approach-step-body h3 { font-size: 20px; margin-bottom: 12px; color: var(--tx-1); }
.approach-step-body > p { font-size: 15px; line-height: 1.75; margin-bottom: 20px; color: var(--tx-2); }
.approach-list { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.approach-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--tx-3);
}
.approach-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}

/* value-card h3 variant (approach.html uses h3, about.html uses h4) */
.value-card h3 { font-size: 16px; margin-bottom: 10px; color: var(--tx-1); }
/* Gradient number used instead of icon in some pages */
.value-num {
  font-size: 2.5rem; font-weight: 800; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; letter-spacing: -0.04em; margin-bottom: 16px; opacity: 0.35;
}

/* ── Why Xunaris — differentiators grid ──────────────────────── */
.diff-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.diff-card {
  background: var(--bg-1); border: 1px solid var(--bd-0);
  border-radius: var(--r-xl); padding: 36px;
  transition: all var(--t);
}
.diff-card:hover { transform: translateY(-4px); border-color: rgba(77,142,255,0.22); box-shadow: var(--sh-hover); }
.diff-num {
  font-size: 2.5rem; font-weight: 800; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; letter-spacing: -0.04em; margin-bottom: 16px; opacity: 0.28;
}
.diff-card h3 { font-size: 17px; margin-bottom: 12px; color: var(--tx-1); }
.diff-card p  { font-size: 14px; line-height: 1.7; color: var(--tx-3); }

/* ── Proof / stats band ───────────────────────────────────────── */
.proof-band {
  padding: 56px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--bd-0);
  border-bottom: 1px solid var(--bd-0);
}
.proof-grid {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.proof-item {
  flex: 1; min-width: 160px;
  text-align: center; padding: 24px 32px;
}
.proof-num {
  font-size: 3rem; font-weight: 800; line-height: 1; letter-spacing: -0.04em;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 8px;
}
.proof-lbl { font-size: 13px; color: var(--tx-3); font-weight: 500; }
.proof-divider { width: 1px; height: 60px; background: var(--bd-0); flex-shrink: 0; }

/* ── Commitment / promise section ─────────────────────────────── */
.promise-layout {
  display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: start;
}
.promise-intro {
  font-size: 16px; line-height: 1.8; color: var(--tx-2); margin-bottom: 28px;
}
.promise-values { display: flex; flex-wrap: wrap; gap: 10px; }
.pv-chip {
  display: inline-flex; align-items: center;
  padding: 6px 16px; border-radius: var(--r-full);
  font-size: 13px; font-weight: 600;
  background: var(--bg-2); border: 1px solid var(--bd-1);
  color: var(--tx-2); transition: all var(--t);
}
.pv-chip.highlight {
  background: var(--accent-dim); border-color: rgba(77,142,255,0.25);
  color: var(--accent);
}
.promise-item {
  display: flex; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--bd-0);
}
.promise-item:last-child { border-bottom: none; }
.promise-num {
  font-size: 20px; font-weight: 700; color: var(--accent);
  flex-shrink: 0; padding-top: 2px; min-width: 28px;
}
.promise-body strong { display: block; font-size: 16px; color: var(--tx-1); margin-bottom: 8px; }
.promise-body p { font-size: 14px; line-height: 1.7; color: var(--tx-3); }

/* ── Leadership page — founder feature ───────────────────────── */
.founder-grid {
  display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start;
}
.founder-photo-wrap {
  border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 3/4;
  border: 1px solid var(--bd-0);
  position: relative;
}
.founder-photo {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.80) saturate(0.6);
}
.founder-exp-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: var(--bg-2); border: 1px solid var(--bd-1);
  border-radius: var(--r-lg); padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--sh-card);
}
.founder-exp-badge strong { font-size: 20px; font-weight: 800; color: var(--tx-1); }
.founder-exp-badge span { font-size: 13px; color: var(--tx-3); line-height: 1.4; }
.founder-body { font-size: 16px; line-height: 1.8; margin-bottom: 16px; color: var(--tx-2); }
.founder-sig {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--bd-0);
  display: flex; flex-direction: column; gap: 4px;
}
.founder-sig strong { font-size: 16px; color: var(--tx-1); }
.founder-sig span { font-size: 13px; color: var(--tx-3); }

/* ── Leadership page — team grid ─────────────────────────────── */
.leadership-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.leader-card {
  background: var(--bg-1); border: 1px solid var(--bd-0);
  border-radius: var(--r-xl); overflow: hidden;
  transition: all var(--t);
}
.leader-card:hover { transform: translateY(-4px); border-color: rgba(77,142,255,0.22); box-shadow: var(--sh-hover); }
.leader-photo-wrap { aspect-ratio: 1; overflow: hidden; }
.leader-photo {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.80) saturate(0.6);
  transition: transform var(--t-lg), filter var(--t-lg);
}
.leader-card:hover .leader-photo { transform: scale(1.04); filter: brightness(0.90) saturate(0.75); }
.leader-body { padding: 24px; }
.leader-name { font-size: 18px; font-weight: 700; color: var(--tx-1); margin-bottom: 4px; }
.leader-title { font-size: 13px; color: var(--accent); font-weight: 600; display: block; margin-bottom: 12px; }
.leader-bio { font-size: 14px; line-height: 1.65; color: var(--tx-3); margin-bottom: 16px; }
.leader-contact-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  transition: gap var(--t);
}
.leader-contact-link:hover { gap: 10px; }
.leader-contact-link svg { width: 13px; height: 13px; }

/* ── Leadership values grid ──────────────────────────────────── */
.engagement-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.engagement-card {
  background: var(--bg-1); border: 1px solid var(--bd-0);
  border-radius: var(--r-xl); padding: 36px;
  transition: all var(--t);
}
.engagement-card:hover { transform: translateY(-4px); border-color: rgba(77,142,255,0.22); box-shadow: var(--sh-hover); }
.engagement-card h3 { font-size: 18px; margin-bottom: 12px; color: var(--tx-1); }
.engagement-card p  { font-size: 14px; line-height: 1.7; color: var(--tx-3); }

/* ── CTA section ──────────────────────────────────────────────── */
.inner-cta {
  padding: var(--section-py) 0;
  background: var(--bg-1);
  border-top: 1px solid var(--bd-0);
}
.cta-inner {
  background: var(--bg-3);
  border: 1px solid rgba(77,142,255,0.18);
  border-radius: var(--r-2xl); padding: 72px 56px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), var(--sh-card);
}
.cta-inner::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 120% at 50% 110%, rgba(77,142,255,0.15) 0%, transparent 60%);
}
.cta-heading {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.2;
  color: var(--tx-1); letter-spacing: -0.03em; margin-bottom: 16px; position: relative;
}
.cta-heading em {
  font-style: italic;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-sub {
  font-size: 17px; line-height: 1.65; color: var(--tx-2);
  max-width: 560px; margin: 0 auto 36px; position: relative;
}
.cta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap; position: relative;
}

/* ── Button variants ──────────────────────────────────────────── */
.btn-orange {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r-full);
  font-size: 15px; font-weight: 700; font-family: var(--font);
  background: var(--orange); color: #fff;
  border: none; cursor: pointer;
  transition: all var(--t);
  box-shadow: 0 2px 16px rgba(251,146,60,0.30);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(251,146,60,0.45); }
.btn-orange svg { width: 16px; height: 16px; transition: transform var(--t); }
.btn-orange:hover svg { transform: translateX(3px); }

.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r-full);
  font-size: 15px; font-weight: 600; font-family: var(--font);
  background: transparent; color: rgba(235,240,255,0.70);
  border: 1.5px solid rgba(255,255,255,0.15);
  cursor: pointer; transition: all var(--t);
}
.btn-ghost-light:hover {
  border-color: rgba(255,255,255,0.35);
  color: var(--tx-1); background: rgba(255,255,255,0.05);
}

.btn-lg { padding: 15px 36px; font-size: 16px; }

/* ── Responsive — legacy pages ────────────────────────────────── */
@media (max-width: 1024px) {
  .diff-grid        { grid-template-columns: repeat(2, 1fr); }
  .promise-layout   { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-grid     { grid-template-columns: 1fr; gap: 40px; }
  .founder-photo-wrap { max-width: 400px; aspect-ratio: auto; height: 420px; }
  .leadership-grid  { grid-template-columns: repeat(2, 1fr); }
  .engagement-grid  { grid-template-columns: repeat(2, 1fr); }
  .approach-step    { grid-template-columns: 60px 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .diff-grid        { grid-template-columns: 1fr; }
  .approach-step    { grid-template-columns: 1fr; gap: 12px; padding: 28px; }
  .approach-step-num { font-size: 1.8rem; }
  .proof-grid       { flex-direction: column; }
  .proof-divider    { width: 60px; height: 1px; }
  .promise-layout   { grid-template-columns: 1fr; }
  .cta-inner        { padding: 48px 28px; }
  .leadership-grid  { grid-template-columns: 1fr; }
  .engagement-grid  { grid-template-columns: 1fr; }
  .founder-grid     { grid-template-columns: 1fr; }
}
