*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #fff;
  --bg2: #f7f8fa;
  --bg3: #f0f2f5;
  --text: #0b1d2e;
  --text2: #3d4f5f;
  --text3: #5a6b7a;
  --accent: #5046e5;
  --accent2: #6c63ff;
  --accent-w: rgba(80, 70, 229, 0.06);
  --green: #047857;
  --green-w: rgba(5, 150, 105, 0.06);
  --border: #e2e5ea;
  --border2: #edf0f3;
  --r: 16px;
  --r2: 24px;
  --r3: 32px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}
.skip {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip:focus {
  top: 0;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-thumb {
  background: #cdd3da;
  border-radius: 3px;
}

/* ── AMBIENT ── */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.ambient .a {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  animation: drift 28s ease-in-out infinite;
}
.ambient .a1 {
  width: 600px;
  height: 600px;
  background: rgba(80, 70, 229, 0.07);
  top: -12%;
  right: -8%;
}
.ambient .a2 {
  width: 480px;
  height: 480px;
  background: rgba(5, 150, 105, 0.04);
  bottom: 8%;
  left: -6%;
  animation-delay: -10s;
}
.ambient .a3 {
  width: 380px;
  height: 380px;
  background: rgba(80, 70, 229, 0.04);
  top: 50%;
  left: 30%;
  animation-delay: -18s;
}
@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(40px, -30px);
  }
  66% {
    transform: translate(-25px, 35px);
  }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 64px;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}
.n-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.n-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.n-logo span {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}
.n-links {
  display: flex;
  gap: 2rem;
}
.n-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text2);
  transition: color 0.2s;
}
.n-links a:hover {
  color: var(--text);
}
.n-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.n-login {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text2);
}
.n-cta {
  background: var(--text);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.15rem;
  border-radius: 8px;
  transition: all 0.25s;
}
.n-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  z-index: 1;
  overflow: hidden;
}
.hero-eagle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, 75vw);
  opacity: 0.05;
  pointer-events: none;
  animation: heroB 9s ease-in-out infinite;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
