/* =============================================================
   Techfala Marketing Kit — DARK premium (Craftify-inspired)
   Layers:
     - base tokens from ../../colors_and_type.css
     - this file = dark surface + glow + motion + components
   ============================================================= */

:root {
  /* Dark surface scale (techfala violet-tinted) */
  --surface-0:   #050208;   /* page bg */
  --surface-1:   #0a0512;   /* section bg */
  --surface-2:   #120826;   /* elevated card */
  --surface-3:   #1a0d33;   /* hovered card */
  --surface-4:   #221142;   /* border strong */

  --line-soft:   color-mix(in srgb, var(--brand-500) 12%, transparent);
  --line:        color-mix(in srgb, var(--brand-500) 22%, transparent);
  --line-strong: color-mix(in srgb, var(--brand-500) 38%, transparent);

  --text-hi:     #f5f0ff;
  --text-mid:    #b9afd1;
  --text-low:    #6b6484;
  --text-dim:    #463f5e;

  --glow-violet: 0 0 120px color-mix(in srgb, var(--brand-500) 55%, transparent);
  --glow-violet-sm: 0 0 40px color-mix(in srgb, var(--brand-500) 40%, transparent);
  --glow-ring: 0 0 0 1px color-mix(in srgb, var(--brand-500) 35%, transparent), 0 0 80px color-mix(in srgb, var(--brand-500) 45%, transparent);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--surface-0);
  color: var(--text-hi);
  font-family: var(--font-body);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; border: none; cursor: pointer; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ------------------------------------------- layout */
.tf-app { position: relative; z-index: 1;
  /* override design-system light tokens so dark marketing surface gets readable text */
  --fg:        var(--text-hi);
  --fg-muted:  var(--text-mid);
  --fg-subtle: var(--text-low);
  --bg:        var(--surface-0);
  --bg-soft:   var(--surface-1);
  --bg-muted:  var(--surface-2);
  color: var(--text-hi);
}
.tf-app h1, .tf-app h2, .tf-app h3, .tf-app h4, .tf-app h5 { color: var(--text-hi); }
.tf-app p { color: var(--text-mid); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 32px; }

section { position: relative; }

/* ------------------------------------------- shader canvas wrapper */
.shader-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.shader-bg canvas { width: 100%; height: 100%; display: block; opacity: 0.32; }
.shader-fade-bottom {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--surface-0) 100%);
  pointer-events: none;
}

/* ------------------------------------------- top grid pattern */
.grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--brand-500) 6%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--brand-500) 6%, transparent) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 40%, transparent 80%);
  pointer-events: none;
}

/* ------------------------------------------- global grid pattern (full site) */
.tf-app::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--brand-500) 5%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--brand-500) 5%, transparent) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

/* ------------------------------------------- glowy blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}
.blob.violet { background: radial-gradient(circle, var(--brand-500) 0%, transparent 70%); }
.blob.indigo { background: radial-gradient(circle, #6714c6 0%, transparent 70%); }
.blob.pink   { background: radial-gradient(circle, #d946ef 0%, transparent 70%); }

/* ------------------------------------------- nav */
.tf-nav {
  position: sticky; top: 16px;
  z-index: 80;
  padding-inline: 32px;
}
.tf-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 10px 10px 20px;
  background: rgba(10, 5, 18, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px -12px color-mix(in srgb, var(--brand-500) 25%, transparent), inset 0 1px 0 rgba(255,255,255,0.06);
}
.tf-nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; font-family: var(--font-display); }
.tf-nav-logo img { width: 28px; height: 28px; }
.tf-nav-links { display: flex; gap: 4px; margin-inline: auto; }
.tf-nav-links a {
  font-size: 14px;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 180ms var(--ease-standard);
}
.tf-nav-links a:hover { color: var(--text-hi); background: rgba(255,255,255,0.04); }
.tf-nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  background: var(--brand-500);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  transition: all 200ms var(--ease-standard);
  box-shadow: 0 8px 24px -8px color-mix(in srgb, var(--brand-500) 60%, transparent);
}
.tf-nav-cta:hover { background: var(--brand-400); transform: translateY(-1px); }
.tf-nav-login {
  color: var(--text-mid);
  font-size: 14px;
  padding: 10px 14px;
  transition: color 180ms;
}
.tf-nav-login:hover { color: var(--text-hi); }

/* ------------------------------------------- pill / badge */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand-500) 8%, transparent);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-hi);
  backdrop-filter: blur(8px);
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-400); box-shadow: 0 0 10px var(--brand-500); }

/* ------------------------------------------- hero */
.hero {
  position: relative;
  padding: 59px 0 116px;        /* respiro superior -20% adicional (74 → 59) */
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--text-hi);
  margin: 28px 0 24px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, var(--brand-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .sub {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.55;
}

.hero-ctas { display: inline-flex; gap: 12px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  background: var(--brand-500);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px;
  transition: all 200ms var(--ease-standard);
  box-shadow: 0 10px 30px -10px color-mix(in srgb, var(--brand-500) 70%, transparent), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover { background: var(--brand-400); transform: translateY(-1px); box-shadow: 0 16px 40px -12px color-mix(in srgb, var(--brand-500) 80%, transparent), inset 0 1px 0 rgba(255,255,255,0.2); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  background: rgba(255,255,255,0.04);
  color: var(--text-hi);
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 200ms var(--ease-standard);
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: var(--line); }

/* hero screenshot with glow frame */
.hero-mock {
  position: relative;
  margin: 72px auto 0;
  max-width: 1100px;
  padding: 0 20px;
}
.hero-mock-glow {
  position: absolute;
  inset: -50px -30px -80px -30px;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, color-mix(in srgb, var(--brand-500) 70%, transparent) 0%, color-mix(in srgb, var(--brand-500) 20%, transparent) 40%, transparent 70%);
  filter: blur(60px);
  z-index: -1;
}
.browser-frame {
  background: #050208;
  border: 1px solid var(--line-strong);
  border-radius: 16px 16px 12px 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 40px 80px -20px color-mix(in srgb, var(--brand-500) 40%, transparent),
    0 80px 120px -40px color-mix(in srgb, var(--brand-500) 30%, transparent);
}
.browser-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #120826 0%, #0a0512 100%);
  border-bottom: 1px solid var(--line-soft);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 11px; height: 11px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-url {
  margin-left: 20px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-mid);
  font-family: var(--font-mono);
  flex: 1;
  max-width: 380px;
  text-align: left;
}
.browser-body { position: relative; background: #fff; }
.browser-body img { display: block; width: 100%; height: auto; }

/* tab switcher above mock */
.mock-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  background: rgba(10, 5, 18, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  margin-bottom: 24px;
}
.mock-tabs button {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 999px;
  transition: all 180ms var(--ease-standard);
}
.mock-tabs button:hover { color: var(--text-hi); }
.mock-tabs button.active {
  color: #fff;
  background: var(--brand-500);
  box-shadow: 0 4px 16px -4px color-mix(in srgb, var(--brand-500) 60%, transparent);
}

/* ------------------------------------------- trusted-by row */
.trusted-row {
  padding: 100px 0 40px;
  text-align: center;
}
.trusted-label {
  font-size: 13px;
  color: var(--text-low);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 56px;
  opacity: 0.55;
}
.trusted-logos .brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ------------------------------------------- features section */
.features {
  padding: 120px 0;
  position: relative;
}
.features-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.features-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-hi);
  margin-bottom: 20px;
}
.features-head p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.55;
}

.features-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 56px;
}
.features-cta-kicker {
  font-size: 14px;
  color: var(--text-mid);
  letter-spacing: 0.01em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.feat-card {
  position: relative;
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-500) 8%, transparent) 0%, color-mix(in srgb, var(--brand-500) 2%, transparent) 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  overflow: hidden;
  transition: border-color 220ms var(--ease-standard), transform 220ms var(--ease-standard);
}
.feat-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.feat-card .icon-pill {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand-500) 30%, transparent), color-mix(in srgb, var(--brand-500) 10%, transparent));
  border: 1px solid var(--line-strong);
  margin-bottom: 20px;
  color: var(--brand-200);
}
.feat-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-hi);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.feat-card p { font-size: 14.5px; color: var(--text-mid); line-height: 1.6; margin: 0; }

.feat-visual {
  margin-top: 28px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #0a0512;
}
.feat-visual img { width: 100%; display: block; }

/* grid positions */
.c6 { grid-column: span 6; }
.c4 { grid-column: span 4; }
.c8 { grid-column: span 8; }
.c12 { grid-column: span 12; }

/* ------------------------------------------- how it works steps */
.steps {
  padding: 120px 0;
  position: relative;
}
.steps-head { text-align: center; max-width: 1080px; margin: 0 auto 64px; }
.steps-head h2 { white-space: nowrap; text-wrap: nowrap; }
.steps-head h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-hi);
  margin-bottom: 20px;
  line-height: 1.08;
}
.steps-head p { color: var(--text-mid); font-size: 17px; }

.steps-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  padding: 28px;
  background: color-mix(in srgb, var(--brand-500) 4%, transparent);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  position: relative;
}
.step .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand-400);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-hi);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.step p { font-size: 14px; color: var(--text-mid); line-height: 1.55; margin: 0; }

/* ------------------------------------------- pricing */
.pricing {
  padding: 120px 0;
  position: relative;
}
.pricing-head { text-align: center; max-width: 820px; margin: 0 auto 48px; }
.pricing-head h2 { text-wrap: balance; }
.pricing-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-hi);
  margin-bottom: 16px;
}
.pricing-head p { color: var(--text-mid); font-size: 17px; margin-bottom: 32px; }

.pricing-toggle {
  display: inline-flex;
  padding: 4px;
  background: rgba(10, 5, 18, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.pricing-toggle button {
  position: relative;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 999px;
  transition: color 200ms, background 200ms;
}
.pricing-toggle button.active {
  color: #fff;
  background: var(--brand-500);
  box-shadow: 0 4px 16px -4px color-mix(in srgb, var(--brand-500) 50%, transparent);
}
.pricing-toggle .save-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--brand-300);
  margin-left: 6px;
  padding: 2px 6px;
  background: color-mix(in srgb, var(--brand-500) 15%, transparent);
  border-radius: 4px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 56px auto 0;
}

