/* =========================================================
   SEVEN ARENA — components.css
   Nav, buttons, mockups, cards, forms, FAQ, etc.
   ========================================================= */

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background var(--t-base), backdrop-filter var(--t-base), border-color var(--t-base);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10,25,41,.78);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 36px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.005em;
  position: relative;
  padding: 6px 2px;
}
.nav__links a:hover { color: var(--text-strong); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--mint);
  transition: width var(--t-base);
}
.nav__links a:hover::after { width: 100%; }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav__login {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
.nav__login:hover { color: var(--mint); }

/* Lang switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
}
.lang-switch__btn {
  color: var(--text-dim);
  padding: 2px 6px;
  border-radius: 999px;
  transition: color var(--t-fast);
}
.lang-switch__btn.is-active {
  color: var(--bg);
  background: var(--mint);
  font-weight: 700;
}
.lang-switch__btn:not(.is-active):hover { color: var(--text); }
.lang-switch__sep { color: var(--text-dim); }

/* Mobile menu toggle */
.nav__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.nav__menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  transition: transform var(--t-base), opacity var(--t-base);
}
.nav__menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.mobile-menu[hidden] { display: none !important; }
@media (max-width: 980px) {
  .mobile-menu:not([hidden]) { display: flex; }
}
.mobile-menu a {
  padding: 14px 0;
  font-size: 18px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--text-strong);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a.btn {
  margin-top: 12px;
  border: 0;
}

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__login { display: none; }
  .nav__menu-toggle { display: flex; }
  .nav__actions .btn { display: none; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border-radius: 999px;
  padding: 14px 22px;
  transition: transform var(--t-fast), box-shadow var(--t-base), background var(--t-base), color var(--t-base), border-color var(--t-base);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn__arrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  transition: transform var(--t-base);
}
.btn--primary {
  background: var(--mint);
  color: #042018;
  box-shadow:
    0 8px 24px -8px var(--mint-glow),
    inset 0 1px 0 rgba(255,255,255,.4);
}
.btn--primary:hover {
  box-shadow:
    0 20px 50px -10px var(--mint-glow),
    inset 0 1px 0 rgba(255,255,255,.5);
  transform: translateY(-2px);
}
.btn--primary:hover .btn__arrow { transform: translateX(4px); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--text-strong);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--mint);
  color: var(--mint);
  background: rgba(78,217,176,.04);
}

.btn--sm { padding: 10px 16px; font-size: 13.5px; }
.btn--lg { padding: 18px 28px; font-size: 16px; }
.btn--block { width: 100%; }

/* =========================================================
   EYEBROW · BADGE · LIVE DOT
   ========================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--mint);
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line-mint);
  border-radius: 999px;
  background: rgba(78,217,176,.05);
}

.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 var(--mint-glow);
  animation: pulse-dot 1.6s ease-out infinite;
  flex-shrink: 0;
}
.live-dot--sm { width: 6px; height: 6px; }
.live-dot--red {
  background: var(--danger);
  box-shadow: 0 0 0 0 rgba(248,113,113,.5);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--mint);
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--line-mint);
  border-radius: 6px;
  background: rgba(78,217,176,.06);
  align-self: flex-start;
}
.badge--live {
  background: rgba(78,217,176,.12);
  color: var(--mint);
  font-weight: 700;
}
.badge--ai {
  background: linear-gradient(90deg, rgba(78,217,176,.12), rgba(78,217,176,.04));
}
.badge--gold {
  color: var(--gold);
  border-color: rgba(240,198,116,.4);
  background: rgba(240,198,116,.08);
}

/* =========================================================
   STAT — inline (hero) & block (stats section)
   ========================================================= */
.stat-inline {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.stat-inline__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  color: var(--mint);
  letter-spacing: 0;
}
.stat-inline__label {
  font-size: 13px;
  color: var(--text-muted);
}
.stat-inline__sep {
  display: inline-block;
  width: 1px; height: 28px;
  background: var(--line-strong);
}

.stat-block { text-align: left; }
.stat-block__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.9;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}
.stat-block__num .pct {
  color: var(--mint);
  font-size: 0.6em;
  margin-left: 4px;
}
.stat-block__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  position: relative;
}
.stat-block__label::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 36px; height: 1px;
  background: var(--mint);
}

/* =========================================================
   HERO MOCKUPS
   ========================================================= */
.mockup {
  position: absolute;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line-strong);
  box-shadow:
    var(--sh-lift),
    0 0 0 1px rgba(255,255,255,.04) inset;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* Dashboard mockup */
