body {
  background: #f7f8fc;
  color: #0c0e1a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
:root {
  --blue: #0052ff;
  --blue-2: #2563eb;
  --blue-glow: rgba(0, 82, 255, 0.18);
  --night: #060812;
  --night-2: #0d1020;
  --night-3: #141728;
  --ice: #f7f8fc;
  --ice-2: #eef1f8;
  --white: #ffffff;
  --text: #0c0e1a;
  --border-dark: rgba(255, 255, 255, 0.07);
  --border-light: rgba(0, 0, 0, 0.07);
  --r: 16px;
  --r2: 24px;
  --r3: 32px;
}

/* =====================
   HERO — LIGHT
   ===================== */
#hero {
  min-height: auto;
  background: var(--white);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 max(2rem, calc(50vw - 680px));
}
.h-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.h-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 82, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black, transparent);
  pointer-events: none;
}
.h-blob {
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.07) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: bpulse 8s ease-in-out infinite;
}
@keyframes bpulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -52%) scale(1.07);
  }
}
.hero-in {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 82, 255, 0.07);
  border: 1px solid rgba(0, 82, 255, 0.15);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  animation: fu 0.7s both;
}
.hero-eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--blue);
  animation: d 2s infinite;
}
@keyframes d {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero-h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 1.75rem;
  animation: fu 0.7s 0.1s both;
}
.hero-h1 .blue {
  color: var(--blue);
}
.hero-h1 .thin {
  font-weight: 300;
  font-style: italic;
  color: rgba(12, 14, 26, 0.35);
}
.hero-p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(12, 14, 26, 0.45);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fu 0.7s 0.2s both;
}
.hero-p strong {
  color: var(--text);
  font-weight: 600;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fu 0.7s 0.3s both;
}
.btn-h1 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 8px 40px var(--blue-glow);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-h1:hover {
  background: #1a6bff;
  transform: translateY(-2px);
  box-shadow: 0 12px 50px rgba(0, 82, 255, 0.5);
}
.btn-h2 {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(12, 14, 26, 0.45);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-h2:hover {
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.25);
}
/* floating cards */
.hcards {
  position: relative;
  height: 480px;
  animation: fu 0.7s 0.4s both;
}
.hc {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r2);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.1);
}
.hc-main {
  width: 340px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.hc-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.hc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.25rem;
}
.hc-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text);
  line-height: 1;
}
.hc-num span {
  color: var(--blue);
}
.hc-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}
.hc-spark {
  width: 100%;
  height: 56px;
}
.hc-spark svg {
  width: 100%;
  height: 100%;
}
.hc-meta {
  margin-top: 1rem;
  display: flex;
  gap: 1.5rem;
}
.hcm-l {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hcm-v {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 0.2rem;
}
.hc-top {
  width: 200px;
  top: 20px;
  right: -20px;
  z-index: 2;
  padding: 1.1rem 1.25rem;
  transform: rotate(3deg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.hc-top .hc-num {
  font-size: 1.8rem;
}
.hc-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: rgba(12, 14, 26, 0.35);
  margin-top: 0.35rem;
}
.dg {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 6px #22c55e;
}
.hc-bot {
  width: 220px;
  bottom: 30px;
  left: -10px;
  z-index: 2;
  padding: 1.1rem 1.25rem;
  transform: rotate(-2.5deg);
  background: rgba(0, 82, 255, 0.06);
  border: 1px solid rgba(0, 82, 255, 0.15);
}
.hc-bot .hc-lbl {
  color: rgba(12, 14, 26, 0.4);
}
.hc-bot .hc-num {
  font-size: 1.8rem;
}
@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* COMMON */
.sw {
  padding: 120px max(2rem, calc(50vw - 680px));
}
.inn {
  max-width: 1360px;
  margin: 0 auto;
}
.lbl {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
  display: inline-block;
}
.lbl-dk {
  color: rgba(0, 130, 255, 0.9);
}
.h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--text);
}
.h2w {
  color: #fff;
}
.h2 .blue,
.h2w .blue {
  color: var(--blue);
}
.h2 .thin {
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
}
.h2w .thin {
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
}
.lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5a6480;
  font-weight: 300;
  max-width: 600px;
  margin-top: 1rem;
}
.lead-dk {
  color: rgba(255, 255, 255, 0.4);
}
.lead strong {
  color: var(--text);
  font-weight: 600;
}
.rv {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.rv.in {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.d4 {
  transition-delay: 0.32s;
}

/* BRANDS */
#brands {
  background: var(--ice-2);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.75rem max(2rem, calc(50vw - 680px));
}
.brands-in {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.blbl {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.btrack {
  display: flex;
  gap: 2.5rem;
  flex: 1;
  overflow: hidden;
  flex-wrap: wrap;
}
.bpill {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(12, 14, 26, 0.2);
  transition: color 0.2s;
  cursor: default;
}
.bpill:hover {
  color: rgba(12, 14, 26, 0.55);
}

/* =====================
   ABOUT — DARK
   ===================== */
#about {
  background: var(--night);
}
#about .ag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
#about .at .divider {
  width: 40px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin: 1.75rem 0;
}
#about .at .paras {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
#about .at .paras p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}
#about .at .paras p strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}
#about .aproof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
#about .pchip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
}
#about .pn {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
#about .pn span {
  color: var(--blue);
}
#about .pl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
  margin-top: 0.25rem;
}
/* visual dark */
#about .av {
  position: relative;
}
#about .avm {
  background: var(--night-3);
  border-radius: var(--r3);
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--border-dark);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.4);
}
#about .avt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
#about .avdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
#about .avtlbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  margin-left: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
#about .avca {
  position: relative;
  height: 160px;
  margin-bottom: 1.5rem;
}
#about .avca svg {
  width: 100%;
  height: 100%;
}
#about .avrow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
#about .avm2 {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 0.875rem 1rem;
}
#about .avm2 .l {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
#about .avm2 .v {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-top: 0.2rem;
}
#about .avm2 .v span {
  color: var(--blue);
}
#about .avf {
  position: absolute;
  right: -24px;
  top: -24px;
  background: var(--night-2);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-dark);
  width: 180px;
}
#about .avf .fl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.35rem;
}
#about .avf .fv {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}
#about .avf .fv span {
  color: var(--blue);
}
#about .avf .fs {
  font-size: 0.72rem;
  color: #22c55e;
  font-weight: 600;
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* =====================
   BEFORE/AFTER — LIGHT
   ===================== */
