/* Iki LP — Ascent ethereal over Methz skeleton */

.saas-display,
.saas-h1,
.page-title,
.nav-bar__brand,
.iki-wordmark {
  font-family: var(--font-display);
  letter-spacing: var(--tracking-h1);
}

.saas-display {
  letter-spacing: var(--tracking-display);
}

body.ds-saas {
  color: var(--color-pearl);
  background:
    radial-gradient(ellipse 90% 55% at 15% -5%, rgba(123, 118, 196, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 45% at 95% 8%, rgba(47, 111, 122, 0.28), transparent 50%),
    linear-gradient(180deg, #12162f 0%, var(--ascent-deep) 40%, #161b3d 100%);
}

/* ——— Nav ——— */
.nav-bar {
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  background: rgba(18, 22, 47, 0.55);
  border-bottom: 1px solid var(--glass-border);
}

.nav-bar__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0;
  color: transparent;
}

.nav-bar__brand img {
  height: 34px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.btn--cyan {
  background: linear-gradient(135deg, var(--secondary) 0%, #4eb5b0 100%);
  color: #062222;
  box-shadow: 0 10px 30px -12px rgba(61, 155, 155, 0.7);
}

.btn--cyan:hover {
  filter: brightness(1.06);
}

.btn--ghost {
  border-color: var(--glass-border);
  color: var(--color-pearl);
}

/* ——— Hero: one composition ——— */
.hero-ascent {
  position: relative;
  isolation: isolate;
  min-height: min(100dvh, 56rem);
  display: grid;
  align-items: end;
  padding-block: calc(var(--nav-h) + 2.5rem) 3.5rem;
  overflow: hidden;
}

.hero-ascent__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-ascent__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.06);
}

.hero-ascent__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(18, 22, 47, 0.35) 0%,
      rgba(26, 31, 74, 0.55) 42%,
      rgba(26, 31, 74, 0.92) 78%,
      var(--ascent-deep) 100%
    ),
    radial-gradient(ellipse at 70% 35%, rgba(255, 217, 168, 0.18), transparent 45%);
  pointer-events: none;
}

.hero-ascent__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: end;
}

@media (min-width: 960px) {
  /* Composição calma: min-height na dobra, sem esticar o phone até o chão. */
  .hero-ascent {
    height: auto;
    min-height: calc(100dvh - var(--nav-h));
    max-height: none;
    box-sizing: border-box;
    align-items: center;
    padding-block: clamp(1.75rem, 4.5vh, 3.25rem) clamp(2rem, 5.5vh, 3.75rem);
  }

  .hero-ascent__inner {
    /* Nunca width:100% aqui — a classe .wrap define a calha; 100% cola o texto na borda. */
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
    gap: clamp(1.75rem, 4vw, 3.25rem);
    align-items: center;
  }

  .hero-ascent__copy {
    max-width: 34rem;
  }

  .hero-ascent__kicker {
    margin-bottom: 0.85rem;
  }

  .hero-ascent .saas-display {
    margin-bottom: 0.9rem;
  }

  .hero-ascent .saas-body {
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    line-height: 1.55;
  }

  .hero-ascent__actions {
    margin-top: 1.5rem;
    gap: 0.75rem;
  }

  .hero-ascent__note {
    margin-top: 0.9rem;
  }

  .hero-ascent__stage {
    width: min(240px, 26vw);
    max-width: min(240px, 26vw);
    height: auto;
    justify-self: end;
  }

  .hero-ascent__phone {
    width: 100%;
    height: auto;
    aspect-ratio: 472 / 1024;
  }

  .hero-ascent__phone img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center top;
  }
}

/* Telas baixas: reduz o phone e o ar, sem mudar o tipo do título. */
@media (min-width: 960px) and (max-height: 820px) {
  .hero-ascent {
    padding-block: 1.35rem 1.75rem;
  }

  .hero-ascent__inner {
    gap: 1.5rem;
  }

  .hero-ascent .saas-body {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-ascent__actions {
    margin-top: 1.15rem;
  }

  .hero-ascent__stage {
    width: min(210px, 24vw);
    max-width: min(210px, 24vw);
  }

  .hero-ascent__phone {
    animation: iki-float-soft 5.5s ease-in-out infinite;
  }
}

@media (min-width: 960px) and (max-height: 700px) {
  .hero-ascent {
    min-height: 0;
    padding-block: 1.1rem 1.4rem;
  }

  .hero-ascent__stage {
    width: min(180px, 22vw);
    max-width: min(180px, 22vw);
  }
}

.hero-ascent__copy {
  max-width: 36rem;
}

.hero-ascent__kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--peak-glow);
}

