/* ============ HERO ============ */
.hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 18px 8px 14px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,0.5);
}
.hero-eyebrow .dot { background: var(--coral); }

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.015em;
  font-size: clamp(52px, 7vw, 108px);
  margin: 28px 0 28px;
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
  color: var(--teal);
}
.hero-title .strike {
  position: relative;
  display: inline-block;
  color: var(--muted);
  font-weight: 300;
}
.hero-title .strike::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%; top: 54%;
  height: 3px;
  background: var(--coral);
  transform: rotate(-2deg);
  transform-origin: center;
}
.hero-lead {
  font-size: clamp(17px, 1.45vw, 19.5px);
  color: var(--ink);
  opacity: 0.78;
  max-width: 46ch;
  font-weight: 300;
  line-height: 1.55;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 40px;
}

/* Hero visual: big circle composition with bamboo + image inside */
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1.05;
  width: 100%;
}
.hero-art .ring-big {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f6efe0 0%, #efe5d1 100%);
}
.hero-art .ring-mid {
  position: absolute;
  width: 78%; height: 78%;
  right: -6%; bottom: -6%;
  border-radius: 50%;
  background: var(--ink);
  overflow: hidden;
}
.hero-art .ring-mid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(220deg, rgba(42,156,142,0.35), transparent 60%);
}
.hero-art .ring-mid .lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, transparent 0 8px, rgba(232,195,105,0.10) 8px 9px);
  mix-blend-mode: screen;
}
.hero-art .ring-small {
  position: absolute;
  top: 8%; right: 14%;
  width: 32%; height: 32%;
  border-radius: 50%;
  background: var(--sand);
  display: grid; place-items: center;
  box-shadow: 0 18px 60px -16px rgba(38,70,83,0.35);
}
.hero-art .ring-small .iso {
  width: 64%; height: 64%;
  color: var(--ink);
}
.hero-art .badge {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 12px 18px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 12px 40px -16px rgba(38,70,83,0.25);
}
.hero-art .badge-1 { left: -2%; top: 22%; }
.hero-art .badge-2 { left: 10%; bottom: 8%; }
.hero-art .badge .num {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  color: var(--coral);
  font-weight: 500;
}

/* Floating quote bubble */
.hero-art .quote {
  position: absolute;
  right: -4%; bottom: 6%;
  background: var(--bg);
  border-radius: 22px;
  padding: 22px 24px;
  max-width: 260px;
  box-shadow: 0 18px 50px -18px rgba(38,70,83,0.30);
  border: 1px solid var(--hairline);
}
.hero-art .quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 10px;
}
.hero-art .quote span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Scroll cue */
.scroll-cue {
  margin-top: 60px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-cue .line {
  display: block;
  width: 40px; height: 1px;
  background: var(--muted);
  animation: scrollLine 2.4s ease-in-out infinite;
  transform-origin: left center;
}
@keyframes scrollLine {
  0% { transform: scaleX(0.3); opacity: 0.4; }
  50% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0.3); opacity: 0.4; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 520px; margin: 0 auto; }
}

/* ============ ROTATING WORD STRIP ============ */
.strip {
  background: var(--ink);
  color: var(--bg);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.strip-track {
  display: flex;
  gap: 60px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.strip-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 36px);
  display: inline-flex; align-items: center; gap: 60px;
}
.strip-track span::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sand);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ CARRUSEL DE PRODUCTOS ============ */
.products {
  padding: clamp(80px, 9vw, 130px) 0;
  position: relative;
}
.products .iso-wm {
  width: 580px; height: 580px;
  right: -180px; top: 10%;
}
.products-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 70px;
}
.products-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 4.4vw, 60px); line-height: 1.04; letter-spacing: -0.015em; max-width: 18ch; }
.products-head h2 em { font-style: italic; color: var(--teal); }
.products-head .nav-circle {
  display: flex; gap: 12px;
}
.products-head .nav-circle button {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: grid; place-items: center;
  transition: background .2s, color .2s, transform .2s;
}
.products-head .nav-circle button:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }

.carousel {
  position: relative;
}
.carousel-stage {
  position: relative;
  min-height: 580px;
}
.slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .8s cubic-bezier(.2,.7,.2,1);
}
.slide.active { opacity: 1; pointer-events: auto; }

.slide-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 520px;
  display: grid; place-items: center;
}
.slide-visual .disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform: scale(0.95);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.slide.active .slide-visual .disc { transform: scale(1); }
.slide-visual .disc-outline {
  position: absolute;
  inset: -20px;
  border: 1px dashed var(--hairline);
  border-radius: 50%;
  animation: rotate 80s linear infinite;
}
@keyframes rotate {
  100% { transform: rotate(360deg); }
}
.slide-visual .icon {
  position: relative;
  z-index: 2;
  width: 50%; height: 50%;
  color: var(--bg);
}
.slide-visual .pill {
  position: absolute;
  bottom: 6%;
  background: var(--bg);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  border: 1px solid var(--hairline);
  z-index: 3;
}

.slide-content .product-num {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 22px;
  font-style: italic;
}
.slide-content h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.slide-content h3 em { font-style: italic; color: var(--teal); }
.slide-content p {
  font-size: 17.5px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.78;
  max-width: 44ch;
  margin-bottom: 32px;
}
.slide-content .features {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px;
}
.slide-content .feature {
  padding: 8px 14px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--ink);
  background: rgba(255,255,255,0.6);
}
.slide-content .ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
}