.mockup--dash {
  top: 30px;
  right: 0;
  width: 100%;
  max-width: 560px;
  transform: rotate(-2deg);
  animation: float-mockup-a 9s ease-in-out infinite;
}
.mockup__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.18);
}
.mockup__chrome > span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line-strong);
}
.mockup__chrome > span:nth-child(1) { background: #ff5f57; }
.mockup__chrome > span:nth-child(2) { background: #febc2e; }
.mockup__chrome > span:nth-child(3) { background: #28c840; }
.mockup__url {
  margin-left: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--text-muted);
}
.mockup__body { padding: 20px; }

.dash-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.dash-head__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-strong);
  font-weight: 600;
}
.dash-head__time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--mint);
}
.dash-bar {
  height: 6px;
  background: rgba(255,255,255,.05);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 18px;
}
.dash-bar__fill {
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, var(--mint-2), var(--mint));
  box-shadow: 0 0 12px var(--mint-glow);
}
.dash-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dash-row {
  display: grid;
  grid-template-columns: 24px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  font-size: 12.5px;
}
.dash-row__name { font-weight: 600; color: var(--text-strong); }
.dash-row__sport { font-size: 12px; color: var(--text-muted); }
.dash-row__status { font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
.status--ok { color: var(--ok); }
.status--wait { color: var(--warn); }

/* Flag chips (CSS-only) */
.flag {
  width: 18px; height: 13px;
  border-radius: 2px;
  display: inline-block;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15);
}
.flag--cl { background: linear-gradient(90deg, #fff 0 33%, #d52b1e 33%, #d52b1e 100%); position: relative; }
.flag--cl::before { content:''; position:absolute; left:0; top:0; width:33%; height:50%; background:#0033a0; }
.flag--us {
  background:
    linear-gradient(#bf0a30 0 14%, #fff 14% 28%, #bf0a30 28% 42%, #fff 42% 56%, #bf0a30 56% 70%, #fff 70% 84%, #bf0a30 84% 100%);
  position: relative;
}
.flag--us::before { content:''; position:absolute; left:0; top:0; width:40%; height:54%; background:#002868; }
.flag--br { background: #009b3a; position: relative; }
.flag--br::before { content:'◆'; position:absolute; inset:0; display:grid; place-items:center; color:#fedf00; font-size:8px; }
.flag--ar { background: linear-gradient(#74acdf 0 33%, #fff 33% 66%, #74acdf 66% 100%); }
.flag--mx { background: linear-gradient(90deg, #006847 0 33%, #fff 33% 66%, #ce1126 66% 100%); }

/* Phone mockup */
.mockup--phone {
  bottom: 0;
  left: 0;
  width: 200px;
  border-radius: 28px;
  padding: 4px;
  background: #050C16;
  border: 1px solid #1a2c44;
  transform: rotate(-7deg);
  animation: float-mockup-b 10s ease-in-out infinite;
  z-index: 3;
}
.phone__notch {
  width: 70px; height: 18px;
  background: #050C16;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.phone__body {
  background: linear-gradient(180deg, #0a1929, #0F2740);
  border-radius: 24px;
  margin-top: -8px;
  padding: 18px 14px 14px;
}
.phone__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.phone__top small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--text-muted);
}
.phone__time { color: var(--mint) !important; }

.qr-card {
  background: linear-gradient(180deg, #fff, #f0f9f5);
  color: var(--bg);
  border-radius: var(--r-md);
  padding: 12px;
  text-align: center;
  box-shadow:
    0 12px 30px rgba(0,0,0,.3),
    inset 0 -3px 0 var(--mint);
}
.qr-card__qr {
  width: 100px;
  height: 100px;
  margin: 0 auto 10px;
  background: #fff;
  border-radius: 4px;
  display: grid;
  place-items: center;
}
.qr-card__qr svg { width: 92px; height: 92px; }
.qr-card__name {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--bg);
}
.qr-card__role {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .14em;
  color: var(--mint-2);
  margin-top: 2px;
}
.qr-card__sport {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--navy);
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px dashed rgba(31,58,95,.2);
}
.phone__cta {
  margin-top: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(78,217,176,.06);
}
.phone__cta span {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.phone__cta strong {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: var(--mint);
}

/* Float metric card */
.float-card {
  position: absolute;
  bottom: 90px;
  right: -10px;
  width: 200px;
  padding: 16px;
  background: rgba(15,39,64,.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  box-shadow: var(--sh-card);
  transform: rotate(3deg);
  animation: float-mockup-c 11s ease-in-out infinite;
  z-index: 4;
}
.float-card__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--mint);
  text-transform: uppercase;
}
.float-card__big {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 8px 0 10px;
}
.float-card__count {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  color: var(--text-strong);
}
.float-card__delta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--mint);
  padding: 2px 6px;
  background: rgba(78,217,176,.12);
  border-radius: 4px;
}
.float-card__chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 26px;
}
.float-card__chart span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--mint), var(--mint-2));
  border-radius: 2px;
  opacity: .85;
}

/* =========================================================
   TICKER
   ========================================================= */
.ticker {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
}
.ticker__track {
  display: inline-flex;
  gap: 48px;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: .14em;
  color: var(--mint);
  text-transform: uppercase;
}
.ticker__track span { flex-shrink: 0; }

/* =========================================================
   PAIN CARD
   ========================================================= */
.pain-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-card);
  transition: transform var(--t-base), border-color var(--t-base), background var(--t-base);
  position: relative;
}
.pain-card:hover {
  border-color: var(--line-strong);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}
.pain-card__num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: rgba(255,255,255,.06);
  margin-bottom: 16px;
}
.pain-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text-strong);
  margin-bottom: 12px;
}
.pain-card__body {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

/* =========================================================
   MODULE CARD + ICONS
   ========================================================= */
.module-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-card);
  transition: transform var(--t-base), border-color var(--t-base), background var(--t-base), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.module-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, var(--mint-glow-2), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}