.hero-ascent .saas-display {
  margin-bottom: 1rem;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero-ascent .saas-display .hl {
  background: linear-gradient(120deg, var(--peak-glow), #fff6e8 45%, var(--primary-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-ascent .saas-body {
  max-width: 32rem;
  color: rgba(247, 249, 252, 0.86);
  font-size: 1.1rem;
  line-height: 1.55;
}

.hero-ascent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-ascent__note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-fog);
}

.hero-ascent__stage {
  position: relative;
  justify-self: center;
  width: min(300px, 78vw);
  max-width: 100%;
  display: grid;
  place-items: center;
}

.hero-ascent__glow {
  position: absolute;
  inset: 4% -8%;
  border-radius: 40% / 30%;
  background: radial-gradient(circle, rgba(255, 217, 168, 0.35) 0%, rgba(123, 118, 196, 0.22) 42%, transparent 72%);
  filter: blur(10px);
  animation: iki-breathe 6s ease-in-out infinite;
}

/* Mockup reto (sem tilt) + flutuação suave */
.hero-ascent__phone {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(12, 10, 28, 0.45);
  box-shadow:
    0 28px 56px -18px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  animation: iki-float 5.5s ease-in-out infinite;
}

.hero-ascent__phone img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes iki-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes iki-float-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes iki-breathe {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

/* Hide old Methz hero chrome if present */
.hero-split--iki {
  display: none !important;
}

.br-desktop {
  display: none;
}

@media (min-width: 900px) {
  .br-desktop {
    display: block;
  }
}

/* ——— Soft lavender band ——— */
.pearl-band,
.lav-band {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(197, 193, 240, 0.55), transparent 50%),
    linear-gradient(180deg, var(--lavender-field), var(--lavender-mid));
  color: var(--on-surface);
}

.lav-band .saas-h1,
.lav-band .saas-h2,
.lav-band .saas-body,
.lav-band .saas-eyebrow,
.lav-band .saas-caption,
.pearl-band .saas-h1,
.pearl-band .saas-h2,
.pearl-band .saas-body,
.pearl-band .saas-eyebrow,
.pearl-band .saas-caption {
  color: var(--on-surface);
}

.lav-band .saas-eyebrow,
.pearl-band .saas-eyebrow {
  color: var(--primary);
}

.lav-band .saas-body,
.pearl-band .saas-body {
  color: var(--on-surface-variant);
}

/* ——— Mint / verde-água ——— */
.mint-band {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(184, 232, 228, 0.7), transparent 52%),
    linear-gradient(180deg, #e4f4f2 0%, #c5e8e4 100%);
  color: var(--on-surface);
}

.mint-band .saas-h1,
.mint-band .saas-h2,
.mint-band .saas-body,
.mint-band .saas-eyebrow,
.mint-band .saas-caption {
  color: var(--on-surface);
}

.mint-band .saas-eyebrow {
  color: var(--secondary);
}

.mint-band .saas-body {
  color: var(--on-surface-variant);
}

/* ——— Product phones ——— */
.product-proof {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .product-proof {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
  }
}

.phone-stack {
  position: relative;
  min-height: 28rem;
  display: grid;
  place-items: center;
}

.phone {
  width: min(240px, 58vw);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow-violet);
  backdrop-filter: blur(18px);
}

.phone img {
  display: block;
  width: 100%;
  height: auto;
}

.phone--back {
  position: absolute;
  transform: translate(-18%, 6%) rotate(-6deg);
  opacity: 0.92;
  z-index: 0;
}

.phone--front {
  position: relative;
  z-index: 1;
  transform: translate(12%, -2%) rotate(3deg);
}

@media (max-width: 699px) {
  .phone--back {
    display: none;
  }
  .phone--front {
    transform: none;
  }
}

.proof-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.proof-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(197, 193, 240, 0.22), rgba(61, 155, 155, 0.1)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 193, 240, 0.45);
  box-shadow: 0 16px 40px -28px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.proof-item:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 232, 228, 0.55);
  background:
    linear-gradient(135deg, rgba(197, 193, 240, 0.3), rgba(61, 155, 155, 0.16)),
    rgba(255, 255, 255, 0.1);
}

