/* ============================================================
   KRYV · Design System
   ============================================================ */

:root {
  --black:  #0A0A0B;
  --navy:   #0F1F3D;
  --blue:   #3D6EF2;
  --mist:   #C9D7F7;
  --bone:   #F4F2EE;
  --ash:    #8B8E96;
  --white:  #FFFFFF;

  --serif: 'DM Serif Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --mono:  'JetBrains Mono', 'Courier New', monospace;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout:  cubic-bezier(0.76, 0, 0.24, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ============================================================
   UTILITIES
   ============================================================ */

.eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Arrow icon — injected via ::after */
.btn::after {
  content: '→';
  font-size: 12px;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
  opacity: 0;
  transform: translateX(-6px);
}

.btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 2px 12px rgba(61,110,242,0.25);
}

.btn--primary:hover {
  background: #2d5ce0;
  border-color: #2d5ce0;
  box-shadow: 0 4px 24px rgba(61,110,242,0.4);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(15,31,61,0.25);
  margin-top: 8px;
}

.btn--ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-1px);
}

/* ============================================================
   NAV — Premium floating
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 100px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  /* starts fully transparent over hero */
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Glass backdrop fades in on scroll */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.nav.is-scrolled::before { opacity: 1; }

.nav.is-hidden { transform: translateY(-110%); }

.nav__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bone);
}

.nav__logo-img {
  height: 100px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
}

.nav__logo-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
}

/* Links — absolutely centered in the nav */
.nav__center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__center a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.52);
  padding: 7px 16px;
  border-radius: 100px;
  transition: color 0.2s, background 0.25s;
}

.nav__center a:hover {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.07);
}

/* CTA actions area */
.nav__actions {
  display: flex;
  align-items: center;
}

/* CTA — gradient button com shimmer + glow */
.nav__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  background: linear-gradient(135deg, #3D6EF2 0%, #6248F5 100%);
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  overflow: hidden;
  white-space: nowrap;
  box-shadow:
    0 4px 20px rgba(61, 110, 242, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease !important;
}

/* Shimmer sweep on hover */
.nav__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -90%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  pointer-events: none;
  transition: left 0.6s ease;
}

.nav__cta:hover::after { left: 140%; }

.nav__cta:hover {
  transform: translateY(-2px) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.30) !important;
  box-shadow:
    0 8px 40px rgba(61, 110, 242, 0.55),
    0 2px 14px rgba(98, 72, 245, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.28) !important;
}

.nav__cta-arrow {
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__cta:hover .nav__cta-arrow {
  transform: translate(2px, -2px);
}

/* ============================================================
   HERO — Split panels
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
}

.hero__slider {
  position: relative;
  width: 100%;
  height: 100vh;
}

/* Each slide is a full-viewport flex row */
.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s var(--ease-inout), visibility 0.9s;
}

.hero__slide--active {
  opacity: 1;
  visibility: visible;
}

/* Left panel: text */
.hero__panel--text {
  width: 48%;
  flex-shrink: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Right edge fade so text panel blends into image */
.hero__panel--text::after {
  content: '';
  position: absolute;
  right: -60px;
  top: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(to right, var(--black) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.hero__panel-inner {
  padding: 68px 80px 60px 64px; /* 68px top = nav height */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--bone);
  margin-bottom: 24px;
}

.hero__headline em {
  display: block;
  font-style: italic;
  color: var(--mist);
}

.hero__sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ash);
  max-width: 380px;
  margin-bottom: 40px;
}

/* Right panel: image */
.hero__panel--image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero__image-fill {
  position: absolute;
  inset: 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Subtle blue-gradient overlay on the image */
.hero__image-fill::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15,31,61,0.6) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(10,10,11,0.15) 0%, transparent 30%);
  z-index: 1;
}

.hero__img-placeholder {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 40px;
}