.module-card:hover {
  border-color: var(--line-mint);
  transform: translateY(-4px);
  box-shadow: var(--sh-mint);
}
.module-card:hover::before { opacity: 1; }

.module-card--featured {
  background:
    linear-gradient(180deg, rgba(78,217,176,.06), transparent 60%),
    var(--bg-card);
  border-color: var(--line-mint);
}
.module-card__icon {
  width: 36px; height: 36px;
  margin-bottom: 20px;
  background-color: var(--mint);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
.module-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text-strong);
  margin-bottom: 10px;
}
.module-card__body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Module icons via mask-image (SVG inline data URIs) */
[data-icon="dashboard"] { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><rect x='3' y='3' width='8' height='10' rx='1'/><rect x='13' y='3' width='8' height='6' rx='1'/><rect x='3' y='15' width='8' height='6' rx='1'/><rect x='13' y='11' width='8' height='10' rx='1'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><rect x='3' y='3' width='8' height='10' rx='1'/><rect x='13' y='3' width='8' height='6' rx='1'/><rect x='3' y='15' width='8' height='6' rx='1'/><rect x='13' y='11' width='8' height='10' rx='1'/></svg>"); }

[data-icon="event"] { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><rect x='3' y='5' width='18' height='16' rx='2'/><path d='M3 9h18M8 3v4M16 3v4'/><circle cx='12' cy='14' r='2' fill='black' stroke='none'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><rect x='3' y='5' width='18' height='16' rx='2'/><path d='M3 9h18M8 3v4M16 3v4'/><circle cx='12' cy='14' r='2' fill='black' stroke='none'/></svg>"); }

[data-icon="sport"] { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><circle cx='12' cy='10' r='6'/><path d='M9 16l-2 6M15 16l2 6M12 16v6'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><circle cx='12' cy='10' r='6'/><path d='M9 16l-2 6M15 16l2 6M12 16v6'/></svg>"); }

[data-icon="users"] { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><circle cx='9' cy='8' r='3.5'/><circle cx='17' cy='9' r='2.5'/><path d='M3 20c0-3 3-5 6-5s6 2 6 5'/><path d='M15 19c0-2 2-4 4-4s3 2 3 4'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><circle cx='9' cy='8' r='3.5'/><circle cx='17' cy='9' r='2.5'/><path d='M3 20c0-3 3-5 6-5s6 2 6 5'/><path d='M15 19c0-2 2-4 4-4s3 2 3 4'/></svg>"); }

[data-icon="qr"] { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M3 3h7v7H3zm2 2v3h3V5zM14 3h7v7h-7zm2 2v3h3V5zM3 14h7v7H3zm2 2v3h3v-3zM14 14h2v2h-2zM18 14h3v2h-3zM14 18h2v3h-2zM18 18h3v3h-3z'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M3 3h7v7H3zm2 2v3h3V5zM14 3h7v7h-7zm2 2v3h3V5zM3 14h7v7H3zm2 2v3h3v-3zM14 14h2v2h-2zM18 14h3v2h-3zM14 18h2v3h-2zM18 18h3v3h-3z'/></svg>"); }

[data-icon="calendar"] { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><rect x='3' y='5' width='18' height='16' rx='2'/><path d='M3 10h18M8 3v4M16 3v4M8 14h2M14 14h2M8 18h2M14 18h2'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><rect x='3' y='5' width='18' height='16' rx='2'/><path d='M3 10h18M8 3v4M16 3v4M8 14h2M14 14h2M8 18h2M14 18h2'/></svg>"); }

[data-icon="gps"] { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M12 21c-4-5-7-9-7-12a7 7 0 0114 0c0 3-3 7-7 12z'/><circle cx='12' cy='9' r='2.5' fill='black' stroke='none'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M12 21c-4-5-7-9-7-12a7 7 0 0114 0c0 3-3 7-7 12z'/><circle cx='12' cy='9' r='2.5' fill='black' stroke='none'/></svg>"); }

[data-icon="bed"] { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M3 18V8M21 18v-4a3 3 0 00-3-3H10v6'/><circle cx='7' cy='11' r='2' fill='black' stroke='none'/><path d='M3 14h18'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M3 18V8M21 18v-4a3 3 0 00-3-3H10v6'/><circle cx='7' cy='11' r='2' fill='black' stroke='none'/><path d='M3 14h18'/></svg>"); }

[data-icon="food"] { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M5 3v18M5 3v6h3V3M19 21V3c-2 0-3 2-3 6s1 4 3 4'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M5 3v18M5 3v6h3V3M19 21V3c-2 0-3 2-3 6s1 4 3 4'/></svg>"); }

[data-icon="phone"] { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><rect x='7' y='2' width='10' height='20' rx='2'/><circle cx='12' cy='18' r='1' fill='black' stroke='none'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><rect x='7' y='2' width='10' height='20' rx='2'/><circle cx='12' cy='18' r='1' fill='black' stroke='none'/></svg>"); }

[data-icon="chat"] { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M21 12a8 8 0 11-3-6L21 5l-1 4a8 8 0 011 3z'/><circle cx='8' cy='12' r='1' fill='black' stroke='none'/><circle cx='12' cy='12' r='1' fill='black' stroke='none'/><circle cx='16' cy='12' r='1' fill='black' stroke='none'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M21 12a8 8 0 11-3-6L21 5l-1 4a8 8 0 011 3z'/><circle cx='8' cy='12' r='1' fill='black' stroke='none'/><circle cx='12' cy='12' r='1' fill='black' stroke='none'/><circle cx='16' cy='12' r='1' fill='black' stroke='none'/></svg>"); }

[data-icon="report"] { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M3 21h18'/><rect x='5' y='12' width='3' height='8' fill='black' stroke='none'/><rect x='11' y='8' width='3' height='12' fill='black' stroke='none'/><rect x='17' y='4' width='3' height='16' fill='black' stroke='none'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M3 21h18'/><rect x='5' y='12' width='3' height='8' fill='black' stroke='none'/><rect x='11' y='8' width='3' height='12' fill='black' stroke='none'/><rect x='17' y='4' width='3' height='16' fill='black' stroke='none'/></svg>"); }

/* Portal icons */
[data-icon="wheel"] { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><circle cx='12' cy='12' r='9'/><circle cx='12' cy='12' r='3'/><path d='M12 3v6M12 15v6M3 12h6M15 12h6'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><circle cx='12' cy='12' r='9'/><circle cx='12' cy='12' r='3'/><path d='M12 3v6M12 15v6M3 12h6M15 12h6'/></svg>"); }

[data-icon="star"] { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2l3 7h7l-5.5 4.5L18 21l-6-4-6 4 1.5-7.5L2 9h7z'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2l3 7h7l-5.5 4.5L18 21l-6-4-6 4 1.5-7.5L2 9h7z'/></svg>"); }

[data-icon="flag"] { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M4 21V4'/><path d='M4 4h13l-2 4 2 4H4' fill='black'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M4 21V4'/><path d='M4 4h13l-2 4 2 4H4' fill='black'/></svg>"); }

[data-icon="medal"] { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><circle cx='12' cy='15' r='6'/><path d='M8 3l4 6M16 3l-4 6M7 9l-1-6M17 9l1-6'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><circle cx='12' cy='15' r='6'/><path d='M8 3l4 6M16 3l-4 6M7 9l-1-6M17 9l1-6'/></svg>"); }

[data-icon="scan"] { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M3 8V5a2 2 0 012-2h3M21 8V5a2 2 0 00-2-2h-3M3 16v3a2 2 0 002 2h3M21 16v3a2 2 0 01-2 2h-3M3 12h18'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M3 8V5a2 2 0 012-2h3M21 8V5a2 2 0 00-2-2h-3M3 16v3a2 2 0 002 2h3M21 16v3a2 2 0 01-2 2h-3M3 12h18'/></svg>"); }

/* Sofia capability icons */
[data-icon="globe"] { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><circle cx='12' cy='12' r='9'/><path d='M3 12h18M12 3c3 3 3 15 0 18M12 3c-3 3-3 15 0 18'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><circle cx='12' cy='12' r='9'/><path d='M3 12h18M12 3c3 3 3 15 0 18M12 3c-3 3-3 15 0 18'/></svg>"); }

[data-icon="clock"] { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><circle cx='12' cy='12' r='9'/><path d='M12 7v5l3 2'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><circle cx='12' cy='12' r='9'/><path d='M12 7v5l3 2'/></svg>"); }

[data-icon="brain"] { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M9 3a3 3 0 00-3 3 3 3 0 00-2 5 3 3 0 002 5 3 3 0 003 3V3z'/><path d='M15 3a3 3 0 013 3 3 3 0 012 5 3 3 0 01-2 5 3 3 0 01-3 3V3z'/><path d='M9 8h2M9 12h3M9 16h2M15 8h-2M15 12h-3M15 16h-2'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M9 3a3 3 0 00-3 3 3 3 0 00-2 5 3 3 0 002 5 3 3 0 003 3V3z'/><path d='M15 3a3 3 0 013 3 3 3 0 012 5 3 3 0 01-2 5 3 3 0 01-3 3V3z'/><path d='M9 8h2M9 12h3M9 16h2M15 8h-2M15 12h-3M15 16h-2'/></svg>"); }

[data-icon="bolt"] { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M13 2L4 14h6l-1 8 9-12h-6z'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M13 2L4 14h6l-1 8 9-12h-6z'/></svg>"); }

/* =========================================================
   BENTO CELLS
   ========================================================= */
.bento__cell {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.bento__cell:hover {
  border-color: var(--line-mint);
  transform: translateY(-3px);
  box-shadow: var(--sh-mint);
}
.bento__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bento__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text-strong);
}
.bento__body {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0;
}
.bento__visual { margin-top: auto; }

.bento__cell--qr {
  background:
    radial-gradient(circle at 80% 110%, var(--mint-glow-2), transparent 60%),
    var(--bg-card);
}
.bento__visual--qr {
  height: 130px;
  background:
    repeating-linear-gradient(45deg, rgba(78,217,176,.08) 0 4px, transparent 4px 14px),
    radial-gradient(circle at 50% 50%, rgba(78,217,176,.06), transparent 70%);
  border: 1px dashed var(--line-mint);
  border-radius: var(--r-md);
  position: relative;
}
.bento__visual--qr::before,
.bento__visual--qr::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid var(--mint);
}
.bento__visual--qr::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.bento__visual--qr::after  { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

.bento__cell--gps { background: linear-gradient(180deg, rgba(78,217,176,.04), transparent), var(--bg-card); }
.bento__visual--gps { margin-top: auto; }
.bento__visual--gps svg { width: 100%; height: 100px; }
.route-line { stroke-dashoffset: 0; animation: dash-flow 4s linear infinite; }
.route-pulse {
  filter: drop-shadow(0 0 8px var(--mint));
  animation: pulse-circle 2s ease-in-out infinite;
}

.portal-stack { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.portal-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--mint);
  border: 1px solid var(--line-mint);
  background: rgba(78,217,176,.06);
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.bento__cell--ai { background: linear-gradient(135deg, rgba(78,217,176,.07), transparent), var(--bg-card); }
.ai-bubble {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 18px 18px 18px 4px;
  background: var(--mint);
}
.ai-bubble__dot {
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--bg);
  animation: dots-bounce 1.4s ease-in-out infinite;
}
.ai-bubble__dot:nth-child(2) { animation-delay: 0.2s; }
.ai-bubble__dot:nth-child(3) { animation-delay: 0.4s; }

.csv-mock {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  background: rgba(0,0,0,.25);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  color: var(--text-muted);
  line-height: 1.7;
}
.csv-mock__row:first-child { color: var(--mint); border-bottom: 1px dashed var(--line); padding-bottom: 4px; margin-bottom: 4px; }
.csv-mock__row--ok { color: var(--mint); font-weight: 700; padding-top: 4px; border-top: 1px dashed var(--line); margin-top: 4px; }

.bento__visual--dash { margin-top: auto; padding-top: 16px; }
.dash-bars { display: flex; gap: 8px; align-items: flex-end; height: 90px; }
.dash-bars span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--mint), rgba(78,217,176,.2));
  border-radius: 4px 4px 0 0;
  position: relative;
}
.dash-bars span::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
}

/* =========================================================
   STEP (how it works)
   ========================================================= */
.step {
  position: relative;
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-card);
  transition: border-color var(--t-base), transform var(--t-base);
}
.step:hover { border-color: var(--line-mint); transform: translateY(-4px); }
.step__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 88px;
  line-height: 1;
  color: var(--mint);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
}
.step__num::after {
  content: '';
  display: block;
  width: 40px; height: 3px;
  background: var(--mint);
  margin-top: 4px;
}
.step__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--text-strong);
  margin-bottom: 12px;
}
.step__body {
  color: var(--text-muted);
  margin: 0 0 18px;
}
.step__list { display: flex; flex-direction: column; gap: 8px; }
.step__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text);
}
.step__list li::before {
  content: '+';
  position: absolute;
  left: 0; top: 0;
  color: var(--mint);
  font-family: var(--font-mono);
  font-weight: 700;
}

/* =========================================================
   PORTAL cards
   ========================================================= */
.portal {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-card);
  transition: border-color var(--t-base), transform var(--t-base), background var(--t-base);
}
.portal:hover { border-color: var(--line-mint); transform: translateY(-3px); background: var(--bg-card-hover); }
.portal__phone {
  position: relative;
  height: 200px;
  border-radius: var(--r-md);
  background:
    linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.portal__phone::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 28px, var(--line) 28px 29px),
    radial-gradient(circle at 50% 0%, var(--mint-glow-2), transparent 60%);
  opacity: .8;
  pointer-events: none;
}
.portal__icon {
  width: 56px; height: 56px;
  background-color: var(--mint);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  position: relative; z-index: 2;
  filter: drop-shadow(0 0 14px var(--mint-glow));
}
.portal__live {
  position: absolute;
  bottom: 14px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--mint);
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(78,217,176,.1);
  border: 1px solid var(--line-mint);
  z-index: 2;
}
.portal__live--gold { color: var(--gold); border-color: rgba(240,198,116,.4); background: rgba(240,198,116,.08); }
.portal__live--mint { color: var(--mint); }
.portal__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--text-strong);
  margin-bottom: 6px;
}
.portal__body {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
}

/* =========================================================
   AUDIENCE chip
   ========================================================= */
.audience {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-card);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: border-color var(--t-base), background var(--t-base), color var(--t-base);
}
.audience:hover {
  border-color: var(--mint);
  background: rgba(78,217,176,.06);
  color: var(--mint);
}
.audience__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
}

/* =========================================================
   FORM
   ========================================================= */
.demo__form {
  padding: 36px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(15,39,64,.85), rgba(10,25,41,.85));
  backdrop-filter: blur(10px);
  box-shadow: var(--sh-card);
  position: relative;
  overflow: hidden;
}
.demo__form::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 80px; height: 2px;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint-glow);
}
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(0,0,0,.25);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  color: var(--text-strong);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  font-family: var(--font-body);
  font-size: 15px;
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%2394A3B8'><path d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px;
  padding-right: 38px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--mint);
  background: rgba(0,0,0,.4);
  box-shadow: 0 0 0 4px rgba(78,217,176,.12);
}
.form-field textarea { resize: vertical; min-height: 84px; font-family: var(--font-body); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-dim); }
.form-field--error input,
.form-field--error select,
.form-field--error textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(248,113,113,.12);
}
.form-field__error {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--danger);
  margin-top: 4px;
  letter-spacing: .04em;
}
.form-note {
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--t-base), background var(--t-base);
}
.faq-item[open] {
  border-color: var(--line-mint);
  background: rgba(78,217,176,.03);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-strong);
  transition: color var(--t-base);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--mint); }