.carousel-dots {
  display: flex; gap: 10px;
  margin-top: 60px;
  justify-content: center;
  align-items: center;
}
.carousel-dots button {
  width: 36px; height: 4px;
  border-radius: 4px;
  background: var(--hairline);
  transition: background .3s, width .3s;
}
.carousel-dots button.active {
  width: 60px;
  background: var(--ink);
}
.carousel-counter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  margin-left: 24px;
}

@media (max-width: 860px) {
  .slide { grid-template-columns: 1fr; }
  .carousel-stage { min-height: 880px; }
  .slide-visual { max-width: 320px; margin: 0 auto; }
  .products-head { grid-template-columns: 1fr; }
}

/* ============ DIFERENCIAL (Reto/Objetivo/Propósito) ============ */
.diferencial {
  background: var(--paper);
  padding: clamp(90px, 11vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.diferencial .iso-wm {
  width: 700px; height: 700px;
  left: -250px; bottom: -300px;
  opacity: 0.05;
}
.diferencial-head {
  text-align: center;
  margin-bottom: 80px;
}
.diferencial-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.8vw, 68px);
  line-height: 1.04;
  max-width: 16ch;
  margin: 18px auto 0;
  letter-spacing: -0.015em;
}
.diferencial-head h2 em { font-style: italic; color: var(--teal); }

.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  overflow: hidden;
}
.dif-cell {
  background: var(--paper);
  padding: 48px 40px 56px;
  display: flex; flex-direction: column;
  gap: 24px;
  position: relative;
  transition: background .35s;
}
.dif-cell:hover { background: var(--bg); }
.dif-cell .badge-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--hairline);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
}
.dif-cell:nth-child(1) .badge-num { background: var(--coral); color: var(--bg); border-color: var(--coral); }
.dif-cell:nth-child(2) .badge-num { background: var(--sand); color: var(--ink); border-color: var(--sand); }
.dif-cell:nth-child(3) .badge-num { background: var(--teal); color: var(--bg); border-color: var(--teal); }
.dif-cell h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.dif-cell h4 em { font-style: italic; }
.dif-cell .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.dif-cell p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.78;
}
@media (max-width: 860px) {
  .dif-grid { grid-template-columns: 1fr; }
}

/* ============ STATS ============ */
.stats {
  padding: clamp(80px, 9vw, 120px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat {
  display: flex; flex-direction: column;
  gap: 18px;
  padding: 38px 32px 38px 0;
  border-right: 1px solid var(--hairline);
}
.stat:last-child { border-right: none; }
.stat .icon-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--paper);
  display: grid; place-items: center;
  color: var(--ink);
}
.stat .num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 5.5vw, 72px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat .num em { font-style: italic; color: var(--coral); font-size: 0.7em; }
.stat .lbl {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.stat .desc {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--ink);
  opacity: 0.75;
  margin-top: 4px;
}
@media (max-width: 860px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
}

/* ============ FOUNDER TEASER ============ */
.founder-teaser {
  padding: clamp(80px, 9vw, 130px) 0;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.founder-teaser .iso-wm {
  width: 600px; height: 600px;
  right: -180px; top: -120px;
  opacity: 0.07;
  filter: brightness(0) invert(1);
}
.ft-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.ft-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: #555;
}
.ft-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.05) contrast(1.02);
}
.ft-photo .ring {
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px dashed rgba(253,252,249,0.5);
  top: -40px; left: -40px;
  animation: rotate 60s linear infinite;
}
.ft-photo .pill {
  position: absolute;
  bottom: 24px; left: 24px;
  padding: 10px 16px;
  background: var(--sand);
  color: var(--ink);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.ft-body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.ft-body h2 em { font-style: italic; color: var(--sand); }
.ft-body p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  margin-top: 28px;
  opacity: 0.85;
  max-width: 48ch;
}
.ft-body .signature {
  margin-top: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  opacity: 0.8;
}
.ft-body .ctas { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.ft-body .btn-ghost { border-color: var(--bg); color: var(--bg); }
.ft-body .btn-ghost:hover { background: var(--bg); color: var(--ink); }
@media (max-width: 860px) { .ft-grid { grid-template-columns: 1fr; } }

/* ============ ALLIES STRIP ============ */
.allies {
  padding: clamp(60px, 7vw, 90px) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.allies-head {
  text-align: center;
  margin-bottom: 50px;
}
.allies-head .eyebrow { justify-content: center; }
.allies-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  margin-top: 14px;
  letter-spacing: -0.01em;
}
.allies-head h3 em { font-style: italic; color: var(--teal); }
.allies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid var(--hairline);
  border-top: 1px solid var(--hairline);
}
.ally {
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  aspect-ratio: 3 / 2;
  display: grid; place-items: center;
  padding: 18px;
  transition: background .25s, transform .25s;
}
.ally img {
  max-width: 78%;
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter .25s, opacity .25s;
}
.ally:hover img {
  filter: grayscale(0);
  opacity: 1;
}
.ally:hover { background: var(--paper); }
/* Coomeva logo has more whitespace baked in — scale up to match visual weight */
.ally img[src*="coomeva"] {
  max-height: 56px;
  max-width: 92%;
}
@media (max-width: 980px) { .allies-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .allies-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ CLOSING CTA ============ */
.closer {
  padding: clamp(120px, 14vw, 200px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closer .iso-wm {
  width: 800px; height: 800px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.035;
}
.closer .eyebrow { justify-content: center; margin-bottom: 32px; }
.closer h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.closer h2 em { font-style: italic; color: var(--teal); }
.closer .ctas { margin-top: 48px; display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