.hero__img-placeholder span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201, 215, 247, 0.5);
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Left edge fade on image panel (blends into text) */
.hero__image-edge {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(to right, var(--black) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Slider controls */
.hero__controls {
  position: absolute;
  bottom: 40px;
  left: 48px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero__dot {
  width: 5px;
  height: 5px;
  background: rgba(244,242,238,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  padding: 0;
}

.hero__dot--active {
  background: var(--blue);
  width: 22px;
}

.hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.05);
}

.hero__progress-bar {
  height: 100%;
  background: var(--blue);
  width: 0%;
}

/* ============================================================
   SECTION 02 — DIAGNOSTIC
   ============================================================ */

.diagnostic {
  background: var(--bone);
  color: var(--black);
  padding: 100px 64px 72px 64px; /* less bottom — solution continues */
  overflow: hidden;
}

/* Two-column layout */
.diagnostic__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left column: text */
.diagnostic__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.diagnostic__text .eyebrow { color: var(--blue); }

.diagnostic__headline {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 24px;
}

.diagnostic__headline em {
  font-style: italic;
  color: var(--navy);
}

.diagnostic__sub {
  font-size: 15px;
  line-height: 1.7;
  color: #52525A;
  max-width: 400px;
  margin-bottom: 36px;
}

/* Right column: bubble map */
.diagnostic__map {
  position: relative;
  width: 560px;
  height: 500px;
  flex-shrink: 0;
  justify-self: center;
}

/* SVG arrows layer — covers the entire map */
.diagnostic__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

/* ── Center node ── */
.diagnostic__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diagnostic__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(61, 110, 242, 0.18);
  animation: ringPulse 4s ease-in-out infinite;
}

.diagnostic__ring--outer {
  width: 160px;
  height: 160px;
  animation-delay: 0s;
}

.diagnostic__ring--mid {
  width: 112px;
  height: 112px;
  animation-delay: 0.9s;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50%       { opacity: 0.65; transform: scale(1.05); }
}

.diagnostic__node {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  background: var(--navy);
  border: 1px solid rgba(61, 110, 242, 0.35);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.diagnostic__node span {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mist);
  line-height: 1.4;
}

/* ── Pill cards ── */
.diag-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  height: 50px;
  min-width: 172px;
  white-space: nowrap;
  background: var(--white);
  border: 1px solid rgba(10, 10, 11, 0.07);
  border-radius: 100px;
  box-shadow: 0 2px 16px rgba(10, 10, 11, 0.07), 0 1px 3px rgba(10, 10, 11, 0.04);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
  cursor: default;
  z-index: 3;
  /* start hidden for JS entrance */
  opacity: 0;
}

.diag-card.is-visible { opacity: 1; }

.diag-card:hover {
  box-shadow: 0 8px 32px rgba(10, 10, 11, 0.1), 0 2px 6px rgba(10, 10, 11, 0.05);
  border-color: rgba(61, 110, 242, 0.25);
}

.diag-card__icon {
  color: var(--navy);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color 0.2s;
}

.diag-card:hover .diag-card__icon { color: var(--blue); }

.diag-card span {
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* ── Card positions (map is 560×500, center at 280,250) ── */
.diag-card--tl {
  top:  60px;
  left: 10px;
}

.diag-card--tr {
  top:   60px;
  right: 10px;
}

.diag-card--ml {
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s, opacity 0.5s;
}

.diag-card--ml:hover {
  transform: translateY(calc(-50% - 3px));
}

.diag-card--mr {
  top:   50%;
  right: 6px;
  transform: translateY(-50%);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s, opacity 0.5s;
}

.diag-card--mr:hover {
  transform: translateY(calc(-50% - 3px));
}

.diag-card--bc {
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s, opacity 0.5s;
}

.diag-card--bc:hover {
  transform: translate(-50%, -3px);
}

/* ============================================================
   SECTION 03 — SOLUTION · Bento grid assimétrico
   ============================================================ */

.solution {
  background: var(--bone);
  overflow: hidden;
  padding-bottom: 100px;
}

.solution__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 64px 0;
}

/* ── 2-column header ── */
.solution__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
}

.solution__head .eyebrow { color: var(--blue); }

.solution__headline {
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
}

.solution__headline em {
  display: block;
  font-style: italic;
  color: var(--navy);
}

.solution__head-right {
  display: flex;
  align-items: flex-end;
  padding-bottom: 4px;
}

.solution__sub {
  font-size: 15px;
  line-height: 1.75;
  color: #52525A;
}

/* ── Bento grid ── */
.solution__bento {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 500px;
}

/* ── Base card ── */
.sol-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: default;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.sol-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
  z-index: 2;
}

.sol-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(10,10,11,0.22), 0 4px 12px rgba(10,10,11,0.1);
}

.sol-card:hover::before { transform: scaleX(1); }

/* ── Decorative SVG (absolute, no interaction) ── */
.sol-card__deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

/* ── Large card (left, spans 2 rows) ── */
.sol-card--large {
  grid-row: span 2;
  padding: 44px 48px;
  justify-content: space-between;
}

.sol-card--large .sol-card__deco {
  bottom: -30px;
  right: -30px;
  width: 280px;
  height: 280px;
  transition: opacity 0.35s;
}

.sol-card--large:hover .sol-card__deco { opacity: 1.4; }

.sol-card__num-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--blue);
}

.sol-card__icon-wrap {
  color: rgba(201, 215, 247, 0.35);
  margin-top: 28px;
  transition: color 0.3s, transform 0.35s var(--ease-out);
}

.sol-card--large:hover .sol-card__icon-wrap {
  color: var(--blue);
  transform: scale(1.08);
}

.sol-card__icon-wrap svg { display: block; }