.faq-item__icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t-base);
}
.faq-item__icon::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-item__icon::after  { top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%); }
.faq-item[open] .faq-item__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-item__body {
  padding: 0 26px 24px;
  color: var(--text-muted);
}
.faq-item__body p { margin: 0; line-height: 1.6; }

/* =========================================================
   SOFIA — Dedicated AI section
   ========================================================= */
.sofia {
  position: relative;
  background:
    radial-gradient(ellipse at 80% 0%, var(--mint-glow-2), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(78,217,176,.08), transparent 50%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.sofia__intro { max-width: 760px; }
.sofia__grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  margin-top: 24px;
}
@media (max-width: 980px) {
  .sofia__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Capability cards (left column) */
.sofia__caps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) { .sofia__caps { grid-template-columns: 1fr; } }
.sofia-cap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(78,217,176,.04), transparent 50%),
    var(--bg-card);
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.sofia-cap:hover {
  border-color: var(--line-mint);
  transform: translateY(-3px);
  box-shadow: var(--sh-mint);
}
.sofia-cap__icon {
  width: 32px; height: 32px;
  background-color: var(--mint);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 0 8px var(--mint-glow));
}
.sofia-cap__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text-strong);
  margin: 0 0 6px 0;
  line-height: 1.15;
}
.sofia-cap__body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Right column — chat mockup + language pills */
.sofia__chat {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 100px;
}