.plan {
  position: relative;
  padding: 36px 32px;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface-1) 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  display: flex; flex-direction: column;
}
.plan.featured {
  border-color: color-mix(in srgb, var(--brand-500) 50%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-500) 12%, transparent) 0%, var(--surface-2) 80%);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--brand-500) 30%, transparent),
    0 30px 80px -20px color-mix(in srgb, var(--brand-500) 45%, transparent);
}
.plan .tag {
  position: absolute;
  top: -12px; left: 32px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--brand-500);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 6px 20px -4px color-mix(in srgb, var(--brand-500) 60%, transparent);
}
.plan h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-hi);
  margin: 0 0 8px;
}
.plan .desc { font-size: 14px; color: var(--text-mid); line-height: 1.5; min-height: 42px; margin: 0 0 20px; }

.plan .price-wrap {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 8px;
}
.plan .price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-hi);
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan .price-prefix { font-size: 20px; color: var(--text-mid); font-weight: 500; }
.plan .price-period { font-size: 14px; color: var(--text-low); }
.plan .price-note { font-size: 12px; color: var(--text-low); margin-bottom: 24px; }

.plan .cta {
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 200ms var(--ease-standard);
  text-align: center;
}
.plan:not(.featured) .cta {
  background: rgba(255,255,255,0.06);
  color: var(--text-hi);
  border: 1px solid rgba(255,255,255,0.08);
}
.plan:not(.featured) .cta:hover { background: rgba(255,255,255,0.1); }
.plan.featured .cta {
  background: var(--brand-500);
  color: #fff;
  box-shadow: 0 10px 30px -8px color-mix(in srgb, var(--brand-500) 60%, transparent);
}
.plan.featured .cta:hover { background: var(--brand-400); }

.plan ul {
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line-soft);
  list-style: none;
}
.plan ul li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 7px 0;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.45;
}
.plan ul li .check {
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 2px;
  color: var(--brand-400);
}
.plan ul li.head {
  font-weight: 600;
  color: var(--text-hi);
  padding-bottom: 4px;
}

/* ------------------------------------------- testimonial */
.quote-section {
  padding: 120px 0;
  position: relative;
}
.quote-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 56px 48px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-500) 8%, transparent) 0%, transparent 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-card::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--brand-500) 30%, transparent), transparent 70%);
  filter: blur(40px);
  transform: translateX(-50%);
}
.quote-text {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  color: var(--text-hi);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
}
.quote-text .hl {
  color: var(--brand-400);
  background: linear-gradient(180deg, var(--brand-200), var(--brand-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.quote-author {
  position: relative;
  display: inline-flex; align-items: center; gap: 14px;
}
.quote-author .av {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-800));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.quote-author .who { text-align: left; }
.quote-author .who strong { color: var(--text-hi); font-weight: 600; font-size: 15px; display: block; }
.quote-author .who span { color: var(--text-low); font-size: 13px; }

/* ------------------------------------------- final cta */
.final-cta {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta-inner {
  position: relative;
  z-index: 2;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--text-hi);
  margin: 24px 0 28px;
  text-wrap: balance;
}
.final-cta p {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 40px;
}
.final-cta-arc {
  position: absolute;
  bottom: -240px; left: 50%;
  width: 1000px; height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 50% 50% at 50% 50%, color-mix(in srgb, var(--brand-500) 80%, transparent) 0%, color-mix(in srgb, var(--brand-500) 30%, transparent) 30%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

/* ------------------------------------------- footer */
.tf-footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line-soft);
  background: var(--surface-0);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .logo-row img { width: 32px; height: 32px; }
.footer-brand .logo-row strong { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.footer-brand p { font-size: 14px; color: var(--text-low); line-height: 1.6; max-width: 300px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-mid);
  transition: all 200ms;
}
.footer-social a:hover { color: var(--text-hi); background: color-mix(in srgb, var(--brand-500) 15%, transparent); border-color: var(--line); }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-low);
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--text-mid);
  transition: color 180ms;
}
.footer-col ul a:hover { color: var(--text-hi); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-low);
}
.footer-bottom .meta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(24, 119, 242, 0.1);
  border: 1px solid rgba(24, 119, 242, 0.2);
  border-radius: 999px;
  color: #8ab4f8;
  font-size: 12px;
}

/* ------------------------------------------- marquee (small) */
.marquee-strip {
  padding: 40px 0;
  border-block: 1px solid var(--line-soft);
  overflow: hidden;
  background: rgba(10, 5, 18, 0.4);
  position: relative;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 56px;
  animation: marq 40s linear infinite;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.marquee-track span.star { color: var(--brand-500); }
@keyframes marq { to { transform: translateX(-50%); } }

/* ------------------------------------------- utils */
.glow-ring { box-shadow: var(--glow-ring); }
.vignette::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 30%, var(--surface-0) 90%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 960px) {
  .features-grid, .steps-list, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
  .c6, .c4, .c8 { grid-column: span 1; }
  .tf-nav-links { display: none; }
}

/* =============================================================
   V2 — Hero 2-col + new sections
   ============================================================= */

/* -- Hero 2-col -- */
.hero-inner2 {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 30px;           /* -20% adicional (37 → 30) */
}
.hero-copy { text-align: left; }
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 32px 0 26px;
  text-wrap: balance;
}
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, var(--brand-400) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-tag {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--text-hi);
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  opacity: 0.85;
}
.hero-copy .sub {
  text-align: left;
  margin: 0 0 40px;
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 440px;            /* constrangido até a borda direita do "WhatsApp." do h1 */
}
.hero-copy .pill { margin-bottom: 4px; }
.hero-copy .hero-ctas { gap: 16px; }
.hero-ctas.center { justify-content: center; }
.hero-micro {
  font-size: 13px;
  color: var(--text-low);
  margin: 14px 0 28px;
}
.hero-micro-soft {
  color: var(--text-dim);
  opacity: 0.75;
  font-size: 12.5px;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 18px;
  font-size: 13px;
  color: var(--text-mid);
}
.hero-trust span {
  display: inline-flex; align-items: center; gap: 7px;
}
.hero-trust svg { color: var(--brand-300); }

/* -- Hero product demo mock -- */
.hero-right {
  position: relative;
  align-self: end;              /* ancora no bottom do grid cell */
  margin-bottom: -116px;        /* compensa padding-bottom da .hero pra imagem tocar a borda */
  width: 100%;
}

/* ═════════ JARVIS HERO — imagem única grande, colada na borda inferior ═════════
   A arte v2 já traz Jarvis + dashboard + ícones + tags. Sem aspect-ratio fixo:
   a imagem assume a própria proporção e desce até o final da section (corte na borda). */
.jx-stage {
  position: relative;
  width: 135%;                  /* -25% do tamanho anterior (180→135) */
  max-width: 918px;             /* -25% (1224→918) */
  margin-left: auto;
  margin-right: -40px;
  transform: translateX(-17%);  /* desloca 17% pra esquerda */
  isolation: isolate;
}
.jx-glow {
  position: absolute;
  left: 10%; right: 10%;
  top: 18%; bottom: 10%;
  background:
    radial-gradient(ellipse at 50% 55%,
      color-mix(in srgb, var(--brand-500) 32%, transparent) 0%,
      color-mix(in srgb, var(--brand-500) 14%, transparent) 45%,
      transparent 72%);
  filter: blur(70px);
  z-index: 0;
  animation: jx-pulse 8s ease-in-out infinite;
}
@keyframes jx-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 0.85; transform: scale(1.06); }
}

.jx-photo {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.5));
}

/* Play overlay — posicionado EXATAMENTE sobre o botão desenhado no PNG
   jarvis-dash.png: botão em (820, 380) de 1176x1080 = (69.7%, 35.2%) */