@keyframes heroB {
  0%,
  100% {
    transform: translate(-50%, -46%) scale(1);
  }
  50% {
    transform: translate(-50%, -48%) scale(1.015);
  }
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--accent-w);
  border: 1px solid rgba(80, 70, 229, 0.12);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  animation: fu 0.6s ease both;
}
.hero-tag .pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pp 2.5s ease infinite;
}
@keyframes pp {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--text);
  margin-bottom: 1.5rem;
  animation: fu 0.6s ease 0.08s both;
}
.hero h1 em,
.highlight {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), #33af8c, var(--accent));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: flow 4s linear infinite;
}
@keyframes flow {
  0% {
    background-position: 300% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text2);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fu 0.6s ease 0.16s both;
}
.hero-btns {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fu 0.6s ease 0.24s both;
}
.btn-p {
  background: var(--text);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 1.8rem;
  border-radius: 10px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 29, 46, 0.2);
}
.btn-s {
  background: #fff;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 1.8rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-s:hover {
  border-color: #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Hero metrics */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fu 0.6s ease 0.32s both;
}
.h-stat {
  text-align: center;
}
.h-stat .n {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.h-stat .l {
  font-size: 0.68rem;
  color: var(--text3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 0.15rem;
}

/* ── TRUST STRIP ── */
.trust-strip {
  position: relative;
  z-index: 1;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}
.trust-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.trust-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.trust-logos {
  display: flex;
  justify-content: center;
  gap: 7.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.trust-logos span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text3);
  opacity: 0.45;
  transition: opacity 0.3s;
}
.trust-logos span:hover {
  opacity: 0.7;
}

/* ── SECTIONS ── */
.sec {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
  overflow: hidden;
}
.sec-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sec-alt {
  background: var(--bg2);
}
.ey {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.6rem;
}
.st {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 0.65rem;
}
.ss {
  font-size: 1rem;
  color: var(--text2);
  max-width: 480px;
  line-height: 1.7;
}

/* ── TENSION (PROBLEMS) ── */
.tension-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2.5rem;
}
.pain-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.pain {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.35rem;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.pain:hover {
  border-color: rgba(80, 70, 229, 0.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}
.pain::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.pain:hover::after {
  transform: scaleX(1);
}
.pain-n {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.pain h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.pain p {
  font-size: 0.8rem;
  color: var(--text2);
  line-height: 1.55;
}
.tension-eagle {
  position: relative;
}
.tension-eagle img {
  width: 100%;
  animation: tBreath 6s ease-in-out infinite;
}
@keyframes tBreath {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(-0.8deg);
  }
}

/* ══════════════════════════════════════
   BENTO GRID — THE CENTERPIECE
   ══════════════════════════════════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  margin-top: 3rem;
}

/* Individual bento cards */
.b-card {
  border-radius: var(--r2);
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid var(--border2);
}
.b-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

/* Gradients per card */
.b-card.g1 {
  background: linear-gradient(160deg, #f8f7ff 0%, #fff 40%, #f0fff8 100%);
}
.b-card.g2 {
  background: linear-gradient(160deg, #f0f8ff 0%, #fff 50%, #f7f7ff 100%);
}
.b-card.g3 {
  background: linear-gradient(160deg, #f5fff8 0%, #fff 50%, #f8f7ff 100%);
}
.b-card.g4 {
  background: linear-gradient(160deg, #fff8f0 0%, #fff 50%, #f0f8ff 100%);
}
.b-card.g5 {
  background: linear-gradient(160deg, #f7f7ff 0%, #fff 40%, #f0fff4 100%);
}

/* Sizing */
.b-wide {
  grid-column: span 7;
}
.b-narrow {
  grid-column: span 5;
}
.b-third {
  grid-column: span 4;
}

.b-card-inner {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 340px;
  position: relative;
  z-index: 1;
}
.b-card .b-ey {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.b-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 0.6rem;
}
.b-card p {
  font-size: 0.875rem;
  color: var(--text2);
  line-height: 1.65;
  max-width: 380px;
}
.b-metric {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1.25rem;
}
.b-metric .mv {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.b-metric .ml {
  font-size: 0.72rem;
  color: var(--text3);
  font-weight: 500;
}
.b-img {
  position: absolute;
  z-index: 0;
}
/* Per-card image positioning */
.b-img.pos-br {
  bottom: -10px;
  right: -10px;
  width: 55%;
  max-width: 280px;
}
.b-img.pos-r {
  top: 74%;
  right: 1rem;
  transform: translateY(-50%);
  width: 45%;
  max-width: 260px;
}
.b-img.pos-br2 {
  bottom: 0;
  right: 0;
  width: 50%;
  max-width: 240px;
}
.b-img.pos-bl {
  bottom: -5px;
  left: -5px;
  width: 50%;
  max-width: 250px;
}
.b-img.pos-cr {
  bottom: 1rem;
  right: 1.5rem;
  width: 48%;
  max-width: 240px;
}

/* Eagle float animations per card */
.e-a1 img {
  animation: eA1 5s ease-in-out infinite;
}
@keyframes eA1 {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-7px) rotate(-1.5deg);
  }
}
.e-a2 img {
  animation: eA2 4.5s ease-in-out infinite;
}
@keyframes eA2 {
  0%,
  100% {
    transform: scale(1) translateX(0);
  }
  50% {
    transform: scale(1.015) translateX(3px);
  }
}
.e-a3 img {
  animation: eA3 5.5s ease-in-out infinite;
}
@keyframes eA3 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.e-a4 img {
  animation: eA4 6s ease-in-out infinite;
}
@keyframes eA4 {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
.e-a5 img {
  animation: eA5 3.5s ease-in-out infinite;
}
@keyframes eA5 {
  0%,
  100% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(0.8deg);
  }
  75% {
    transform: rotate(-0.8deg);
  }
}

/* ── HOW IT WORKS ── */
.how-strip {
  max-width: 640px;
  margin: 2.5rem auto;
  text-align: center;
}
.how-strip img {
  width: 100%;
  border-radius: var(--r2);
  animation: stripF 7s ease-in-out infinite;
}
@keyframes stripF {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.how-grid::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.hw {
  text-align: center;
  position: relative;
}
.hw-n {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.15rem;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text);
  transition: all 0.35s;
  position: relative;
  z-index: 2;
}
.hw:hover .hw-n {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-w);
  transform: scale(1.06);
}
.hw h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.hw p {
  font-size: 0.78rem;
  color: var(--text2);
  line-height: 1.55;
}

/* ── ETHICS ── */
.ethics-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: center;
  margin-top: 2.5rem;
}
.ethics-body p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}
.ethics-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.ep {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.ep:hover {
  border-color: rgba(80, 70, 229, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}
.ep-i {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--accent-w);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ep-i svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
}
.ep-t strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 0.1rem;
}
.ep-t span {
  font-size: 0.7rem;
  color: var(--text2);
  line-height: 1.45;
}
.ethics-vis {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ethics-vis img {
  width: 100%;
  max-width: 280px;
  /* animation: ethF 7s ease-in-out infinite; */
  filter: drop-shadow(0 12px 28px rgba(80, 70, 229, 0.06));
}
@keyframes ethF {
  0%,
  100% {
    transform: translateY(0) rotate(0) scale(1);
  }
  50% {
    transform: translateY(-10px) rotate(0.8deg) scale(1.01);
  }
}

/* ── TESTIMONIAL ── */
.test-carousel {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}
.test-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: testscroll 35s linear infinite;
}
.test-track:hover {
  animation-play-state: paused;
}
.test-card {
  min-width: 340px;
  max-width: 450px;
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.test-card::before {
  content: "\201C";
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.08;
  font-family: Georgia, serif;
  line-height: 1;
}
.test-card blockquote {
  flex-grow: 1;
  font-size: 1.1rem;
  line-height: 1.75;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1rem;
}
.test-card cite {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--text3);
  font-weight: 500;
}
@keyframes testscroll {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* ── CTA ── */
.cta {
  text-align: center;
  position: relative;
  padding: 5rem 2rem 6rem;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(80, 70, 229, 0.05),
    transparent 60%
  );
}
.cta-eagle {
  position: absolute;
  bottom: -15px;
  right: 6%;
  width: 240px;
  opacity: 0.05;
  pointer-events: none;
  animation: ctaL 6s ease-in-out infinite;
}
@keyframes ctaL {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-18px) rotate(1.5deg);
  }
}
.cta-in {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin: 0 auto;
}
.cta-in h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.cta-in p {
  font-size: 1rem;
  color: var(--text2);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.cta-btns {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border2);
  padding: 2.25rem 2rem;
  position: relative;
  z-index: 1;
}
.f-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.f-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.f-logo img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.f-logo span {
  font-weight: 700;
  font-size: 0.85rem;
}
.f-links {
  display: flex;
  gap: 1.25rem;
}
.f-links a {
  font-size: 0.78rem;
  color: var(--text3);
  font-weight: 500;
  transition: color 0.2s;
}
.f-links a:hover {
  color: var(--accent);
}
.f-copy {
  font-size: 0.7rem;
  color: var(--text3);
}

/* ── ANIMATIONS ── */
@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.rv.vis {
  opacity: 1;
  transform: translateY(0);
}
.d1 {
  transition-delay: 0.06s;
}
.d2 {
  transition-delay: 0.12s;
}
.d3 {
  transition-delay: 0.18s;
}
.d4 {
  transition-delay: 0.24s;
}
.d5 {
  transition-delay: 0.3s;
}

.socials {
  padding: 0 0.75rem;
}
.triumphal{
width: 165px;
}
.hyperstack{
  width: 190px;
}
.elverve{
  width: 150px;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .trust-logos{
    gap:3.5rem;
  }
  .triumphal{
    width: 133px;
    }
    .hyperstack{
      width: 150px;
    }
    .elverve{
      width: 120px;
    }
  .c{
    text-align: center;
  }
  .test-card {
    max-width: 350px;
    min-width: 300px;
  }
  .e-a5 {
    margin: 1rem auto 0;
  }
  .bento {
    display: flex;
    flex-direction: column;
  }
  .b-card {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .b-wide,
  .b-narrow,
  .b-third {
    grid-column: span 1;
  }
  .b-card:nth-child(5) {
    grid-column: span 2;
  }
  .tension-grid {
    grid-template-columns: 1fr;
  }
  .tension-eagle {
    max-width: 260px;
    margin: 0 auto;
  }
  .ethics-grid {
    grid-template-columns: 1fr;
  }
  .ethics-vis {
    order: -1;
    max-width: 200px;
    margin: 0 auto;
  }
  .ethics-pillars {
    grid-template-columns: 1fr;
  }
  .how-grid {
    grid-template-columns: 1fr 1fr;
  }
  .how-grid::before {
    display: none;
  }
  .n-links {
    display: none;
  }
  nav {
    padding: 0 1.5rem;
  }
  .b-img.pos-br,
  .b-img.pos-r,
  .b-img.pos-br2,
  .b-img.pos-bl,
  .b-img.pos-cr {
    position: relative;
    width: 70%;
    max-width: 200px;
    margin: 1rem auto 0;
    inset: auto;
    transform: none;
  }
  .b-card-inner {
    min-height: auto;
  }

}
@media (max-width: 600px) {
  .trust-logos{
    gap:1.5rem;
  }
  .triumphal{
    width: 123px;
    }
    .hyperstack{
      width: 140px;
    }
    .elverve{
      width: 110px;
    }
  .c {
    text-align: center;
  }
  .b-card-inner {
    flex-direction: column !important;
  }
  .test-card {
    max-width: 300px;
    min-width: 250px;
  }
  .bento {
    display: flex;
    flex-direction: column;
  }
  .b-card {
    display: flex;
    flex-direction: column;
  }
  .b-card:nth-child(5) {
    grid-column: span 1;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .pain-cards {
    grid-template-columns: 1fr;
  }
  .f-inner {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
  .n-login {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