.chat-mockup {
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(15,39,64,.92), rgba(10,25,41,.92));
  backdrop-filter: blur(10px);
  box-shadow: var(--sh-card), 0 0 0 1px rgba(78,217,176,.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.chat-mockup__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(78,217,176,.04);
}
.chat-mockup__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--mint), var(--mint-2));
  color: #042018;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 0 0 4px rgba(78,217,176,.14), 0 0 24px var(--mint-glow);
}
.chat-mockup__who { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.chat-mockup__who strong {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-strong);
  font-weight: 600;
}
.chat-mockup__who small {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.chat-mockup__badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--mint);
  border: 1px solid var(--line-mint);
  background: rgba(78,217,176,.06);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.chat-mockup__body {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 320px;
  background:
    radial-gradient(circle at 50% 0%, rgba(78,217,176,.04), transparent 60%);
}
.chat-msg { display: flex; }
.chat-msg--user { justify-content: flex-end; }
.chat-msg--bot  { justify-content: flex-start; }
.chat-msg__bubble {
  max-width: 84%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text-strong);
  animation: chat-pop .45s cubic-bezier(.2,.7,.2,1) both;
}
.chat-msg--user .chat-msg__bubble {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-bottom-right-radius: 4px;
}
.chat-msg--bot .chat-msg__bubble {
  background: linear-gradient(180deg, rgba(78,217,176,.14), rgba(78,217,176,.08));
  border: 1px solid var(--line-mint);
  border-bottom-left-radius: 4px;
  color: var(--text-strong);
}
.chat-msg--bot .chat-msg__bubble b { color: var(--mint); font-weight: 600; }
.chat-msg--user:nth-of-type(1) .chat-msg__bubble { animation-delay: .05s; }
.chat-msg--bot:nth-of-type(2)  .chat-msg__bubble { animation-delay: .35s; }
.chat-msg--user:nth-of-type(3) .chat-msg__bubble { animation-delay: .85s; }
.chat-msg--bot:nth-of-type(4)  .chat-msg__bubble { animation-delay: 1.15s; }
.chat-msg--typing .chat-msg__bubble { animation-delay: 1.6s; padding: 12px 14px; }