.jx-play {
  position: absolute;
  left: 69.7%; top: 35.2%;
  width: 10.4%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-decoration: none;
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.jx-play:hover { transform: translate(-50%, -50%) scale(1.06); }
.jx-play:active { transform: translate(-50%, -50%) scale(0.97); }
.jx-play:focus-visible { outline: 3px solid var(--brand-400); outline-offset: 6px; border-radius: 50%; }

.jx-play-core {
  position: relative;
  z-index: 3;
  width: 78%; height: 78%;           /* core grande pra cobrir 100% o botão do PNG abaixo */
  border-radius: 50%;
  display: grid; place-items: center;
  background: #ffffff;                /* opaco — esconde o botão da imagem */
  color: var(--brand-600);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 2px 0 rgba(255, 255, 255, 0.8) inset,
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}
.jx-play-core svg {
  width: 44%; height: 44%;
  margin-left: 4%;
}

.jx-play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: radial-gradient(circle, color-mix(in srgb, var(--brand-500) 25%, transparent) 0%, transparent 65%);
  animation: jx-play-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
.jx-play-ring-2 {
  animation-delay: 1.2s;
}
@keyframes jx-play-pulse {
  0%   { transform: scale(0.85); opacity: 0.75; }
  70%  { transform: scale(1.35); opacity: 0;    }
  100% { transform: scale(1.35); opacity: 0;    }
}
@media (prefers-reduced-motion: reduce) {
  .jx-play-ring, .jx-play-ring-2 { animation: none; opacity: 0.5; transform: scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
  .jx-glow { animation: none; }
}
@media (max-width: 900px) {
  .jx-stage { width: 100%; max-width: 780px; margin-inline: auto; }
  .hero-right { margin-bottom: 0; align-self: auto; }
}

.hd-mock {
  position: relative;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 16px;
  padding: 18px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-500) 8%, transparent), color-mix(in srgb, var(--brand-500) 2%, transparent));
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 40px 80px -20px color-mix(in srgb, var(--brand-500) 45%, transparent),
    0 0 100px -10px color-mix(in srgb, var(--brand-500) 30%, transparent);
}
.hd-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, color-mix(in srgb, var(--brand-500) 35%, transparent), transparent 70%);
  filter: blur(50px);
  z-index: -1;
}
.hd-phone {
  background: #0a0512;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  height: 520px;
}
.hd-phone-bar {
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-500) 12%, transparent), color-mix(in srgb, var(--brand-500) 2%, transparent));
  border-bottom: 1px solid var(--line-soft);
}
.hd-phone-av {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff; font-weight: 700; font-family: var(--font-display);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.hd-phone-bar strong { display: block; font-size: 13px; color: var(--text-hi); font-weight: 600; }
.hd-online {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; color: var(--text-low); font-family: var(--font-mono);
}
.hd-online .dot { width: 5px; height: 5px; border-radius: 50%; background: #25d366; box-shadow: 0 0 6px #25d366; }
.hd-phone-feed {
  flex: 1;
  padding: 14px 12px;
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
  justify-content: flex-end;
  background:
    radial-gradient(ellipse 70% 40% at 50% 100%, color-mix(in srgb, var(--brand-500) 6%, transparent), transparent 60%),
    #060210;
}
.hd-bub {
  max-width: 85%;
  padding: 8px 11px 18px;
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.35;
  color: #f5f0ff;
  position: relative;
  animation: hd-in 320ms cubic-bezier(.2,.8,.2,1);
}
.hd-bub.user {
  align-self: flex-end;
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(37, 211, 102, 0.35);
}
.hd-bub.ai {
  align-self: flex-start;
  background: color-mix(in srgb, var(--brand-500) 22%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand-500) 40%, transparent);
}
.hd-bub .hd-bt {
  position: absolute;
  bottom: 4px; right: 10px;
  font-size: 9px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-mono);
}
.hd-typing { padding: 10px 14px; display: inline-flex; gap: 4px; }
.hd-typing span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--brand-300);
  animation: fa-bounce 1.2s ease-in-out infinite;
}
.hd-typing span:nth-child(2) { animation-delay: 0.15s; }
.hd-typing span:nth-child(3) { animation-delay: 0.3s; }
.hd-phone-input {
  padding: 10px 12px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-low);
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--line-soft);
}
@keyframes hd-in {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

/* Side panel */
.hd-side { display: grid; gap: 12px; align-content: start; }
.hd-card {
  background: #0a0512;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px;
}
.hd-card-head {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.08em;
  color: var(--text-low);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hd-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-400); box-shadow: 0 0 10px var(--brand-500); }
.hd-live {
  margin-left: auto;
  padding: 2px 6px;
  background: rgba(255,40,80,0.15);
  color: #ff5b72;
  border-radius: 4px;
  font-size: 9px;
}
.hd-funnel { display: grid; gap: 6px; }
.hd-stage {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 11px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-mid);
  background: color-mix(in srgb, var(--brand-500) 3%, transparent);
  transition: all 300ms;
}
.hd-stage strong { color: var(--text-hi); font-family: var(--font-mono); font-size: 12px; }
.hd-stage.on { border-color: var(--line); background: color-mix(in srgb, var(--brand-500) 8%, transparent); }
.hd-stage.hot { border-color: rgba(255,91,114,0.35); background: rgba(255,91,114,0.08); color: #ff8ca0; }
.hd-stage.hot strong { color: #ff8ca0; }
.hd-stage.win { border-color: rgba(37,211,102,0.35); background: rgba(37,211,102,0.08); color: #6ee7a4; }
.hd-stage.win strong { color: #6ee7a4; }
.hd-stage.handoff { border-color: rgba(138, 180, 248, 0.35); background: rgba(138, 180, 248, 0.08); color: #8ab4f8; }
.hd-stage.handoff strong { color: #8ab4f8; }

.hd-event-list { display: grid; gap: 6px; }
.hd-event {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 9px;
  font-size: 11.5px;
  color: var(--text-mid);
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  animation: hd-in 320ms;
}
.hd-event.tag { color: #ff8ca0; border-color: rgba(255,91,114,0.2); background: rgba(255,91,114,0.06); }
.hd-event.muted { color: var(--text-low); justify-content: center; padding: 14px; }
.hd-e-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-400); box-shadow: 0 0 8px var(--brand-500); animation: fa-pulse 1.6s ease-in-out infinite; }

.hd-metric {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand-500) 12%, transparent), color-mix(in srgb, var(--brand-500) 2%, transparent));
  border: 1px solid var(--line);
  border-radius: 14px;
}
.hd-metric-lbl { font-size: 12px; color: var(--text-mid); }
.hd-metric-val { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text-hi); }

/* -- Metrics bar -- */
.metrics-bar {
  padding: 44px 0 32px;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg,
      color-mix(in srgb, var(--brand-500) 6%, var(--surface-1)) 0%,
      color-mix(in srgb, var(--brand-500) 2%, var(--surface-1)) 100%);
  position: relative; z-index: 3;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 -10px 40px -20px rgba(0, 0, 0, 0.6),
    0 12px 40px -20px rgba(0, 0, 0, 0.6);
}
.metrics-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--surface-1);
  z-index: -1;
}
.metrics-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-bottom: 24px;
}
.metric {
  padding: 14px 16px;
  border-right: 1px solid var(--line-soft);
  text-align: center;
}
.metric:last-child { border-right: none; }
.metric .mi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  margin: 0 auto 10px;
  border-radius: 14px;
  color: var(--brand-300);
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--brand-500) 18%, transparent),
    color-mix(in srgb, var(--brand-500) 4%, transparent));
  border: 1px solid color-mix(in srgb, var(--brand-500) 30%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 22px -8px color-mix(in srgb, var(--brand-500) 55%, transparent);
}
.metric .mi svg { width: 25px; height: 25px; }
.metric .mv {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, var(--brand-400) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.metric .ml {
  margin-top: 5px;
  font-size: 12.5px;
  color: var(--text-mid);
}
.metrics-logos {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-direction: column; align-items: center;
  gap: 18px;
}
.metrics-logos .mlbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-low);
}
.metrics-logos .brand-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 4%, black 96%, transparent 100%);
}
.metrics-logos .brand-track {
  display: flex; align-items: center;
  gap: 56px;
  width: max-content;
  animation: tf-marquee 38s linear infinite;
  opacity: 0.55;
  filter: saturate(0.6);
}
.metrics-logos .brand-marquee:hover .brand-track { animation-play-state: paused; }
@keyframes tf-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.metrics-logos .brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  flex-shrink: 0;
}
.metrics-logos .brand img {
  height: 26px;
  width: auto;
  max-width: 140px;
  display: block;
  object-fit: contain;
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .metrics-logos .brand-track { animation: none; }
}

/* -- Pain section -- */
.pain { padding: 120px 0; position: relative; }
.pain-head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.pain-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 20px 0 0;
  text-wrap: balance;
}
.pain-head h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, var(--brand-400) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pain-grid {
  display: grid; grid-template-columns: 1fr 60px 1fr; gap: 20px;
  align-items: stretch;
}
.pain-card {
  padding: 32px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
}
.pain-card.before {
  background: rgba(255, 91, 114, 0.03);
  border-color: rgba(255, 91, 114, 0.15);
}
.pain-card.after {
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-500) 10%, transparent), color-mix(in srgb, var(--brand-500) 2%, transparent));
  border-color: var(--line);
  box-shadow: 0 20px 60px -20px color-mix(in srgb, var(--brand-500) 35%, transparent);
}
.pain-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(255, 91, 114, 0.1);
  color: #ff8ca0;
  margin-bottom: 20px;
}
.pain-tag.accent {
  background: color-mix(in srgb, var(--brand-500) 15%, transparent);
  color: var(--brand-300);
}
.pain-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.pain-card li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.45;
}
.pain-card li .x, .pain-card li .ok {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.pain-card li .x { background: rgba(255, 91, 114, 0.15); color: #ff8ca0; }
.pain-card li .ok { background: rgba(37, 211, 102, 0.15); color: #6ee7a4; }
.pain-card.after li { color: var(--text-hi); }
.pain-vs {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--brand-400);
  font-weight: 300;
}
.pain-close {
  text-align: center;
  margin: 48px auto 0;
  max-width: 680px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-mid);
  line-height: 1.45;
  letter-spacing: -0.01em;
}

/* -- Bento grid (replaces features-grid styling for new layout) -- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.bento {
  position: relative;
  background:
    linear-gradient(180deg,
      color-mix(in srgb, var(--brand-500) 12%, rgba(10, 5, 18, 0.55)) 0%,
      color-mix(in srgb, var(--brand-500) 4%, rgba(10, 5, 18, 0.65)) 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 28px;
  overflow: hidden;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 220ms, transform 220ms;
}
.bento:hover {
  border-color: var(--line-strong);
}
.bento .icon-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand-500) 25%, transparent), color-mix(in srgb, var(--brand-500) 6%, transparent));
  border: 1px solid var(--line);
  margin-bottom: 16px;
  color: var(--brand-200);
}
.bento .icon-pill svg { width: 24px; height: 24px; }
.bento .icon-pill.green { background: linear-gradient(135deg, rgba(37,211,102,0.25), rgba(37,211,102,0.04)); border-color: rgba(37,211,102,0.25); color: #6ee7a4; }
.bento h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  color: var(--text-hi);
  margin: 0 0 8px; letter-spacing: -0.02em;
}
.bento p { font-size: 14px; color: var(--text-mid); line-height: 1.55; margin: 0 0 16px; }
.bento-visual { margin-top: 8px; border-radius: 10px; overflow: hidden; border: 1px solid var(--line-soft); }
.bento-visual.short .fa-wrap { height: 180px; }
.bento-stack { display: grid; gap: 20px; align-content: stretch; }
.bento-stack .bento { height: 100%; }
.c5 { grid-column: span 5; }
.c3 { grid-column: span 3; }
.c7 { grid-column: span 7; }

.bento-mini-flow {
  display: flex; align-items: center; gap: 12px;
  padding: 16px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--brand-500) 4%, transparent);
  border: 1px solid var(--line-soft);
}
.mf-node {
  padding: 8px 14px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--brand-500) 15%, transparent);
  color: var(--brand-300);
  font-family: var(--font-mono);
  font-size: 12px;
}
.mf-node.hot { background: rgba(255,91,114,0.12); color: #ff8ca0; }
.mf-arrow { color: var(--text-low); font-size: 16px; }

.bento-seal {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(24, 119, 242, 0.1);
  border: 1px solid rgba(24, 119, 242, 0.22);
  color: #8ab4f8;
  font-size: 12.5px;
  font-family: var(--font-mono);
}

/* -- Quote card 2-col -- */
.quote-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  text-align: left;
  padding: 48px;
  max-width: 1040px;
}
.quote-main .quote-text {
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 20px 0 28px;
}
.quote-stat {
  padding: 32px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-500) 15%, transparent), color-mix(in srgb, var(--brand-500) 2%, transparent));
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  gap: 12px;
}
.qs-big {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, var(--brand-400) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.qs-lbl { font-size: 13px; color: var(--text-mid); line-height: 1.4; }
.btn-primary.small { padding: 10px 18px; font-size: 13px; margin-top: 8px; }

/* -- All-in-one compare table -- */
.allinone { padding: 120px 0; }
.allinone-head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.allinone-head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.08;
  margin: 20px 0 20px;
}
.allinone-head h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, var(--brand-400) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.allinone-head p { color: var(--text-mid); font-size: 17px; max-width: 700px; margin: 0 auto; line-height: 1.55; }

