/* ═══════════════════════════════════════════════════════
   SOBRE — minimal, narrative, focused on team
═══════════════════════════════════════════════════════════ */

/* ═══ HERO ═══ */
.sb-hero{
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative; overflow: hidden;
}
.sb-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
}
.sb-hero-left{
  display: flex;
  flex-direction: column;
}
.sb-hero-right{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 4px;
}
.sb-tag{
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 9px; font-weight: 600; letter-spacing: 5px;
  text-transform: uppercase; color: rgba(255,255,255,.52);
  margin-bottom: 32px;
}
.sb-tag::before{
  content:''; width: 5px; height: 5px; border-radius: 50%;
  background: linear-gradient(135deg,#1e9bff,#ff6010);
}
.sb-h1{
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 8vw, 120px);
  line-height: .92;
  letter-spacing: -3px;
  color: #fff;
  margin: 0;
}
.sb-h1 em{
  font-style: normal;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  letter-spacing: -1px;
  background: linear-gradient(100deg,#ff6010,#1e9bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sb-intro{
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
  max-width: 38ch;
  margin: 0;
}
.sb-intro strong{ color: #fff; font-weight: 500; }

/* Location pill below h1 */
.sb-loc{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 10px 16px 10px 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  background: rgba(255,255,255,.018);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .5px;
  color: rgba(255,255,255,.65);
  width: fit-content;
}
.sb-loc-dot{
  position: relative;
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg,#1e9bff,#ff6010);
  flex-shrink: 0;
}
.sb-loc-dot::before{
  content:'';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(255,96,16,.35);
  animation: sb-loc-pulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes sb-loc-pulse{
  0%   { transform: scale(.6); opacity: .8; }
  100% { transform: scale(2.2); opacity: 0; }
}
.sb-loc-sep{
  color: rgba(255,255,255,.55);
  margin: 0 2px;
}

/* ═══ DIFFERENTIATION ═══ */
.sb-diff{
  padding: 140px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sb-diff-header{
  max-width: var(--max);
  margin: 0 auto 80px;
  padding: 0 var(--pad);
}
.sb-diff-eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 9px; font-weight: 600; letter-spacing: 5px;
  text-transform: uppercase; color: rgba(255,255,255,.52);
  margin-bottom: 28px;
}
.sb-diff-eyebrow::before{
  content:''; width: 16px; height: 1px; background: rgba(255,255,255,.25);
}
.sb-diff-h2{
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -2px;
  color: #fff;
  margin: 0 0 24px;
  max-width: 18ch;
}
.sb-diff-h2 em{
  font-style: normal;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  background: linear-gradient(100deg,#ff6010,#1e9bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sb-diff-desc{
  font-size: 14px; font-weight: 300; line-height: 1.65;
  color: rgba(255,255,255,.46);
  max-width: 50ch;
  margin: 0;
}

/* Opposing cards layout */
.sb-diff-rows{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sb-diff-row{
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: stretch;
}
.sb-diff-card{
  position: relative;
  padding: 32px 36px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.012);
  border-radius: 4px;
  display: flex;
  align-items: center;
  min-height: 96px;
  transition: border-color .25s, background .25s;
}
.sb-diff-card--them{
  border-style: dashed;
  border-color: rgba(255,255,255,.08);
  background: transparent;
  color: rgba(255,255,255,.4);
}
.sb-diff-card--them::before{
  content: '×';
  position: absolute;
  top: 14px; left: 14px;
  font-size: 12px; font-weight: 700;
  color: rgba(255,75,75,.45);
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,75,75,.25);
  border-radius: 50%;
  line-height: 1;
}
.sb-diff-card--us{
  border-color: rgba(30,155,255,.18);
  background: linear-gradient(135deg, rgba(30,155,255,.04), rgba(255,96,16,.02));
  color: #fff;
}
.sb-diff-card--us::before{
  content: '';
  position: absolute;
  top: 18px; left: 18px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e9bff, #ff6010);
  box-shadow: 0 0 10px rgba(255,96,16,.5);
}
.sb-diff-card-text{
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -.2px;
  margin: 0;
  padding-left: 32px;
}
.sb-diff-card--them .sb-diff-card-text{
  font-weight: 400;
}
.sb-diff-card--us .sb-diff-card-text{
  font-weight: 500;
  color: #fff;
}

/* Connector / vs marker */
.sb-diff-vs{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sb-diff-vs::before{
  content:'';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255,255,255,.06);
}
.sb-diff-vs span{
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,.3);
  background: #06060a;
  padding: 4px 10px;
  position: relative;
  z-index: 2;
}

/* Header labels above cards (only on first row) */
.sb-diff-labels{
  max-width: var(--max);
  margin: 0 auto 20px;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
}
.sb-diff-label{
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.sb-diff-label--them{
  color: rgba(255,255,255,.3);
}
.sb-diff-label--them::before{
  content:''; width: 14px; height: 1px;
  background: rgba(255,75,75,.4);
}
.sb-diff-label--us{
  color: #fff;
  justify-self: end;
}
.sb-diff-label--us::before{
  content:''; width: 5px; height: 5px; border-radius: 50%;
  background: linear-gradient(135deg,#1e9bff,#ff6010);
  box-shadow: 0 0 8px rgba(255,96,16,.5);
}

/* ═══ GUARANTEES (E SE?) ═══ */
.sb-gu{
  padding: 140px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sb-gu-header{
  max-width: var(--max);
  margin: 0 auto 80px;
  padding: 0 var(--pad);
}
.sb-gu-eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 9px; font-weight: 600; letter-spacing: 5px;
  text-transform: uppercase; color: rgba(255,255,255,.52);
  margin-bottom: 28px;
}
.sb-gu-eyebrow::before{
  content:''; width: 16px; height: 1px;
  background: rgba(255,255,255,.25);
}
.sb-gu-h2{
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -2px;
  color: #fff;
  margin: 0 0 24px;
  max-width: 18ch;
}
.sb-gu-h2 em{
  font-style: normal;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  background: linear-gradient(100deg,#ff6010,#1e9bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sb-gu-desc{
  font-size: 14px; font-weight: 300; line-height: 1.65;
  color: rgba(255,255,255,.46);
  max-width: 50ch;
  margin: 0;
}

.sb-gu-grid{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

.sb-gu-card{
  position: relative;
  padding: 40px 36px 36px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 4px;
  background: rgba(255,255,255,.012);
  transition: border-color .3s, background .3s, transform .35s cubic-bezier(.16,1,.3,1);
  display: flex;
  flex-direction: column;
}
.sb-gu-card:hover{
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.025);
  transform: translateY(-3px);
}

/* Big metric */
.sb-gu-stat{
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: clamp(56px, 6vw, 88px);
  letter-spacing: -3px;
  line-height: 1;
  color: #fff;
  display: block;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.sb-gu-stat em{
  font-style: normal;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: .65em;
  letter-spacing: -1px;
  background: linear-gradient(100deg,#ff6010,#1e9bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 2px;
}
.sb-gu-label{
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  display: block;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sb-gu-q{
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.3;
  letter-spacing: -.3px;
  color: rgba(255,255,255,.85);
  margin: 0 0 14px;
}
.sb-gu-a{
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
  margin: 0;
}
.sb-team{
  padding: 140px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sb-team-header{
  max-width: var(--max);
  margin: 0 auto 80px;
}
.sb-team-eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 9px; font-weight: 600; letter-spacing: 5px;
  text-transform: uppercase; color: rgba(255,255,255,.52);
  margin-bottom: 28px;
}
.sb-team-eyebrow::before{
  content:''; width: 16px; height: 1px; background: rgba(255,255,255,.25);
}
.sb-team-h2{
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -2px;
  color: #fff;
  margin: 0 0 24px;
  max-width: 18ch;
}
.sb-team-h2 em{
  font-style: normal;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  background: linear-gradient(100deg,#ff6010,#1e9bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sb-team-sub{
  font-size: 14px; font-weight: 300; line-height: 1.65;
  color: rgba(255,255,255,.46);
  max-width: 50ch;
}

.sb-team-grid{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.sb-mb{
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sb-mb-photo{
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(180deg,#131319 0%,#0a0a0e 100%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 4px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.sb-mb-photo::after{
  content:'';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.4) 0%, transparent 50%);
  pointer-events: none;
}
.sb-mb-init{
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 96px;
  letter-spacing: -3px;
  color: rgba(255,255,255,.12);
  line-height: 1;
}
.sb-mb-hint{
  position: absolute;
  bottom: 14px; left: 14px;
  font-size: 8px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  z-index: 2;
}
.sb-mb-num{
  position: absolute;
  top: 14px; left: 14px;
  font-size: 9px; font-weight: 700; letter-spacing: 4px;
  color: rgba(255,255,255,.52);
  z-index: 2;
}
.sb-mb-img{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.sb-mb-name{
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -1.2px;
  color: #fff;
  margin: 0 0 10px;
}
.sb-mb-role{
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .3px;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
  display: block;
}
.sb-mb-bio{
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin: 0 0 24px;
  max-width: 42ch;
}
.sb-mb-list{
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sb-mb-list li{
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .2px;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sb-mb-list li::before{
  content:''; width: 6px; height: 1px;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}

/* ═══ CTA ═══ */
.sb-cta{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.sb-cta-h2{
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -2px;
  color: #fff;
  margin: 0;
  max-width: 18ch;
}
.sb-cta-h2 em{
  font-style: normal;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  background: linear-gradient(100deg,#ff6010,#1e9bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sb-cta-sub{
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,.46);
  max-width: 44ch;
  margin: 0;
}
.sb-cta-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.2);
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: all .25s;
  margin-top: 12px;
}
.sb-cta-btn:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.45);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px){
  .sb-hero-inner{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sb-diff-row{
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .sb-diff-vs{
    min-height: 32px;
  }
  .sb-diff-vs::before{
    left: 50%; right: 50%;
    top: 0; bottom: 0;
    width: 1px; height: 100%;
  }
  .sb-diff-labels{
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .sb-diff-label--us{
    justify-self: start;
  }
  .sb-gu-grid{ grid-template-columns: 1fr; }
  .sb-team-grid{ grid-template-columns: 1fr; gap: 64px; }
}
@media (max-width: 600px){
  .sb-hero{ padding-top: calc(var(--nav-h) + 56px); padding-bottom: 64px; }
  .sb-diff, .sb-team, .sb-gu{ padding: 80px 0; }
  .sb-diff-header, .sb-team-header, .sb-gu-header{ margin-bottom: 48px; }
  .sb-diff-card{ padding: 28px 24px; min-height: 80px; }
  .sb-diff-card-text{ padding-left: 28px; font-size: 14px; }
  .sb-gu-card{ padding: 32px 24px; }
}