.chat-msg__bubble--typing {
  display: inline-flex; gap: 4px; align-items: center;
}
.chat-msg__bubble--typing > span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  opacity: .5;
  animation: chat-typing 1.2s ease-in-out infinite;
}
.chat-msg__bubble--typing > span:nth-child(2) { animation-delay: .15s; }
.chat-msg__bubble--typing > span:nth-child(3) { animation-delay: .3s; }

@keyframes chat-pop {
  0%   { opacity: 0; transform: translateY(8px) scale(.96); }
  100% { opacity: 1; transform: translateY(0)   scale(1); }
}
@keyframes chat-typing {
  0%, 60%, 100% { opacity: .35; transform: translateY(0); }
  30%           { opacity: 1;   transform: translateY(-3px); }
}

.chat-mockup__input {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.2);
}
.chat-mockup__input-placeholder {
  font-size: 13.5px;
  color: var(--text-dim);
}
.chat-mockup__send {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 0;
  background: var(--mint);
  color: #042018;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 0 16px var(--mint-glow);
  transition: transform var(--t-fast);
}
.chat-mockup__send:hover { transform: scale(1.08); }

/* Language pills */
.lang-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}
.lang-pill {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--text-muted);
}
.lang-pill--more {
  color: var(--mint);
  border-color: var(--line-mint);
  background: rgba(78,217,176,.06);
}