.compare-card {
  max-width: 1120px; margin: 0 auto;
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-500) 5%, transparent), color-mix(in srgb, var(--brand-500) 1%, transparent));
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.compare-head, .compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1.2fr 1.4fr;
  align-items: center;
}
.compare-head {
  padding: 18px 28px;
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-low);
  background: color-mix(in srgb, var(--brand-500) 8%, transparent);
  border-bottom: 1px solid var(--line);
}
.compare-head .tf-col {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brand-300);
}
.compare-head .tf-col img { width: 18px; height: 18px; }
.compare-row {
  padding: 18px 28px;
  border-bottom: 1px solid var(--line-soft);
  transition: background 180ms;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: color-mix(in srgb, var(--brand-500) 3%, transparent); }
.cr-need { font-weight: 600; color: var(--text-hi); font-size: 14.5px; }
.cr-common { font-size: 14px; color: var(--text-mid); }
.cr-logos { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cr-logo {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 2px 10px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: transform 180ms ease, box-shadow 180ms ease;
  padding: 3px;
  overflow: hidden;
  flex-shrink: 0;
}
.cr-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.compare-row:hover .cr-logo { box-shadow: 0 4px 14px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.7); }
.cr-logo:hover { transform: translateY(-1px); }
.cr-cost { font-family: var(--font-mono); font-size: 13px; color: var(--text-mid); }
.cr-tf { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: #6ee7a4; }
.cr-check {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(37,211,102,0.15);
  color: #6ee7a4;
}

.savings-strip {
  max-width: 1120px; margin: 40px auto 0;
  display: grid; grid-template-columns: 1fr 60px 1fr; gap: 20px;
  align-items: stretch;
}
.savings-col {
  padding: 32px;
  border-radius: 18px;
  border: 1px solid var(--line);
  text-align: center;
}
.savings-col.common {
  background: rgba(255, 91, 114, 0.04);
  border-color: rgba(255, 91, 114, 0.18);
}
.savings-col.tf {
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-500) 18%, transparent), color-mix(in srgb, var(--brand-500) 4%, transparent));
  box-shadow: 0 30px 70px -20px color-mix(in srgb, var(--brand-500) 45%, transparent);
}
.sv-lbl {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-low); margin-bottom: 14px;
}
.savings-col.common .sv-val {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  color: #ff8ca0;
}
.savings-col.tf .sv-val {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, var(--brand-400) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sv-pre { font-size: 0.6em; color: var(--text-mid); margin-right: 6px; font-weight: 500; }
.sv-to { font-size: 0.5em; color: var(--text-low); margin: 0 6px; font-weight: 400; }
.sv-suf { font-size: 0.55em; color: var(--text-mid); font-weight: 500; }
.sv-sub { margin-top: 12px; font-size: 13px; color: var(--text-low); }
.savings-vs {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  color: var(--text-low);
  font-size: 20px; font-style: italic;
}
.allinone-foot {
  max-width: 1120px; margin: 32px auto 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.allinone-foot .micro { color: var(--text-low); font-size: 13px; margin: 0; }

/* -- Founder -- */
.founder { padding: 120px 0; }
.founder-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.founder-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.08;
  margin: 20px 0 28px;
  text-wrap: nowrap;
}
.founder-copy h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, var(--brand-400) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.founder-list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 16px; }
.founder-list li {
  display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: flex-start;
  color: var(--text-mid); font-size: 15px; line-height: 1.5;
}
.founder-list strong { color: var(--text-hi); font-weight: 600; display: block; }
.fk {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--brand-300); letter-spacing: 0.06em;
  padding-top: 2px;
}
.founder-sig { color: var(--text-low); font-size: 13.5px; margin: 0; font-style: italic; }

.founder-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.founder-cta-micro {
  font-size: 12px;
  color: var(--text-low);
  letter-spacing: 0.01em;
}

.founder-video { position: relative; }
.fv-thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #1a0d33, #050208);
  box-shadow: 0 40px 80px -20px color-mix(in srgb, var(--brand-500) 40%, transparent);
}
.fv-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.fv-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 40%, transparent 30%, rgba(5, 2, 8, 0.55) 90%),
    linear-gradient(180deg, transparent 50%, rgba(5, 2, 8, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.fv-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand-500) 90%, transparent);
  border: 3px solid #fff;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 50px -10px color-mix(in srgb, var(--brand-500) 80%, transparent);
  cursor: pointer;
  z-index: 2;
  transition: transform 200ms;
}
.fv-play:hover { transform: translate(-50%, -50%) scale(1.05); }
.fv-caption {
  position: absolute; left: 20px; right: 20px; bottom: 64px;
  z-index: 2;
}
.fv-cap-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,91,114,0.2);
  color: #ff8ca0;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.fv-cap-txt {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 500;
  color: #fff; line-height: 1.35;
  text-wrap: balance;
  max-width: 380px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.fv-controls {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  display: flex; align-items: center; gap: 12px;
  z-index: 2;
  font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.7);
}
.fv-bar { flex: 1; height: 3px; background: rgba(255,255,255,0.2); border-radius: 999px; overflow: hidden; }
.fv-prog { display: block; width: 12%; height: 100%; background: #fff; border-radius: 999px; }
.fv-cc { padding: 2px 6px; border: 1px solid rgba(255,255,255,0.4); border-radius: 4px; }
.fv-sig {
  margin-top: 16px;
  display: flex; align-items: center; gap: 12px;
}
.fv-av {
  width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--brand-500) 50%, transparent);
  flex-shrink: 0;
}
.fv-av img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.fv-sig strong { display: block; color: var(--text-hi); font-size: 14px; font-weight: 600; }
.fv-sig span { color: var(--text-low); font-size: 12.5px; }

/* -- Halo / Ecosystem -- */
.halo { padding: 80px 0; background: rgba(10, 5, 18, 0.6); border-block: 1px solid var(--line-soft); }
.halo-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.pill.small { font-size: 12px; padding: 5px 11px; }
.halo-head h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600; letter-spacing: -0.02em;
  margin: 16px 0 10px;
  color: var(--text-hi);
}
.halo-head h3 em {
  font-style: normal;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, var(--brand-400) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.halo-head p { color: var(--text-mid); font-size: 15px; }
.halo-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
  max-width: 1000px; margin: 0 auto;
}
.halo-card {
  padding: 18px 18px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: color-mix(in srgb, var(--brand-500) 2%, transparent);
  text-align: center;
  transition: all 200ms;
}
.halo-card:hover { border-color: var(--line); background: color-mix(in srgb, var(--brand-500) 6%, transparent); }
.halo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  margin: 0 auto 10px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-800));
  box-shadow: 0 0 12px var(--brand-500);
}
.halo-card strong { display: block; color: var(--text-hi); font-size: 14px; font-weight: 600; font-family: var(--font-display); margin-bottom: 4px; }
.halo-card span { display: block; color: var(--text-low); font-size: 11.5px; line-height: 1.35; }

/* -- Guarantees -- */
.guarantees { padding: 120px 0; }
.guar-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.guar-head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.05;
  margin: 20px 0 0;
}
.guar-head h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, var(--brand-400) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.guar-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
  max-width: 1180px; margin: 0 auto;
}
.guar-card {
  padding: 24px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-500) 6%, transparent), color-mix(in srgb, var(--brand-500) 1%, transparent));
  text-align: left;
  display: flex; flex-direction: column; gap: 10px;
}
.guar-ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand-500) 25%, transparent), color-mix(in srgb, var(--brand-500) 6%, transparent));
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand-200);
  margin-bottom: 4px;
}
.guar-card strong {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600; color: var(--text-hi);
  line-height: 1.25;
}
.guar-card span { font-size: 13px; color: var(--text-mid); line-height: 1.45; }