.proof-item__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ascent-deep);
  background: linear-gradient(145deg, var(--peak-glow), var(--secondary-soft));
  box-shadow: 0 8px 20px -10px rgba(255, 217, 168, 0.7);
}

.proof-item h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--color-pearl);
}

.proof-item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(247, 249, 252, 0.78);
}

/* ——— Ikis gallery ——— */
.iki-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

@media (min-width: 700px) {
  .iki-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.iki-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 217, 168, 0.14), transparent 42%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.iki-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 217, 168, 0.55);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 217, 168, 0.32), transparent 48%),
    linear-gradient(165deg, rgba(123, 118, 196, 0.28), rgba(61, 155, 155, 0.12));
  box-shadow: 0 22px 48px -24px rgba(255, 217, 168, 0.45);
}

.iki-tile img {
  width: 70%;
  height: 70%;
  max-width: 70%;
  max-height: 70%;
  margin: 0;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}

/* Recorte pelo corpo opaco: cada PNG tem margem transparente diferente. */
.iki-tile img[src*="tsuru.png"] {
  object-view-box: inset(6.28% 0% 4.66% 0%);
}
.iki-tile img[src*="kitsune.png"] {
  object-view-box: inset(1.61% 0% 4.86% 3.29%);
}
.iki-tile img[src*="neko.png"] {
  object-view-box: inset(0% 4.75% 0.37% 9.78%);
}
.iki-tile img[src*="panda.png"] {
  object-view-box: inset(5.41% 3.04% 4.96% 2.36%);
}
.iki-tile img[src*="coruja.png"] {
  object-view-box: inset(9.51% 16.59% 4.51% 18.12%);
}
.iki-tile img[src*="tiger.png"] {
  object-view-box: inset(3.74% 3.73% 3.82% 3.85%);
}
.iki-tile img[src*="falcao.png"] {
  object-view-box: inset(0.35% 1.40% 3.99% 5.21%);
}
.iki-tile img[src*="kame.png"] {
  object-view-box: inset(21.72% 6.35% 1.99% 8.39%);
}
.iki-tile img[src*="dragao.png"] {
  object-view-box: inset(5.42% 2.23% 3.90% 18.90%);
  width: 85%;
  height: 85%;
  max-width: 85%;
  max-height: 85%;
}
.iki-tile img[src*="koi.png"] {
  object-view-box: inset(4.31% 0% 6.13% 5.49%);
  width: 73.5%;
  height: 73.5%;
  max-width: 73.5%;
  max-height: 73.5%;
}
.iki-tile img[src*="cavalo.png"] {
  object-view-box: inset(4.72% 13.05% 4.30% 20.27%);
}
.iki-tile img[src*="lobo.png"] {
  object-view-box: inset(1.87% 12.42% 0% 18.95%);
}

/* ——— Feature rhythm (glass, not heavy cards) ——— */
.feature-grid {
  gap: 1rem;
}

@media (min-width: 900px) {
  .feature-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 700px) and (max-width: 899px) {
  .feature-grid--four {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  box-shadow: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 217, 168, 0.55) !important;
  background:
    linear-gradient(145deg, rgba(255, 244, 220, 0.18), rgba(197, 193, 240, 0.26)),
    rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 20px 44px -26px rgba(255, 217, 168, 0.5);
  color: var(--color-pearl) !important;
}

.feature-card:hover .saas-h2,
.feature-card:hover .feature-icon {
  color: var(--color-pearl) !important;
}

.feature-card:hover .saas-body {
  color: rgba(247, 249, 252, 0.85) !important;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--peak-glow), var(--secondary-soft)) !important;
  color: var(--ascent-deep) !important;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ascent-deep);
  background: linear-gradient(135deg, var(--peak-glow), var(--primary-soft));
  margin-bottom: 0.85rem;
}

/* ——— Steps + Roda da Vida ——— */
.ascent-split {
  display: grid;
  gap: 1.5rem 3rem;
  align-items: stretch;
  grid-template-areas:
    "copy"
    "roda"
    "steps";
}

.ascent-split__copy {
  grid-area: copy;
}

.ascent-split .roda-frame {
  grid-area: roda;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
  overflow: visible;
  background: transparent;
}

.ascent-split .step-list {
  grid-area: steps;
  margin-top: 0;
}

@media (min-width: 900px) {
  .ascent-split {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      ".    copy"
      "roda steps";
  }
}

.roda-frame {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  backdrop-filter: none;
}

.kairos-frame {
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  background: var(--glass-strong);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-violet);
}