/* Bottom strip — where Sofia lives */
.sofia__where {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
}
.sofia__where-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mint);
}
.sofia__where-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sofia-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg-card);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.sofia-chip:hover {
  color: var(--mint);
  border-color: var(--line-mint);
  background: rgba(78,217,176,.06);
}

/* =========================================================
   TRUST / TRAYECTORIA — Editorial credential layout
   ========================================================= */
.trust {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 15% 0%, rgba(242,142,30,.08), transparent 45%),
    radial-gradient(ellipse at 85% 100%, var(--mint-glow-2), transparent 50%);
  overflow: hidden;
}
.trust .section__title { max-width: 22ch; }
.trust__lede { max-width: 58ch; margin-bottom: 0; }

.trust__split {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 32px;
  margin-top: 40px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .trust__split { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- LEFT: Proof card (event credential aesthetic) ---------- */
.proof {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(78,217,176,.04), transparent 60%),
    linear-gradient(180deg, rgba(15,39,64,.95), rgba(10,25,41,.95));
  padding: 32px 36px 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.proof::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--mint), transparent 80%);
  box-shadow: 0 0 16px var(--mint-glow);
}
.proof::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 28px,
    rgba(78,217,176,.025) 28px,
    rgba(78,217,176,.025) 29px
  );
  pointer-events: none;
  opacity: .6;
}
.proof > * { position: relative; z-index: 1; }

.proof__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--line);
}
.proof__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mint);
  padding: 6px 10px;
  border: 1px solid var(--line-mint);
  border-radius: 4px;
  background: rgba(78,217,176,.06);
  width: max-content;
}
.proof__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(78,217,176,.25);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(78,217,176,.25); }
  50%      { box-shadow: 0 0 0 6px rgba(78,217,176,.10); }
}
.proof__head-logo {
  background: #fff;
  border-radius: var(--r-sm);
  padding: 6px;
  display: grid;
  place-items: center;
  width: 88px; height: 88px;
  box-shadow: 0 6px 20px -8px rgba(0,0,0,.4);
  flex-shrink: 0;
}
.proof__head-logo img { display: block; width: 100%; height: 100%; object-fit: contain; }

/* Hero stat moment */
.proof__hero {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.proof__hero-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(60px, 8vw, 112px);
  line-height: .85;
  color: var(--mint);
  letter-spacing: -0.02em;
  text-shadow: 0 0 60px var(--mint-glow);
  display: inline-flex;
  align-items: baseline;
}
.proof__plus {
  font-size: .55em;
  color: var(--mint);
  margin-left: 4px;
}
.proof__hero-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proof__hero-text strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  text-transform: uppercase;
  color: var(--text-strong);
  letter-spacing: 0;
  line-height: 1.1;
}
.proof__hero-text small {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Secondary stats row */
.proof__row {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 36px);
  padding: 18px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  flex-wrap: wrap;
}
.proof-stat { display: flex; flex-direction: column; gap: 4px; }
.proof-stat__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}
.proof-stat__num sup {
  font-size: .5em;
  color: var(--mint);
  vertical-align: super;
  margin-left: 2px;
}
.proof-stat__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.proof__div {
  width: 1px;
  align-self: stretch;
  background: var(--line);
}
@media (max-width: 560px) {
  .proof__div { display: none; }
  .proof__row { gap: 18px; }
}