/* -- FAQ -- */
.faq { padding: 120px 0; }
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.05;
  margin: 20px 0 0;
}
.faq-head h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, var(--brand-400) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.faq-list { display: grid; gap: 10px; }
.faq-item {
  display: block; width: 100%;
  padding: 20px 26px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--brand-500) 4%, transparent);
  border: 1px solid var(--line-soft);
  text-align: left;
  cursor: pointer;
  transition: all 200ms;
}
.faq-item:hover { border-color: var(--line); background: color-mix(in srgb, var(--brand-500) 7%, transparent); }
.faq-item.open { border-color: var(--line-strong); background: color-mix(in srgb, var(--brand-500) 8%, transparent); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500; color: var(--text-hi);
}
.faq-chev { color: var(--brand-300); transition: transform 300ms; }
.faq-item.open .faq-chev { transform: rotate(180deg); }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 320ms cubic-bezier(.2,.8,.2,1);
}
.faq-a > p {
  overflow: hidden;
  margin: 0;
  color: var(--text-mid);
  font-size: 14.5px;
  line-height: 1.6;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a > p { margin-top: 14px; }

/* -- Enterprise / Sob medida card (abaixo do grid de planos) -- */
.enterprise-card {
  margin: 48px auto 0;
  max-width: 1120px;
  padding: 32px 36px;
  border-radius: 20px;
  background:
    linear-gradient(135deg,
      color-mix(in srgb, var(--brand-500) 16%, transparent) 0%,
      color-mix(in srgb, var(--brand-500) 4%, transparent) 60%,
      transparent 100%),
    color-mix(in srgb, var(--surface-2) 85%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand-500) 28%, transparent);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.enterprise-card::before {
  content: '';
  position: absolute;
  inset: -40% auto auto -10%;
  width: 60%; height: 180%;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--brand-500) 22%, transparent) 0%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.enterprise-card > * { position: relative; z-index: 1; }

.ec-left { display: flex; flex-direction: column; gap: 10px; }
.ec-badge {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand-300);
  padding: 5px 10px;
  border: 1px solid color-mix(in srgb, var(--brand-500) 35%, transparent);
  border-radius: 999px;
  display: inline-flex; align-items: center;
  width: fit-content;
}
.ec-left h3 { font-size: 26px; color: var(--text-hi); margin: 0; line-height: 1.15; }
.ec-desc { color: var(--text-mid); font-size: 14.5px; line-height: 1.55; margin: 0; max-width: 380px; }

.ec-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.ec-list li {
  display: flex; align-items: flex-start; gap: 8px;
  color: var(--text-mid);
  font-size: 13.5px;
  line-height: 1.4;
}
.ec-list .check { color: var(--brand-400); flex-shrink: 0; margin-top: 3px; width: 16px; height: 16px; }

.ec-cta-wrap { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.ec-cta-wrap .btn-primary { white-space: nowrap; }
.ec-micro { color: var(--text-low); font-size: 12px; }

@media (max-width: 980px) {
  .enterprise-card { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
  .ec-list { grid-template-columns: 1fr; }
  .ec-cta-wrap { align-items: stretch; }
  .ec-cta-wrap .btn-primary { justify-content: center; }
}

/* -- Pricing footer (blueprint) -- */
.pricing-foot { text-align: center; margin-top: 40px; display: grid; gap: 6px; }
.pf-imp { color: var(--text-mid); font-size: 14px; margin: 0; }
.pf-imp strong { color: var(--text-hi); }
.pf-micro { color: var(--text-low); font-size: 13px; margin: 0; }

/* -- Features head fix -- */
.features-head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.features-head h2 em,
.pricing-head h2 em,
.final-cta h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, var(--brand-400) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* -- Responsive -- */
@media (max-width: 1100px) {
  .hero-inner2 { grid-template-columns: 1fr; gap: 40px; }
  .hd-mock { grid-template-columns: 240px 1fr; }
}
@media (max-width: 860px) {
  .hd-mock { grid-template-columns: 1fr; }
  .hd-phone { height: 420px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-vs { transform: rotate(90deg); padding: 12px 0; }
  .bento-grid { grid-template-columns: 1fr; }
  .c8, .c5, .c4, .c3, .c12, .c7 { grid-column: span 1; }
  .compare-head, .compare-row { grid-template-columns: 1fr; gap: 6px; padding: 14px 18px; }
  .compare-head { display: none; }
  .cr-cost, .cr-common { font-size: 13px; }
  .savings-strip { grid-template-columns: 1fr; }
  .savings-vs { transform: rotate(90deg); }
  .quote-card { grid-template-columns: 1fr; padding: 32px; }
  .founder-inner { grid-template-columns: 1fr; }
  .halo-grid { grid-template-columns: repeat(2, 1fr); }
  .guar-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-trust { gap: 10px; font-size: 12px; }
  .metric { border-right: none; }
  .allinone-foot { flex-direction: column; align-items: flex-start; }
}


/* ═══════════════════════════════════════════════════════
   NEW: Hero video mock (real product screenshot + play)
   ═══════════════════════════════════════════════════════ */
.hv-mock {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
}
.hv-glow {
  position: absolute; inset: -40px -20px -60px -20px;
  background:
    radial-gradient(60% 50% at 60% 30%, color-mix(in srgb, var(--brand-500) 40%, transparent) 0%, transparent 70%),
    radial-gradient(50% 40% at 30% 80%, color-mix(in srgb, var(--brand-400) 30%, transparent) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.hv-window {
  position: relative; z-index: 1;
  background: #0c0618;
  border: 1px solid color-mix(in srgb, var(--brand-500) 22%, transparent);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 2px 0 color-mix(in srgb, var(--brand-400) 10%, transparent) inset,
    0 30px 80px -20px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04) inset;
}
.hv-chrome {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  background: #0a0414;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hv-dots { display: flex; gap: 6px; }
.hv-dots span { width: 11px; height: 11px; border-radius: 50%; }
.hv-url {
  flex: 1;
  display: flex; align-items: center; gap: 8px; justify-content: center;
  background: rgba(255,255,255,0.04);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-mid);
  font-family: var(--font-mono, ui-monospace, monospace);
  max-width: 440px; margin: 0 auto;
}
.hv-lock { display: inline-flex; color: var(--brand-300, #c9a6ff); }

.hv-frame {
  position: relative;
  aspect-ratio: 1000 / 780;
  overflow: hidden;
  background: #fff;
}
.hv-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: top left;
  display: block;
  transition: transform 0.6s ease;
}
.hv-frame.is-playing img { transform: scale(1.02); }
.hv-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(12,6,24,0.4) 100%);
  pointer-events: none;
}
.hv-shine {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hv-mock:hover .hv-shine { opacity: 1; }

.hv-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.hv-play-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.85);
  animation: hvPulse 2.4s ease-out infinite;
}
.hv-play-ring-2 { animation-delay: 1.2s; }
@keyframes hvPulse {
  0%   { transform: scale(1);   opacity: 0.9; }
  100% { transform: scale(1.8); opacity: 0; }
}
.hv-play-core {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff 0%, #f0e8ff 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-700, #3d1d7a);
  box-shadow:
    0 8px 24px -4px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.3) inset,
    0 -2px 8px rgba(0,0,0,0.1) inset;
  transition: transform 0.2s ease;
}
.hv-play:hover .hv-play-core { transform: scale(1.08); }
.hv-play-core svg { margin-left: 3px; }
.hv-frame.is-playing ~ .hv-play .hv-play-core svg { margin-left: 0; }

.hv-meta {
  position: absolute;
  top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(12, 6, 24, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  z-index: 2;
}
.hv-meta-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ff4d5e;
  box-shadow: 0 0 0 3px rgba(255, 77, 94, 0.25);
  animation: hvDot 1.6s ease-in-out infinite;
}
@keyframes hvDot {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.hv-scrub {
  padding: 14px 18px 16px;
  background: #0a0414;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hv-scrub-track {
  position: relative;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 10px;
}
.hv-scrub-fill {
  position: absolute; inset: 0;
  width: 28%;
  background: linear-gradient(90deg, var(--brand-400), var(--brand-300, #c9a6ff));
  border-radius: 99px;
}
.hv-scrub-chapters {
  display: flex; justify-content: space-between;
  font-size: 11px;
  color: var(--text-low);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hv-scrub-chapters .on {
  color: var(--text-hi);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   NEW: MetricsBar 3-column
   ═══════════════════════════════════════════════════════ */
.metrics-grid.three { grid-template-columns: repeat(3, 1fr); }
.metrics-grid.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .metrics-grid.three, .metrics-grid.four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .metrics-grid.three, .metrics-grid.four { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   NEW: How It Works — rich timeline
   ═══════════════════════════════════════════════════════ */
.steps { padding: 140px 0; position: relative; }
.steps-head { text-align: center; max-width: 1080px; margin: 0 auto 80px; }
.steps-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 50px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text-hi);
  margin: 20px 0 18px;
  white-space: nowrap;
  text-wrap: nowrap;
}
.steps-head h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, var(--brand-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.steps-head p {
  color: var(--text-mid);
  font-size: 17px;
  line-height: 1.5;
}
.how-rail {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}
.how-rail-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg,
    transparent 0%,
    color-mix(in srgb, var(--brand-400) 35%, transparent) 8%,
    color-mix(in srgb, var(--brand-400) 35%, transparent) 92%,
    transparent 100%);
}
.how-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  position: relative;
}
.how-copy { text-align: right; padding-right: 20px; }
.how-row.rev .how-copy { order: 3; text-align: left; padding-right: 0; padding-left: 20px; }
.how-row.rev .how-vis { order: 1; }
.how-meta {
  display: inline-flex; align-items: baseline; gap: 14px;
  margin-bottom: 12px;
}
.how-row.rev .how-meta { flex-direction: row-reverse; }
.how-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  background: linear-gradient(180deg, var(--brand-300, #d4b3ff), var(--brand-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
  line-height: 1;
}
.how-day {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-300, #c9a6ff);
  font-weight: 600;
  padding: 4px 10px;
  background: color-mix(in srgb, var(--brand-500) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand-500) 26%, transparent);
  border-radius: 999px;
}
.how-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--text-hi);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.15;
}
.how-copy p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.6;
  max-width: 380px;
  margin-left: auto;
}
.how-row.rev .how-copy p { margin-left: 0; margin-right: auto; }
.how-node {
  position: relative;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  order: 2;
}
.how-row:not(.rev) .how-node { display: none; }
.how-node span {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-600));
  box-shadow:
    0 0 0 4px var(--surface-0),
    0 0 0 5px color-mix(in srgb, var(--brand-400) 40%, transparent),
    0 0 20px color-mix(in srgb, var(--brand-400) 60%, transparent);
}
.how-vis {
  padding-left: 20px;
}
.how-row.rev .how-vis { padding-left: 0; padding-right: 20px; }
.how-art {
  position: relative;
  padding: 24px;
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--brand-500) 8%, transparent),
    color-mix(in srgb, var(--surface-2) 60%, transparent));
  border: 1px solid color-mix(in srgb, var(--brand-500) 22%, transparent);
  border-radius: 18px;
  min-height: 180px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.how-art::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.how-art-brain { gap: 8px; }