.sol-card__content { margin-top: auto; }

.sol-card__title {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: 14px;
}

.sol-card__desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ash);
  max-width: 340px;
}

.sol-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.sol-card__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(201,215,247,0.4);
  background: rgba(61,110,242,0.12);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(61,110,242,0.2);
}

.sol-card__arrow {
  color: rgba(201,215,247,0.3);
  display: flex;
  align-items: center;
  transition: color 0.25s, transform 0.25s var(--ease-out);
}

.sol-card--large:hover .sol-card__arrow {
  color: var(--blue);
  transform: translateX(4px);
}

/* ── Small cards (right column) ── */
.sol-card--sm {
  padding: 32px 36px;
  justify-content: space-between;
}

.sol-card--sm .sol-card__deco--lines {
  top: 0; right: 0;
  width: 160px; height: 160px;
}

.sol-card--sm .sol-card__deco--bars {
  bottom: 0; right: 0;
  width: 120px; height: 90px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.sol-card--sm:hover .sol-card__deco--bars { opacity: 1.2; }

.sol-card--sm .sol-card__num-tag { margin-bottom: 24px; }

.sol-card--sm .sol-card__title {
  font-size: 22px;
  margin-bottom: 10px;
}

.sol-card--sm .sol-card__desc {
  font-size: 13px;
  line-height: 1.7;
}

.sol-card__icon-sm {
  color: rgba(201,215,247,0.25);
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  transition: color 0.25s, transform 0.3s var(--ease-out);
}

.sol-card--sm:hover .sol-card__icon-sm {
  color: var(--blue);
  transform: translateX(-2px) scale(1.1);
}

/* Alt card (card 03) — slightly different bg for visual variation */
.sol-card--alt {
  background: #0D1F3A;
}

/* ============================================================
   SECTION 04 — MÉTODO KRYV
   ============================================================ */

.method {
  background: var(--bone);
  padding: 100px 64px 0;
  color: var(--black);
  overflow: hidden;
}

.method__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Header ── */
.method__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}

.method__head .eyebrow { color: var(--blue); }

.method__headline {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--black);
}

.method__headline em {
  font-style: italic;
  color: var(--navy);
}

.method__head-right {
  display: flex;
  align-items: flex-end;
  padding-bottom: 4px;
}

.method__sub {
  font-size: 15px;
  line-height: 1.75;
  color: #52525A;
}

/* ── 4 Steps grid ── */
.method__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(10,10,11,0.09);
}

.method__step {
  padding: 36px 32px 44px;
  border-right: 1px solid rgba(10,10,11,0.09);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.3s;
  cursor: default;
}

.method__step:last-child { border-right: none; }

.method__step:hover { background: rgba(61,110,242,0.03); }

.method__step-num {
  display: block;
  font-family: var(--mono);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--blue);
  margin-bottom: 20px;
}

.method__step-rule {
  height: 1px;
  background: rgba(10,10,11,0.09);
  margin-bottom: 20px;
  transition: background 0.3s;
}

.method__step:hover .method__step-rule { background: var(--blue); }

.method__step-title {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 12px;
}

.method__step-desc {
  font-size: 13px;
  line-height: 1.75;
  color: #52525A;
  flex: 1;
}

/* ── Marketing callout ── */
.method__callout {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 48px 0 100px;
}

.method__callout-rule {
  flex: 1;
  height: 1px;
  background: rgba(10,10,11,0.1);
}

.method__callout-text {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--black);
  text-align: center;
  flex-shrink: 0;
  max-width: 520px;
}

.method__callout-text em {
  font-style: italic;
  color: var(--navy);
}

/* ============================================================
   SECTION 05 — SOBRE / ECOSSISTEMA
   ============================================================ */

/* ── About Kryv (bone) ── */
.about__kryv {
  background: var(--bone);
  padding: 80px 64px 100px;
  color: var(--black);
}

.about__kryv-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__kryv-headline {
  font-family: var(--serif);
  font-size: clamp(34px, 3.5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 28px;
}

.about__kryv-headline em {
  font-style: italic;
  color: var(--navy);
}

.about__lead {
  font-size: 15px;
  line-height: 1.8;
  color: #52525A;
  margin-bottom: 36px;
}

/* Photo placeholder */
.about__kryv-photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: rgba(10,10,11,0.06);
  border: 1.5px dashed rgba(10,10,11,0.13);
}

.about__kryv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.01em;
}

.about__item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ── Grupo KR (navy, encaixe sobre bone) ── */
.about__grupo {
  background: var(--navy);
  border-radius: 28px 28px 0 0;
  margin-top: -28px;
  position: relative;
  z-index: 2;
  padding: 80px 64px 100px;
}