.roda-frame img,
.kairos-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.kairos-frame img {
  border-radius: 18px;
  background: #fff;
}

.ascent-split .roda-frame img,
.ascent-split .roda-live {
  max-height: 100%;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
}

.roda-live {
  display: block;
  width: min(100%, 34rem);
  height: auto;
  aspect-ratio: 1;
  overflow: visible;
  touch-action: none;
  cursor: crosshair;
  user-select: none;
  -webkit-user-select: none;
  background: transparent;
}

.roda-live text {
  font-family: Manrope, Nunito, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  fill: #3a3168;
  letter-spacing: 0.01em;
}

.roda-live path {
  transition: fill 70ms linear, stroke 80ms linear;
}

@media (prefers-reduced-motion: reduce) {
  .roda-live path {
    transition: none;
  }
}

.step-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.step-list--four {
  grid-template-columns: 1fr;
}

@media (min-width: 700px) and (max-width: 899px) {
  .step-list--four {
    grid-template-columns: 1fr 1fr;
  }
}

.step-card {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 217, 168, 0.5);
  background:
    linear-gradient(145deg, rgba(255, 217, 168, 0.14), rgba(123, 118, 196, 0.2));
  box-shadow: 0 18px 40px -24px rgba(255, 217, 168, 0.45);
}

.step-card:hover .step-card__num {
  color: var(--secondary-soft);
}

.step-card__num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--peak-glow);
  margin-bottom: 0.35rem;
  transition: color 0.3s ease;
}

.lav-band .step-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(28, 27, 46, 0.18);
  box-shadow: 0 10px 28px -18px rgba(26, 31, 74, 0.35);
}

.lav-band .step-card:hover {
  background: linear-gradient(145deg, #ffffff, rgba(197, 193, 240, 0.55));
  border-color: rgba(123, 118, 196, 0.45);
  box-shadow: 0 18px 36px -20px rgba(123, 118, 196, 0.45);
}

.lav-band .step-card__num {
  color: var(--primary);
}

.lav-band .step-card:hover .step-card__num {
  color: var(--ascent-mid);
}

/* ——— Metrics alive ——— */
.metric-card,
.metric-card--alive {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1.5rem 1.1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* Sobrescreve o hover mint→azul escuro do style.css (sem contraste no fundo deep). */
.metric-card:hover,
.metric-card.metric-card--alive:hover,
.metric-card--alive:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(145deg, rgba(255, 244, 220, 0.22), rgba(197, 193, 240, 0.28)),
    rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 217, 168, 0.65) !important;
  box-shadow: 0 20px 44px -22px rgba(255, 217, 168, 0.55);
  color: var(--color-pearl);
}