.ha-doc {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 12px;
  color: var(--text-mid);
  width: fit-content;
}
.ha-doc::before {
  content: '📄';
  filter: grayscale(0.3);
}
.ha-arrow {
  color: var(--brand-400);
  font-size: 20px;
  text-align: center;
  margin: 4px 0;
}
.ha-jarvis {
  position: relative;
  align-self: center;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700, #5a20c7));
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  font-size: 13px;
}
.ha-j-ring {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  animation: hvDot 1.4s ease-in-out infinite;
}

.how-art-plugs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  gap: 20px;
  min-height: 220px;
  padding: 22px 18px;
  position: relative;
}
.how-art-plugs .ha-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 280px; height: 280px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(150, 44, 244, 0.18) 0%, rgba(150, 44, 244, 0) 65%);
  pointer-events: none;
  z-index: 0;
}
.ha-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}
.ha-col-l { align-items: flex-start; }
.ha-col-r { align-items: flex-end; }
.ha-plug {
  min-width: 96px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
  opacity: 0;
  animation: haPlugIn 0.5s var(--ease-standard, cubic-bezier(.2,.8,.2,1)) forwards;
  transition: border-color 200ms, background 200ms, transform 200ms;
  position: relative;
  z-index: 2;
}
.ha-plug:hover {
  border-color: rgba(150, 44, 244, 0.4);
  background: rgba(150, 44, 244, 0.08);
  transform: translateY(-1px);
}
@keyframes haPlugIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ha-hub {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ha-hub-core {
  width: 72px; height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, #a855f7 0%, #7b2ce8 50%, #5a20c7 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 36px rgba(150, 44, 244, 0.45),
    0 8px 24px rgba(90, 32, 199, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}
.ha-hub-core img {
  width: 36px; height: 36px;
  filter: brightness(0) invert(1);
}

.how-art-chat { gap: 8px; }
.ha-msg {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 13px;
  max-width: 78%;
  line-height: 1.4;
}
.ha-msg.user {
  background: rgba(255,255,255,0.06);
  color: var(--text-hi);
  border-radius: 12px 12px 12px 4px;
  align-self: flex-start;
}
.ha-msg.ai {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  color: #fff;
  border-radius: 12px 12px 4px 12px;
  align-self: flex-end;
}
.ha-tag {
  align-self: center;
  padding: 6px 12px;
  background: color-mix(in srgb, #22c55e 18%, transparent);
  border: 1px solid color-mix(in srgb, #22c55e 40%, transparent);
  color: #7ee7a8;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
}

.how-art-chart {
  justify-content: space-between;
  color: var(--brand-300, #c9a6ff);
}
.ha-metric {
  display: flex; justify-content: space-between; align-items: baseline;
  color: var(--text-hi);
}
.ha-metric span { font-size: 12px; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.08em; }
.ha-metric strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #7ee7a8;
  letter-spacing: -0.02em;
}
.ha-spark {
  width: 100%; height: 60px;
  margin-top: 8px;
}

.how-foot {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 28px;
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--brand-500) 10%, transparent),
    color-mix(in srgb, var(--surface-2) 40%, transparent));
  border: 1px solid color-mix(in srgb, var(--brand-500) 24%, transparent);
  border-radius: 20px;
}
.how-foot-stat { text-align: center; }
.how-foot-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--text-hi);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.how-foot-stat span {
  font-size: 13px;
  color: var(--text-mid);
}

@media (max-width: 900px) {
  .how-rail-line { left: 20px; }
  .how-row { grid-template-columns: auto 1fr; gap: 16px; padding: 24px 0; }
  .how-copy,
  .how-row.rev .how-copy {
    order: 2;
    text-align: left;
    padding: 0;
  }
  .how-copy p, .how-row.rev .how-copy p { margin-left: 0; max-width: none; }
  .how-vis, .how-row.rev .how-vis { order: 3; grid-column: 1 / -1; padding: 0; margin-top: 8px; }
  .how-node, .how-row.rev .how-node { order: 1; margin-left: 12px; }
  .how-meta, .how-row.rev .how-meta { flex-direction: row; }
  .how-foot { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   NEW: Guarantees — premium seal + badges
   ═══════════════════════════════════════════════════════ */
.guar-head p {
  margin-top: 18px;
  color: var(--text-mid);
  font-size: 17px;
  line-height: 1.55;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.guar-seal-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 48px;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--brand-500) 14%, transparent),
    color-mix(in srgb, var(--surface-2) 50%, transparent));
  border: 1px solid color-mix(in srgb, var(--brand-400) 28%, transparent);
  border-radius: 24px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.guar-seal-wrap::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  right: -80px; top: -80px;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand-400) 30%, transparent), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.guar-seal-big {
  position: relative;
  width: 160px; height: 160px;
  flex-shrink: 0;
}
.gsb-ring, .gsb-ring-2 {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--brand-400) 50%, transparent);
}
.gsb-ring-2 {
  inset: 10px;
  border-style: dashed;
  border-color: color-mix(in srgb, var(--brand-300, #c9a6ff) 40%, transparent);
  animation: gsbSpin 20s linear infinite;
}
@keyframes gsbSpin { to { transform: rotate(360deg); } }
.gsb-core {
  position: absolute; inset: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700, #5a20c7));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff;
  text-align: center;
  box-shadow:
    0 0 40px color-mix(in srgb, var(--brand-400) 50%, transparent),
    0 0 0 1px rgba(255,255,255,0.15) inset;
}
.gsb-core strong {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.gsb-core span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
  opacity: 0.85;
}
.guar-seal-copy { position: relative; z-index: 1; }
.gsc-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-300, #c9a6ff);
  font-weight: 600;
  margin: 0 0 12px;
}
.gsc-big {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  color: var(--text-hi);
  line-height: 1.4;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.gsc-big em {
  font-style: normal;
  color: var(--brand-300, #c9a6ff);
  font-weight: 600;
}
.gsc-sub {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
}

.guar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.guar-card {
  padding: 22px;
  background: color-mix(in srgb, var(--surface-2) 70%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand-500) 18%, transparent);
  border-radius: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.guar-card:hover {
  border-color: color-mix(in srgb, var(--brand-400) 45%, transparent);
  transform: translateY(-2px);
}
.guar-card-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.guar-ic {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--brand-500) 16%, transparent);
  color: var(--brand-300, #c9a6ff);
  border-radius: 10px;
}
.guar-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--brand-300, #c9a6ff);
  padding: 3px 8px;
  background: color-mix(in srgb, var(--brand-500) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand-500) 26%, transparent);
  border-radius: 999px;
}
.guar-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-hi);
  margin-bottom: 6px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.guar-card span {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .guar-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .guar-seal-wrap { grid-template-columns: 1fr; gap: 24px; text-align: center; padding: 32px 24px; }
  .guar-seal-big { margin: 0 auto; }
  .gsc-big { max-width: 480px; margin-left: auto; margin-right: auto; }
  .guar-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════
   Hero copy — improve readability with soft vignette
   ═══════════════════════════════════════════════════════ */
.hero-copy h1 {
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.hero-copy .sub {
  text-shadow: 0 1px 20px rgba(0,0,0,0.5);
}


/* ═══════════════════════════════════════════════════════
   Hero — btn-ghost glass variant
   ═══════════════════════════════════════════════════════ */
.btn-ghost.glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 8px 32px -12px rgba(0,0,0,0.5);
  color: var(--text-hi);
  transition: all 220ms var(--ease-standard, cubic-bezier(.2,.8,.2,1));
}
.btn-ghost.glass:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.16) inset,
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 12px 40px -12px rgba(0,0,0,0.6);
}

/* ═══════════════════════════════════════════════════════
   Quote / Testimonials — carousel
   ═══════════════════════════════════════════════════════ */
.quote-section { padding: 140px 0; position: relative; }
.quote-head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.quote-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-hi);
  margin-bottom: 20px;
  text-wrap: balance;
}
.quote-head h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, var(--brand-400) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.quote-head p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.55;
}
.carousel-wrap {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}
.carousel-track {
  overflow: hidden;
  border-radius: 28px;
  position: relative;
}
.carousel-rail {
  display: flex;
  transition: transform 560ms cubic-bezier(.22,.8,.2,1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0 4px;
  box-sizing: border-box;
}
.testimonial-card {
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  gap: 48px;
  align-items: stretch;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--brand-500) 14%, transparent),
    color-mix(in srgb, var(--surface-2) 60%, transparent));
  border: 1px solid color-mix(in srgb, var(--brand-400) 26%, transparent);
  border-radius: 24px;
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  right: -120px; top: -120px;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand-400) 28%, transparent), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.tc-quote-mark {
  position: absolute;
  top: 24px; left: 36px;
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 1;
  color: color-mix(in srgb, var(--brand-300, #c9a6ff) 50%, transparent);
  font-weight: 700;
  opacity: 0.35;
}
.tc-main {
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 20px;
  position: relative;
  z-index: 1;
}
.tc-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--brand-400) 35%, transparent);
  background: color-mix(in srgb, var(--brand-500) 14%, transparent);
  color: var(--brand-300, #c9a6ff);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  width: fit-content;
  margin-bottom: 18px;
}
.tc-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-hi);
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  text-wrap: pretty;
}
.tc-text .hl {
  background: linear-gradient(90deg, var(--brand-300, #d4b3ff), var(--brand-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.tc-author {
  display: flex; align-items: center; gap: 14px;
}
.tc-av {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid color-mix(in srgb, var(--brand-400) 40%, transparent);
  background: var(--surface-2);
}
.tc-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tc-who strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-hi);
  font-size: 15px;
  letter-spacing: -0.01em;
}
.tc-who span {
  font-size: 13px;
  color: var(--text-mid);
}
.tc-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--brand-400) 30%, transparent), transparent);
  position: relative;
  z-index: 1;
}
.tc-stat {
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  z-index: 1;
  text-align: left;
}
.tc-stat-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-300, #c9a6ff);
  font-weight: 700;
  margin-bottom: 12px;
}
.tc-stat-big {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--text-hi), var(--brand-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 10px;
}
.tc-stat-sub {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(12,6,24,0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--text-hi);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all 200ms var(--ease-standard, cubic-bezier(.2,.8,.2,1));
}
.carousel-nav:hover {
  background: color-mix(in srgb, var(--brand-500) 50%, rgba(12,6,24,0.8));
  border-color: color-mix(in srgb, var(--brand-400) 60%, transparent);
  transform: translateY(-50%) scale(1.05);
}
.carousel-nav.prev { left: -72px; }
.carousel-nav.next { right: -72px; }
.carousel-nav:disabled { opacity: 0.4; cursor: not-allowed; }