#ba {
  background: var(--white);
}
.ba-hd {
  text-align: center;
  margin-bottom: 4rem;
}
.ba-hd .lead {
  margin: 0 auto;
  margin-top: 1rem;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.bac {
  border-radius: var(--r2);
  padding: 2.5rem;
  border: 1px solid transparent;
}
.ba-bef {
  background: var(--ice);
  border-color: var(--border-light);
}
.ba-aft {
  background: var(--blue);
  box-shadow: 0 20px 80px rgba(0, 82, 255, 0.3);
}
.ba-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
}
.bt-b {
  color: rgba(12, 14, 26, 0.4);
  background: rgba(12, 14, 26, 0.06);
}
.bt-a {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}
.bac h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.ba-bef h3 {
  color: var(--text);
}
.ba-aft h3 {
  color: #fff;
}
.blist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.blist li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.925rem;
  line-height: 1.6;
  font-weight: 300;
}
.ba-bef .blist li {
  color: #5a6480;
}
.ba-aft .blist li {
  color: rgba(255, 255, 255, 0.75);
}
.bico {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}
.ba-bef .bico {
  background: rgba(239, 68, 68, 0.1);
}
.ba-aft .bico {
  background: rgba(255, 255, 255, 0.15);
}
.ba-bef .bico svg {
  width: 10px;
  color: #ef4444;
}
.ba-aft .bico svg {
  width: 10px;
  color: #fff;
}

/* =====================
   BENTO — DARK
   ===================== */
#values {
  background: var(--night);
}
#values .bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
/* dark bento base card */
#values .bc {
  background: var(--night-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--r2);
  padding: 2rem 2.25rem;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
#values .bc:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.3);
}
#values .bc-dk {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}
#values .bc-bl {
  background: var(--blue);
  border-color: transparent;
  box-shadow: 0 12px 60px var(--blue-glow);
}

.bc1 {
  grid-column: 1/7;
}
.bc2 {
  grid-column: 7/10;
}
.bc3 {
  grid-column: 10/13;
}
.bc4 {
  grid-column: 1/5;
}
.bc5 {
  grid-column: 5/13;
}
.bico2 {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
#values .bc .bico2 {
  background: rgba(0, 82, 255, 0.18);
  color: rgba(100, 160, 255, 0.9);
}
#values .bc-dk .bico2 {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.6);
}
#values .bc-bl .bico2 {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.bico2 svg {
  width: 20px;
  height: 20px;
}
.btit {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.6rem;
}
.bbdy {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}
#values .bc-bl .bbdy {
  color: rgba(255, 255, 255, 0.7);
}
.bnum {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-top: 1.5rem;
}
#values .bc .bnum {
  color: rgba(100, 160, 255, 0.9);
}
.bns {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 0.2rem;
  font-weight: 400;
}
.bc-li {
  display: flex;
  gap: 2.5rem;
  height: 100%;
  align-items: center;
}
.bc-lt {
  flex: 1;
}