.about__grupo-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about__grupo-eyebrow {
  color: rgba(255,255,255,0.45) !important;
  margin-bottom: 40px;
}

.about__grupo-head-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

.about__grupo-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
}

.about__grupo-headline em {
  font-style: italic;
  color: rgba(255,255,255,0.45);
}

.about__grupo-sub {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
}

/* ── Bento company cards — logo-pop style ── */
.about__companies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* Asymmetric checkerboard: 1+2 / 2+1 */
.about__co-wrap--kryv    { grid-column: 1;     grid-row: 1; }
.about__co-wrap--krya    { grid-column: 2 / 4; grid-row: 1; }
.about__co-wrap--kryo    { grid-column: 1 / 3; grid-row: 2; }
.about__co-wrap--kritter { grid-column: 3;     grid-row: 2; }

/* Outer click + hover wrapper */
.about__co-wrap {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
}

/* ── Floating brand chip — pops out of card top ── */
.about__co-floater {
  align-self: center;
  border-radius: 16px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  margin-bottom: -52px;
  box-shadow:
    0 18px 44px rgba(0,0,0,0.45),
    0 4px 14px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.22);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.5s cubic-bezier(0.16,1,0.3,1);
}

/* Per-brand color + rotation */
.about__co-floater--kryv    { background: linear-gradient(145deg, #0F1F3D 0%, #1a3470 48%, #3D6EF2 100%); transform: rotate(-4deg); }
.about__co-floater--krya    { background: linear-gradient(145deg, #0f0d1b 0%, #5b46e6 58%, #b49cff 100%); transform: rotate(3.5deg); flex-direction: column; align-items: flex-start; gap: 3px; }
.about__co-floater--kryo    { background: linear-gradient(145deg, #42368b 0%, #794c98 52%, #f2901e 100%); transform: rotate(-5deg); }
.about__co-floater--kritter { background: linear-gradient(145deg, #0d1321 0%, #2e3440 58%, #c8a15a 100%); transform: rotate(2deg); }

/* Hover: lift + reduce rotation */
.about__co-wrap:hover .about__co-floater {
  box-shadow:
    0 28px 64px rgba(0,0,0,0.50),
    0 8px 22px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.30);
}
.about__co-wrap:hover .about__co-floater--kryv    { transform: rotate(-1.5deg) translateY(-14px); }
.about__co-wrap:hover .about__co-floater--krya    { transform: rotate(1deg)    translateY(-14px); }
.about__co-wrap:hover .about__co-floater--kryo    { transform: rotate(-2deg)   translateY(-14px); }
.about__co-wrap:hover .about__co-floater--kritter { transform: rotate(0.5deg)  translateY(-14px); }

/* ── Tipografia por marca ── */
.about__co-floater--kryv .about__co-float-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.about__co-floater--krya .about__co-float-name {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}
.about__co-floater--krya .about__co-float-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.about__co-floater--kryo .about__co-float-name {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.about__co-floater--kritter .about__co-float-name {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
}

/* Card body: gradient + rounded corners */
.about__co-card {
  border-radius: 20px;
  overflow: hidden;
  padding: 68px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.45s cubic-bezier(0.16,1,0.3,1);
}

.about__co-wrap:hover .about__co-card {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}

/* Narrow (1-col) cards: taller */
.about__co-wrap--kryv    .about__co-card,
.about__co-wrap--kritter .about__co-card { min-height: 290px; }

/* Wide (2-col) cards: shorter */
.about__co-wrap--krya .about__co-card,
.about__co-wrap--kryo .about__co-card   { min-height: 240px; }

/* Brand gradients */
.about__co-card--kryv {
  background: linear-gradient(145deg, #0F1F3D 0%, #1a3470 48%, #3D6EF2 100%);
}

.about__co-card--krya {
  background: linear-gradient(145deg, #0f0d1b 0%, #5b46e6 58%, #b49cff 100%);
}

.about__co-card--kryo {
  background: linear-gradient(145deg, #42368b 0%, #794c98 52%, #f2901e 100%);
}

.about__co-card--kritter {
  background: linear-gradient(145deg, #0d1321 0%, #2e3440 58%, #c8a15a 100%);
}

/* Meta row */
.about__co-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: auto;
}

.about__co-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

.about__co-cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.45);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Text */
.about__co-text { margin-top: 24px; }

.about__co-name {
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 8px;
}

.about__co-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 360px;
}

/* Arrow button */
.about__co-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0.4;
  transition: opacity 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.about__co-wrap:hover .about__co-arrow {
  opacity: 1;
  transform: scale(1.12) rotate(6deg);
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 64px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.01em;
}

.footer__logo-img {
  height: 100px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
}

.footer__copy {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.3);
}

.footer__links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer__links a { transition: color 0.2s; }
.footer__links a:hover { color: var(--white); }