.carousel-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 28px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 200ms var(--ease-standard, cubic-bezier(.2,.8,.2,1));
}
.carousel-dot.active {
  background: var(--brand-400);
  width: 28px;
  border-radius: 99px;
  box-shadow: 0 0 12px color-mix(in srgb, var(--brand-400) 60%, transparent);
}

@media (max-width: 960px) {
  .testimonial-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 24px; }
  .tc-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--brand-400) 30%, transparent), transparent); }
  .tc-stat-big { font-size: 64px; }
  .carousel-nav.prev { left: 8px; }
  .carousel-nav.next { right: 8px; }
}

/* ═══════════════════════════════════════════════════════
   Pain — richer "Sem Techfala vs Com Techfala"
   ═══════════════════════════════════════════════════════ */
.pain { padding: 140px 0 !important; position: relative; overflow: hidden; }
.pain::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 20% 10%, color-mix(in srgb, #ff4d5e 10%, transparent), transparent 60%),
    radial-gradient(800px 400px at 80% 90%, color-mix(in srgb, var(--brand-500) 14%, transparent), transparent 60%);
  pointer-events: none;
}
.pain .container { position: relative; z-index: 1; }

/* Lost-leads counter bar */
.pain-counter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 960px;
  margin: 0 auto 56px;
  padding: 28px 32px;
  background: linear-gradient(180deg,
    color-mix(in srgb, #ff4d5e 8%, transparent),
    color-mix(in srgb, var(--surface-2) 50%, transparent));
  border: 1px solid color-mix(in srgb, #ff4d5e 24%, transparent);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.pain-counter::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff4d5e, transparent);
  opacity: 0.5;
}
.pc-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.pc-item:last-child { border-right: none; }
.pc-val {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  color: #ff8a97;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.pc-val.neg::before { content: '−'; margin-right: 2px; }
.pc-lbl {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.35;
  text-wrap: balance;
}

/* Enhanced before/after cards */
.pain-grid {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: stretch;
}
.pain-card {
  padding: 36px 32px !important;
  border-radius: 24px !important;
  position: relative;
  overflow: hidden;
}
.pain-card.before {
  background: linear-gradient(180deg, color-mix(in srgb, #ff4d5e 8%, transparent), var(--surface-1)) !important;
  border: 1px solid color-mix(in srgb, #ff4d5e 28%, transparent) !important;
  box-shadow: 0 20px 60px -30px rgba(255, 77, 94, 0.3);
}
.pain-card.after {
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-500) 14%, transparent), var(--surface-1)) !important;
  border: 1px solid color-mix(in srgb, var(--brand-400) 34%, transparent) !important;
  box-shadow: 0 20px 60px -30px color-mix(in srgb, var(--brand-500) 50%, transparent);
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: currentColor;
  opacity: 0.4;
}
.pain-card.before::before { color: #ff4d5e; }
.pain-card.after::before { color: var(--brand-400); }
.pain-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  background: rgba(255, 77, 94, 0.14);
  border: 1px solid rgba(255, 77, 94, 0.34);
  color: #ff8a97;
}
.pain-tag::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%; background: currentColor;
}
.pain-tag.accent {
  background: color-mix(in srgb, var(--brand-500) 18%, transparent);
  border-color: color-mix(in srgb, var(--brand-400) 44%, transparent);
  color: var(--brand-300, #c9a6ff);
}
.pain-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.pain-card li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  color: var(--text-hi);
  line-height: 1.4;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pain-card li:last-child { border-bottom: none; padding-bottom: 0; }
.pain-card li .x, .pain-card li .ok {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}
.pain-card li .x {
  background: rgba(255, 77, 94, 0.18);
  color: #ff8a97;
}
.pain-card li .ok {
  background: color-mix(in srgb, #22c55e 22%, transparent);
  color: #7ee7a8;
}
.pain-card-foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed rgba(255,255,255,0.1);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.pain-card-foot strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.pain-card.before .pain-card-foot strong { color: #ff8a97; }
.pain-card.after .pain-card-foot strong { color: #7ee7a8; }
.pain-card-foot span {
  font-size: 12px;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: right;
}

.pain-vs {
  display: flex; align-items: center; justify-content: center;
  width: 80px;
  font-size: 0 !important;
  position: relative;
}
.pain-vs::before {
  content: '→';
  font-size: 32px;
  color: var(--brand-300, #c9a6ff);
  font-weight: 300;
  position: relative;
  z-index: 2;
  background: var(--surface-0);
  padding: 8px 12px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--brand-400) 30%, transparent);
}

.pain-close {
  margin: 40px auto 0 !important;
  max-width: 720px;
  text-align: center;
  font-size: 16px !important;
  color: var(--text-mid) !important;
  line-height: 1.55 !important;
}

@media (max-width: 960px) {
  .pain-counter { grid-template-columns: repeat(2, 1fr); }
  .pc-item:nth-child(2) { border-right: none; }
  .pc-item:nth-child(1), .pc-item:nth-child(2) { padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .pain-grid { grid-template-columns: 1fr !important; }
  .pain-vs { transform: rotate(90deg); width: 100%; height: 40px; }
}


/* ═══════════════════════════════════════════════════════
   Bento — Jarvis card enhanced
   ═══════════════════════════════════════════════════════ */
.jarvis-card {
  display: flex !important;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  position: relative;
}
.jarvis-visual {
  margin-top: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f6fb 100%);
  border: 1px solid rgba(10, 12, 26, 0.08);
  border-radius: 14px;
  position: relative;
}
.jv-orb {
  position: relative;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.jv-ring, .jv-ring-2 {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--brand-400) 50%, transparent);
  animation: jvPulse 2.4s ease-out infinite;
}
.jv-ring-2 { animation-delay: 1.2s; }
@keyframes jvPulse {
  0%   { transform: scale(0.7); opacity: 0.9; }
  100% { transform: scale(1.3); opacity: 0; }
}
.jv-core {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-700, #5a20c7));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  font-family: var(--font-display);
  box-shadow:
    0 0 24px color-mix(in srgb, var(--brand-400) 60%, transparent),
    0 0 0 1px rgba(255,255,255,0.15) inset;
}
.jv-feeds {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.jv-feed {
  font-size: 11.5px;
  font-family: var(--font-mono, ui-monospace, monospace);
  color: #2a2a3a;
  padding: 5px 10px;
  background: rgba(10, 12, 26, 0.035);
  border: 1px solid rgba(10, 12, 26, 0.06);
  border-radius: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: jvFeedIn 0.6s var(--ease-standard, cubic-bezier(.2,.8,.2,1)) both;
}
.jv-feed:nth-child(1) { animation-delay: 0.1s; }
.jv-feed:nth-child(2) { animation-delay: 0.25s; }
.jv-feed:nth-child(3) { animation-delay: 0.4s; }
.jv-feed:nth-child(4) { animation-delay: 0.55s; }
@keyframes jvFeedIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ═══════════════════════════════════════════════════════
   Bento — Reports mini card
   ═══════════════════════════════════════════════════════ */
.reports-card {
  display: flex !important;
  flex-direction: column;
  gap: 16px;
}
.reports-visual {
  margin-top: auto;
  padding: 18px;
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--brand-500) 10%, transparent),
    transparent);
  border: 1px solid color-mix(in srgb, var(--brand-500) 22%, transparent);
  border-radius: 14px;
  color: var(--brand-300, #c9a6ff);
}
.rv-metric {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}
.rv-metric .rv-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mid);
  grid-column: 1 / -1;
}
.rv-metric strong {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-hi);
  letter-spacing: -0.03em;
  line-height: 1;
}
.rv-chg {
  font-size: 13px;
  font-weight: 600;
  color: #7ee7a8;
  padding: 3px 8px;
  background: color-mix(in srgb, #22c55e 16%, transparent);
  border-radius: 6px;
}
.rv-spark {
  width: 100%;
  height: 46px;
  display: block;
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES — TechFala mobile polish + nav drawer
   Last block in file. Anything below this is mobile-first overrides.
   ════════════════════════════════════════════════════════════════ */

/* hard-stop horizontal scroll & ensure media obeys container */
html, body { overflow-x: hidden; }
img, svg, video { max-width: 100%; height: auto; }

/* ─── Nav burger button (hidden on desktop) ─── */
.tf-nav-burger {
  display: none;
  appearance: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-hi);
  width: 40px; height: 40px;
  border-radius: 999px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 180ms var(--ease-standard);
}
.tf-nav-burger:hover { background: rgba(255,255,255,0.06); }

/* ─── ≤960px : compact nav, mobile hero stacking ─── */
@media (max-width: 960px) {
  .tf-nav { padding-inline: 16px; }
  .tf-nav-inner { padding: 8px 8px 8px 16px; gap: 12px; }
  .tf-nav-burger { display: inline-flex; }

  /* drawer: hide pill links AND collapse them into open-state overlay */
  .tf-nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 8px; right: 8px;
    flex-direction: column;
    background: rgba(10, 5, 18, 0.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6);
  }
  .tf-nav.open .tf-nav-links {
    display: flex;
    animation: tfDrawerIn 220ms var(--ease-standard);
  }
  .tf-nav-links a {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 15px;
  }
  /* keep CTA visible mobile but make it more compact */
  .tf-nav-cta { padding: 9px 14px; font-size: 13px; }
}