/* =====================
   STATS — LIGHT
   ===================== */
#stats {
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding: 120px max(2rem, calc(50vw - 680px));
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.sg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 82, 255, 0.04), transparent);
  pointer-events: none;
}
.sl {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 82, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 80px;
  pointer-events: none;
}
.si {
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.sh {
  text-align: center;
  margin-bottom: 4rem;
}
.sh p {
  font-size: 1rem;
  color: rgba(12, 14, 26, 0.4);
  font-weight: 300;
  margin-top: 0.75rem;
}
.srow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-light);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.05);
}
.sit {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border-light);
  transition: background 0.3s;
}
.sit:last-child {
  border-right: none;
}
.sit:hover {
  background: rgba(0, 82, 255, 0.03);
}
.snum {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.snum .suf {
  color: var(--blue);
}
.slbl {
  font-size: 0.875rem;
  color: rgba(12, 14, 26, 0.4);
  font-weight: 400;
  line-height: 1.5;
}
.sdsc {
  font-size: 0.72rem;
  color: rgba(12, 14, 26, 0.2);
  margin-top: 0.3rem;
  font-weight: 300;
}

/* =====================
   PROCESS — DARK
   ===================== */
#process {
  background: var(--night-2);
}
#process .ph {
  text-align: center;
  margin-bottom: 4rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 1px;
  background: linear-gradient(90deg, var(--blue), rgba(0, 82, 255, 0.1));
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.sn {
  width: 56px;
  height: 56px;
  background: var(--night);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}
.step:hover .sn {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 4px 24px var(--blue-glow);
}
.step h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

/* =====================
   CTA — LIGHT
   ===================== */
#cta {
  background: var(--ice);
  padding: 140px max(2rem, calc(50vw - 680px));
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border-light);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 60%, rgba(0, 82, 255, 0.06), transparent);
  pointer-events: none;
}
.cta-in {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.cta-in .h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.25rem;
}
.cta-in p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(12, 14, 26, 0.45);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-c1 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 0 60px rgba(0, 82, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-c1:hover {
  background: #1a6bff;
  transform: translateY(-2px);
  box-shadow: 0 8px 70px rgba(0, 82, 255, 0.5);
}
.btn-c2 {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(12, 14, 26, 0.45);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 1rem 2rem;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-c2:hover {
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.25);
}
.trust {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.ti {
  font-size: 0.78rem;
  color: rgba(12, 14, 26, 0.35);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.ti svg {
  width: 13px;
  color: var(--blue);
}

/* RESPONSIVE */
@media (max-width: 901px) {
  .hero-in {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 20px 0 40px;
  }
  .hcards {
    display: none;
  }
  #about .ag {
    display: block;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #about .avf {
    display: none;
  }
  .ba-grid {
    grid-template-columns: 1fr;
  }
  #values .bento {
    grid-template-columns: 1fr 1fr;
  }
  .bc1,
  .bc2,
  .bc3,
  .bc4,
  .bc5 {
    grid-column: span 1;
  }
  .bc1,
  .bc5 {
    grid-column: 1/-1;
  }
  .srow {
    grid-template-columns: 1fr 1fr;
  }
  .sit {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }
  .sit:nth-child(odd) {
    border-right: 1px solid var(--border-light);
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .steps::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .steps {
    display: flex;
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.2rem;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--blue) rgba(0, 0, 0, 0.05);
  }

  .step {
    scroll-snap-align: center;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .steps::before {
    display: none;
  }

  .steps::-webkit-scrollbar {
    display: block;
    height: 4px;
  }

  .steps::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
  }

  .steps::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 10px;
  }
}
@media (max-width: 640px) {
  .sw {
    padding: 80px 1.5rem;
  }
  #values .bento {
    grid-template-columns: 1fr;
  }
  .bc1,
  .bc2,
  .bc3,
  .bc4,
  .bc5 {
    grid-column: 1/-1;
  }
  .srow {
    grid-template-columns: 1fr;
  }
  .sit {
    border-right: none !important;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  #about .aproof {
    grid-template-columns: 1fr 1fr;
  }
  .bc {
    display: flex;
    flex-direction: column;
  }
  .bc-li {
    flex-direction: column;
  }
}