.metric-card:hover .metric-card__num,
.metric-card--alive:hover .metric-card__num {
  background: linear-gradient(120deg, #ffffff, var(--peak-glow)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}

.metric-card:hover .saas-body,
.metric-card:hover .saas-mint,
.metric-card:hover .saas-cyan,
.metric-card--alive:hover .saas-body {
  color: rgba(247, 249, 252, 0.92) !important;
}

.metric-card--alive:hover .metric-card__icon,
.metric-card:hover .metric-card__icon {
  color: var(--ascent-deep) !important;
  background: linear-gradient(145deg, var(--peak-glow), var(--secondary-soft)) !important;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 22px -10px rgba(255, 217, 168, 0.7);
}

.metric-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.35rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--peak-glow);
  background: linear-gradient(145deg, rgba(255, 217, 168, 0.2), rgba(123, 118, 196, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.metric-card__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.metric-card__num {
  font-family: var(--font-display);
  background: linear-gradient(120deg, #fff, var(--primary-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.metric-card .saas-body {
  text-align: center;
  max-width: 12rem;
  margin-inline: auto;
  color: rgba(247, 249, 252, 0.78);
  font-size: 0.92rem;
  line-height: 1.35;
}

/* ——— Scarcity / CTA ——— */
.scarcity-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 40rem;
  margin-inline: auto;
}

@media (min-width: 600px) {
  .scarcity-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.compliance-card {
  background: var(--glass-strong) !important;
  border: 1px solid rgba(28, 27, 46, 0.16) !important;
  color: var(--on-surface);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.compliance-card:hover {
  transform: translateY(-3px);
  background: linear-gradient(145deg, #ffffff, rgba(184, 232, 228, 0.45)) !important;
  border-color: rgba(61, 155, 155, 0.45) !important;
  box-shadow: 0 16px 36px -20px rgba(61, 155, 155, 0.4);
}

.cta-panel {
  border: 1px solid var(--glass-border);
  background:
    radial-gradient(ellipse at 25% 0%, rgba(123, 118, 196, 0.4), transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(61, 155, 155, 0.25), transparent 45%),
    rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  text-align: center;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.cta-panel:hover {
  border-color: rgba(184, 232, 228, 0.45);
  box-shadow: 0 24px 60px -28px rgba(61, 155, 155, 0.45);
  transform: translateY(-2px);
}

.lav-band .feature-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(28, 27, 46, 0.14);
}

.lav-band .feature-card:hover {
  background: linear-gradient(145deg, #ffffff, rgba(197, 193, 240, 0.5));
  border-color: rgba(123, 118, 196, 0.4);
  box-shadow: 0 18px 40px -22px rgba(123, 118, 196, 0.4);
  color: var(--on-surface) !important;
}

.lav-band .feature-card:hover .saas-h2 {
  color: var(--on-surface) !important;
}

.lav-band .feature-card:hover .saas-body {
  color: var(--on-surface-variant) !important;
}

.proof-item:hover .proof-item__icon {
  background: linear-gradient(145deg, var(--secondary-soft), var(--peak-glow));
}

.iki-waitlist {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
  margin-top: 1.5rem;
}

.iki-waitlist input[type="email"] {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-pearl);
  outline: none;
  box-sizing: border-box;
}

.iki-waitlist input::placeholder {
  color: var(--color-fog);
}

.iki-waitlist input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(61, 155, 155, 0.25);
}

.iki-waitlist .btn {
  width: 100%;
  justify-content: center;
  white-space: normal;
  text-align: center;
}

.iki-waitlist__msg {
  width: 100%;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--secondary-soft);
  min-height: 1.25rem;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}

.section-cta .btn {
  justify-content: center;
  text-align: center;
}

.saas-footer {
  border-top: 1px solid var(--glass-border);
  background: rgba(12, 15, 32, 0.55);
}

.saas-footer a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.saas-footer__col a:hover,
.saas-footer__col a:focus-visible,
.saas-footer__meta a:hover,
.saas-footer__meta a:focus-visible,
.saas-footer__brand .nav-bar__brand:hover,
.saas-footer__brand .nav-bar__brand:focus-visible {
  color: var(--secondary-soft, var(--color-mint));
}

.saas-footer .methz-credit a:hover,
.saas-footer .methz-credit a:focus-visible {
  opacity: 1;
  color: var(--secondary-soft, var(--color-mint));
}

.methz-credit {
  opacity: 0.35;
  font-size: 0.7rem;
}

@media (max-width: 800px) {
  .saas-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .saas-footer__brand .nav-bar__brand {
    justify-content: center;
    margin-inline: auto;
  }

  .saas-footer__col {
    text-align: center;
  }

  .saas-footer__col ul {
    justify-items: center;
  }

  .saas-footer__col a {
    justify-content: center;
  }

  .saas-footer__meta {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .saas-footer .methz-credit {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .saas-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.25rem;
  }

  .saas-footer__col:last-child {
    grid-column: auto;
  }
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-lead {
  max-width: 36rem;
  margin-inline: auto;
  margin-top: 0.85rem;
}

.iki-faq {
  max-width: 40rem;
  margin: 2rem auto 0;
  display: grid;
  gap: 0.75rem;
}

.iki-faq__item {
  border: 1px solid var(--glass-border, rgba(177, 166, 246, 0.22));
  border-radius: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(12, 15, 32, 0.35);
}

.iki-faq__item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  color: var(--color-pearl, #f5f2ff);
}

.iki-faq__item summary::-webkit-details-marker {
  display: none;
}

.iki-faq__item[open] summary {
  color: var(--secondary-soft, var(--color-mint));
  margin-bottom: 0.65rem;
}

.iki-faq__item p {
  margin: 0;
  color: var(--color-ash, #a8aec4);
  line-height: 1.55;
  font-size: 0.95rem;
}

.iki-faq__item p + p {
  margin-top: 0.75rem;
}

.iki-faq__item a {
  color: var(--secondary-soft, var(--color-mint));
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.iki-faq__item a:hover {
  opacity: 0.9;
}

/* ——— Typewriter dentro de “Em 13 idiomas” (sem bloco/fundo próprio) ——— */
.lang-pulse__line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
  min-height: 3.75rem;
  margin: 1.5rem auto 0;
  max-width: 42rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.8vw, 2.15rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--on-surface);
}

.lang-pulse__flag {
  font-size: 1.15em;
  line-height: 1;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.lang-pulse__text {
  text-wrap: balance;
}

.lang-pulse__text[dir="rtl"] {
  unicode-bidi: plaintext;
}

.lang-pulse__caret {
  display: inline-block;
  width: 0.08em;
  height: 1.05em;
  margin-left: 0.12em;
  background: var(--primary);
  border-radius: 2px;
  transform: translateY(0.08em);
  animation: lang-pulse-blink 0.9s steps(1, end) infinite;
}

@keyframes lang-pulse-blink {
  0%,
  45% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lang-pulse__caret {
    animation: none;
    opacity: 0.65;
  }
}

/* ——— Idiomas do app ——— */
.world-flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.7rem 0.95rem;
  list-style: none;
  margin: 0.15rem 0 1.5rem;
  padding: 0;
  font-size: 2rem;
  line-height: 1;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.world-flags li {
  margin: 0;
}

/* ——— Mobile: header → footer ——— */
@media (max-width: 800px) {
  body.ds-saas {
    padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  }

  .nav-bar {
    padding-top: env(safe-area-inset-top, 0px);
  }

  .nav-bar__brand img {
    height: 28px;
  }

  .nav-bar__toggle {
    min-width: 72px;
    min-height: 42px;
  }

  .nav-bar__menu {
    padding-top: 0.75rem;
  }

  .hero-ascent {
    min-height: 0;
    padding-block: 1.35rem 2rem;
  }

  .hero-ascent__inner {
    gap: 1.25rem;
  }

  .hero-ascent__kicker {
    margin-bottom: 0.7rem;
  }

  .hero-ascent .saas-display {
    margin-bottom: 0.85rem;
  }

  .hero-ascent .saas-body {
    font-size: 1.02rem;
    line-height: 1.65;
  }

  .hero-ascent__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-top: 1.35rem;
  }

  .hero-ascent__actions .btn {
    width: 100%;
  }

  .hero-ascent__note {
    margin-top: 0.85rem;
    text-align: center;
  }

  .hero-ascent__stage {
    width: min(240px, 68vw);
  }

  .padded-section {
    padding-block: 3rem;
  }

  .mb-40 {
    margin-bottom: 1.75rem;
  }

  .saas-display,
  .saas-h1,
  .saas-h2 {
    overflow-wrap: break-word;
    text-wrap: balance;
    line-height: 1.2;
  }

  .saas-body,
  .section-lead,
  .proof-item p,
  .iki-faq__item p {
    overflow-wrap: break-word;
    text-wrap: pretty;
    line-height: 1.65;
  }

  .section-lead {
    margin-top: 0.85rem;
  }

  .feature-grid,
  .feature-grid--four,
  .pricing-grid {
    display: grid !important;
    grid-template-columns: 1fr;
    overflow: visible;
    padding: 0;
    gap: 0.85rem;
  }

  .feature-card,
  .price-card {
    flex: none;
    width: 100%;
    min-height: 0;
  }

  .phone-stack {
    min-height: 0;
    margin-bottom: 0.5rem;
  }

  .phone {
    width: min(220px, 64vw);
  }

  .ascent-split .roda-live {
    width: min(100%, 20.5rem);
  }

  .step-card,
  .proof-item,
  .feature-card {
    padding: 1.05rem 1.1rem;
  }

  .section-cta {
    margin-top: 1.5rem;
  }

  .section-cta .btn {
    width: 100%;
  }

  .cta-panel {
    padding: 1.75rem 1.15rem 1.6rem;
  }

  .cta-panel .saas-body {
    line-height: 1.65;
    margin-bottom: 0.35rem;
  }

  .iki-waitlist {
    margin-top: 1.25rem;
  }

  .iki-faq {
    margin-top: 1.35rem;
  }

  .iki-faq__item {
    padding: 0.95rem 1rem;
  }

  .iki-faq__item p + p {
    margin-top: 0.9rem;
  }

  .world-flags {
    gap: 0.55rem 0.7rem;
    font-size: 1.65rem;
    margin: 0.1rem 0 1.2rem;
  }

  .scarcity-grid {
    margin-top: 1.5rem;
    text-align: left;
  }

  .saas-footer {
    padding-block: 2.5rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 420px) {
  .iki-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }
}