@keyframes tfDrawerIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── ≤640px : tighten typography & spacing ─── */
@media (max-width: 640px) {
  .container { padding: 0 18px; }

  /* Hero */
  .hero h1 { font-size: clamp(34px, 9vw, 48px); line-height: 1.05; }
  .hero .sub { font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { width: 100%; justify-content: center; }
  .hero-ctas.center { align-items: center; }
  .hero-ctas.center .btn-primary,
  .hero-ctas.center .btn-ghost { width: 100%; max-width: 360px; }

  /* Section h2 */
  section h2, .pain-head h2, .features-head h2,
  .steps-head h2, .quote-head h2, .pricing-head h2,
  .guar-head h2, .faq-head h2, .allinone-head h2 {
    font-size: clamp(26px, 7vw, 38px);
    line-height: 1.1;
  }

  /* Metrics — stack 2x2 in mobile */
  .metrics-grid.four { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .metric .mv { font-size: 28px; }
  .metric .ml { font-size: 12px; }

  /* Pain comparison: stack vertical, hide arrow */
  .pain-grid { grid-template-columns: 1fr; }
  .pain-vs { display: none; }
  .pain-counter { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Bento full stack */
  .bento-grid { grid-template-columns: 1fr; gap: 14px; }
  .bento.c8, .bento.c4, .bento.c6 { grid-column: auto; }

  /* AllInOne compare table → card list */
  .compare-card { padding: 12px; }
  .compare-head { display: none; }
  .compare-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .compare-row:last-child { border-bottom: 0; }
  .cr-need { font-weight: 600; font-size: 15px; }
  .cr-common .cr-logos { gap: 6px; flex-wrap: wrap; }
  .cr-cost::before { content: "Custo: "; opacity: 0.6; }
  .cr-tf { font-weight: 600; }
  .savings-strip { flex-direction: column; gap: 12px; }
  .savings-vs { transform: rotate(90deg); }

  /* Pricing stack */
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .plan { padding: 24px; }
  .pricing-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
    border-radius: 18px;
    width: min(320px, 100%);
    margin: 0 auto;
  }
  .pricing-toggle button { width: 100%; border-radius: 12px; padding: 12px 18px; }

  /* Founder mode stack */
  .founder-inner { grid-template-columns: 1fr; gap: 28px; }
  .founder-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .founder-cta .btn-primary { width: 100%; justify-content: center; }

  /* Steps timeline */
  .how-rail-line { display: none; }
  .how-row, .how-row.rev { grid-template-columns: 1fr; gap: 12px; }
  .how-node { display: none; }

  /* Guarantees grid stack */
  .guar-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .guar-seal-wrap { flex-direction: column; text-align: center; gap: 18px; }

  /* Footer stack */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-contact ul { gap: 12px; }
  .footer-addr { display: flex; gap: 8px; align-items: flex-start; }

  /* Final CTA */
  .final-cta h2 { font-size: clamp(28px, 8vw, 40px); }
  .hero-ctas.center { flex-direction: column; }

  /* Testimonial carousel */
  .testimonial-card { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
  .tc-divider { display: none; }
  .tc-stat-big { font-size: 38px; }
}

/* ─── ≤460px : ultra-compact ─── */
@media (max-width: 460px) {
  .container { padding: 0 14px; }
  .tf-nav-logo span { display: none; }
  .tf-nav-cta { padding: 8px 12px; }
  .pain-counter { grid-template-columns: 1fr 1fr; }
  .metrics-grid.four { grid-template-columns: 1fr 1fr; }
  .guar-grid { grid-template-columns: 1fr; }
  .how-foot { grid-template-columns: 1fr; gap: 12px; }
}

/* ─── footer-contact (mobile + desktop) ─── */
.footer-contact ul li {
  list-style: none;
}
.footer-contact ul li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-addr {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--text-mid);
  font-size: 13px;
  line-height: 1.5;
}
.footer-addr svg { flex-shrink: 0; margin-top: 3px; }

/* ─── safe-area for notched devices ─── */
@supports (padding: env(safe-area-inset-bottom)) {
  body { padding-bottom: env(safe-area-inset-bottom); }
  .tf-nav { padding-top: env(safe-area-inset-top); }
}

/* ════════════════════════════════════════════════════════════════
   v2: Hero video lightbox + play overlay + h1 2-row enforcement
   ════════════════════════════════════════════════════════════════ */

/* h1 2-row enforcement — each row claims a single line */
.hero h1 .hero-h1-row {
  display: block;
  white-space: nowrap;
}
@media (max-width: 460px) {
  .hero h1 .hero-h1-row { white-space: normal; }
  .hero h1 { font-size: clamp(32px, 8.5vw, 44px); }
}

/* clickable hero photo wrap (button reset) */
.jx-photo-wrap {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  display: block;
  width: 100%;
  border-radius: 24px;
  transition: transform 240ms var(--ease-standard);
}
.jx-photo-wrap:hover { transform: translateY(-2px); }
.jx-photo-wrap:hover .jx-play {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 18px 50px -12px color-mix(in srgb, var(--brand-500) 70%, transparent);
}
.jx-photo-wrap .jx-photo { display: block; width: 100%; height: auto; }

.jx-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 78px; height: 78px;
  border-radius: 999px;
  background: var(--brand-500);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px -8px color-mix(in srgb, var(--brand-500) 60%, transparent), 0 0 0 6px rgba(255,255,255,0.08);
  transition: all 220ms var(--ease-standard);
  pointer-events: none;
}
.jx-play svg { transform: translateX(2px); }

/* Lightbox overlay */
.tf-lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(5, 2, 12, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 24px;
  animation: tfLightboxIn 220ms var(--ease-standard);
}
@keyframes tfLightboxIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.tf-lightbox-inner {
  width: min(1200px, 96vw);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--line);
  animation: tfLightboxScale 280ms var(--ease-standard);
}
@keyframes tfLightboxScale {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.tf-lightbox-inner video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}
.tf-lightbox-close {
  position: fixed;
  top: 20px; right: 20px;
  z-index: 201;
  appearance: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 180ms;
}
.tf-lightbox-close:hover { background: rgba(255, 255, 255, 0.15); }

/* mobile: smaller play button + adjusted lightbox padding */
@media (max-width: 640px) {
  .jx-play { width: 60px; height: 60px; }
  .jx-play svg { width: 22px; height: 22px; }
  .tf-lightbox { padding: 12px; }
  .tf-lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; }
}

/* v2: Operator dedicated card price block */
.operator-card .ec-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 16px 0 14px;
  font-family: var(--font-display);
  color: var(--text-hi);
}
.operator-card .ec-price-prefix {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  font-family: var(--font-base);
  margin-right: 2px;
}
.operator-card .ec-price-num {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--brand-300) 0%, var(--brand-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.operator-card .ec-price-period {
  font-size: 14px;
  color: var(--text-mid);
  font-family: var(--font-base);
}
@media (max-width: 640px) {
  .operator-card .ec-price-num { font-size: 36px; }
}

/* ════════════════════════════════════════════════════════════════
   v3: Fixes pós-feedback Luca
   ════════════════════════════════════════════════════════════════ */

/* 1. Esconder play overlay (manter clicável o wrapper button) */
.jx-play { display: none !important; }
/* hover ainda dá feedback visual sutil */
.jx-photo-wrap:hover { transform: translateY(-3px) scale(1.005); }
.jx-photo-wrap::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 24px;
  box-shadow: 0 0 0 0 transparent;
  transition: box-shadow 280ms var(--ease-standard);
  pointer-events: none;
}
.jx-photo-wrap:hover::after {
  box-shadow: 0 30px 80px -20px color-mix(in srgb, var(--brand-500) 40%, transparent);
}

/* 2. Empurrar hero-right 15% pra direita em desktop */
@media (min-width: 961px) {
  .hero-right { transform: translateX(15%); }
}

/* 3. Operator card: layout próprio (sobrescreve enterprise-card grid) */
.operator-card.enterprise-card {
  grid-template-columns: 1.1fr 1fr;
  grid-template-areas:
    "left list"
    "cta cta";
  gap: 28px 40px;
  align-items: start;
}
.operator-card .ec-left { grid-area: left; }
.operator-card .ec-list {
  grid-area: list;
  grid-template-columns: 1fr;
  gap: 12px;
}
.operator-card .ec-cta-wrap {
  grid-area: cta;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  margin-top: 6px;
  border-top: 1px solid var(--line);
}
.operator-card .ec-cta-wrap .btn-primary { white-space: nowrap; }
.operator-card .ec-price { flex-wrap: nowrap; white-space: nowrap; }

/* mobile: stack everything */
@media (max-width: 900px) {
  .operator-card.enterprise-card {
    grid-template-columns: 1fr;
    grid-template-areas: "left" "list" "cta";
    gap: 24px;
  }
  .operator-card .ec-cta-wrap {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .operator-card .ec-cta-wrap .btn-primary { justify-content: center; }
}

/* v4: Floating WhatsApp button (bottom-right fixed) */
.tf-fab-wpp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #25D366;          /* WhatsApp green */
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 28px -6px rgba(37, 211, 102, 0.55),
    0 4px 12px -2px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 220ms var(--ease-standard), box-shadow 220ms var(--ease-standard), background 200ms;
  -webkit-tap-highlight-color: transparent;
}
.tf-fab-wpp:hover {
  transform: translateY(-3px) scale(1.04);
  background: #1ebe5d;
  box-shadow:
    0 18px 38px -6px rgba(37, 211, 102, 0.65),
    0 6px 18px -2px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.tf-fab-wpp:active { transform: translateY(-1px) scale(1.0); }
.tf-fab-wpp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: tfFabPulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes tfFabPulse {
  0%   { transform: scale(0.95); opacity: 0.8; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}
@media (max-width: 640px) {
  .tf-fab-wpp { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .tf-fab-wpp svg { width: 26px; height: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .tf-fab-wpp::before { animation: none; }
}