/* Footer "OPERATED BY" credential */
.proof__foot {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
}
.proof__foot-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mint);
  white-space: nowrap;
}
.proof__foot-logo {
  background: #fff;
  border-radius: var(--r-sm);
  padding: 8px 14px;
  display: grid;
  place-items: center;
  height: 44px;
  box-shadow: 0 6px 16px -6px rgba(0,0,0,.4);
}
.proof__foot-logo img { display: block; max-height: 28px; width: auto; }
.proof__foot-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  color: var(--text-dim);
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .proof__foot { grid-template-columns: 1fr; gap: 10px; }
  .proof__foot-logo { justify-self: start; }
}

/* ---------- RIGHT: Leader / founder card ---------- */
.leader {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 80% 0%, rgba(78,217,176,.12), transparent 55%),
    linear-gradient(180deg, rgba(15,39,64,.92), rgba(10,25,41,.92));
  padding: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.leader::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px; height: 2px;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint-glow);
}

/* Avatar with concentric broadcasting rings */
.leader__portrait {
  position: relative;
  width: 96px; height: 96px;
  margin-bottom: 10px;
}
.leader__avatar {
  position: relative;
  width: 96px; height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--mint), var(--mint-2));
  color: #042018;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: .04em;
  box-shadow:
    0 0 0 4px rgba(78,217,176,.14),
    0 18px 48px -10px var(--mint-glow);
  z-index: 2;
}
.leader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--line-mint);
  pointer-events: none;
  animation: leader-ring 3s cubic-bezier(.2,.7,.3,1) infinite;
  z-index: 1;
}
.leader__ring--1 { animation-delay: 0s; }
.leader__ring--2 { animation-delay: 1.5s; }
@keyframes leader-ring {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(2.1); opacity: 0; }
}

.leader__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mint);
  margin: 0;
}
.leader__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: .98;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--text-strong);
  margin: 4px 0 6px 0;
  display: flex;
  flex-direction: column;
}
.leader__name .accent { color: var(--mint); }
.leader__role {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 18px 0;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}

/* Pulled quote */
.leader__quote {
  position: relative;
  margin: 0;
  padding: 0 0 0 36px;
}
.leader__quote-mark {
  position: absolute;
  left: -4px;
  top: -22px;
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  color: var(--mint);
  opacity: .35;
  pointer-events: none;
  user-select: none;
}
.leader__quote p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 980px) {
  .leader { padding: 32px 28px; }
  .proof { padding: 28px 24px; }
}

/* =========================================================
   THANK YOU PAGE
   ========================================================= */
.thanks-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding: clamp(60px, 10vw, 120px) 0 80px;
}

.thanks {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.thanks__icon {
  width: 96px; height: 96px;
  margin: 0 auto 28px;
  color: var(--mint);
  filter: drop-shadow(0 0 30px var(--mint-glow));
  animation: thanks-in .7s cubic-bezier(.2,.7,.2,1) both;
}
.thanks__icon svg { width: 100%; height: 100%; }
.thanks__icon circle {
  stroke-dasharray: 170;
  stroke-dashoffset: 170;
  animation: thanks-circle 1s cubic-bezier(.2,.7,.2,1) .1s forwards;
  transform-origin: center;
}
.thanks__check {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: thanks-check 0.7s cubic-bezier(.2,.7,.2,1) .8s forwards;
}
@keyframes thanks-in {
  0%   { opacity: 0; transform: scale(.8); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes thanks-circle { to { stroke-dashoffset: 0; } }
@keyframes thanks-check  { to { stroke-dashoffset: 0; } }

.thanks__kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mint);
  margin: 0 0 16px;
}

.thanks__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-strong);
  margin: 0 0 24px;
}
.thanks__title span { display: block; }
.thanks__title .accent { color: var(--mint); }

.thanks__lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 58ch;
  margin: 0 auto 28px;
}

.thanks__email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line-mint);
  border-radius: 4px;
  background: rgba(78,217,176,.06);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--text-muted);
  margin: 0 auto 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.thanks__email strong { color: var(--mint); font-weight: 600; word-break: break-all; }

.thanks__steps {
  list-style: none;
  padding: 0;
  margin: 64px 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
@media (max-width: 820px) {
  .thanks__steps { grid-template-columns: 1fr; }
}

.thanks-step {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(78,217,176,.04), transparent 60%),
    var(--bg-card);
  position: relative;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.thanks-step:hover {
  border-color: var(--line-mint);
  transform: translateY(-3px);
  box-shadow: var(--sh-mint);
}
.thanks-step__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  color: var(--mint);
  line-height: 1;
  letter-spacing: -.01em;
  margin-bottom: 4px;
}
.thanks-step__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  text-transform: uppercase;
  color: var(--text-strong);
  margin: 0;
  line-height: 1.1;
}
.thanks-step__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 6px;
}
.thanks-step__time {
  align-self: flex-start;
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mint);
  padding: 5px 9px;
  border: 1px solid var(--line-mint);
  border-radius: 4px;
  background: rgba(78,217,176,.06);
}

.thanks__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
}

/* Minimal nav/footer variants */
.nav--minimal { border-bottom: 1px solid var(--line); }
.footer--minimal { padding-top: 0; }
.footer--minimal .footer__base { border-top: 1px solid var(--line); }
