:root {
            --primary: #1a1a1a;
            --primary-dark: #000000;
            --secondary: #10b981;
            --cta-orange: #1a1a1a;
            --cta-orange-dark: #000000;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            overflow-x: hidden;
        }
        
        /* Navigation Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        .navbar-nav .nav-link {
            font-weight: 500;
            margin: 0 0.5rem;
            color: var(--dark);
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }
        
        .navbar-nav .nav-link.active {
            color: var(--primary);
            font-weight: 600;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        /* Hero Section Styles */
        .hero-section {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 80px;
            padding-bottom: 3rem;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
            top: -300px;
            right: -200px;
            z-index: 0;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%);
            bottom: -200px;
            left: -100px;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-weight: 700;
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--gray);
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .btn-primary-custom {
            background-color: var(--cta-orange);
            border-color: var(--cta-orange);
            color: white;
            padding: 0.75rem 2rem;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--cta-orange-dark);
            border-color: var(--cta-orange-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: white;
        }
        
        .btn-outline-custom {
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 0.75rem 2rem;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-custom:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        
        .hero-image {
            position: relative;
            z-index: 1;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        /* Offset for fixed navbar on inner pages */
        .page-top {
            padding-top: 100px;
        }

        .feature-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(99, 102, 241, 0.1);
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            max-width: 100%;
            box-sizing: border-box;
        }

        .feature-badge i {
            flex-shrink: 0;
            margin-right: 0.5rem;
        }
        
        .trusted-by {
            margin-top: 3rem;
        }
        
        .trusted-text {
            font-size: 0.875rem;
            color: var(--gray);
            margin-bottom: 1rem;
        }
        
        .company-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 1.25rem 2rem;
            align-items: center;
        }

        .company-logo {
            height: 24px;
            max-width: 100px;
            opacity: 0.7;
            filter: grayscale(1);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .company-logo:hover {
            opacity: 1;
            filter: grayscale(0);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-image {
                margin-top: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding-top: 100px;
            }

            .hero-title {
                font-size: 2rem;
            }
            
            .company-logos {
                flex-wrap: wrap;
                justify-content: flex-start;
                gap: 1rem 1.5rem;
            }

            .company-logo {
                height: 20px;
                max-width: 80px;
            }
            
            .navbar-collapse {
                background: white;
                padding: 1rem;
                border-radius: 8px;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
                margin-top: 1rem;
            }
        }










/* ============================================================
   HERO DASHBOARD MOCKUP — REDESIGN
   ============================================================ */

/* Wrapper principal */
.dashboard-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,.13), 0 0 0 1px rgba(0,0,0,.04);
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
}

/* Dots de janela (macOS style) */
.db-dot { display:inline-block; width:10px; height:10px; border-radius:50%; }
.db-dot-red    { background:#ff5f57; }
.db-dot-yellow { background:#febc2e; }
.db-dot-green  { background:#28c840; }

/* Dashboard header */
.dashboard-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:1rem;
}
.dashboard-nav { display:flex; gap:1.25rem; }
.dashboard-nav-item { font-size:.78rem; color:var(--gray); font-weight:500; cursor:pointer; }
.dashboard-nav-item.active { color:var(--primary); border-bottom:2px solid var(--primary); padding-bottom:2px; }

/* Body: mapa + sidebar */
.db-body {
    display:grid;
    grid-template-columns: 1fr 140px;
    gap:1rem;
}

/* ---- MAPA ---- */
.db-map {
    border-radius:10px;
    overflow:hidden;
    position:relative;
    background:#f0fdf4;
    border:1px solid #dcfce7;
    min-height:195px;
}

/* Grid de heatmap */
.map-grid {
    display:grid;
    grid-template-columns:repeat(7, 1fr);
    grid-template-rows:repeat(6, 1fr);
    height:100%;
    width:100%;
    position:absolute;
    inset:0;
}
.mc {
    opacity:.75;
    transition:opacity .3s;
}
.mc.low    { background:#dcfce7; }
.mc.mid    { background:#86efac; }
.mc.high   { background:#22c55e; }
.mc.top    { background:#15803d; }

/* Célula pulsante */
.pulse-cell {
    animation: cellPulse 2.2s ease-in-out infinite;
}
@keyframes cellPulse {
    0%,100% { opacity:.75; }
    50%      { opacity:1; filter:brightness(1.15); }
}

/* Pins */
.map-pin { position:absolute; display:flex; flex-direction:column; align-items:center; z-index:2; }
.pin-top { top:25%; left:35%; }
.pin-secondary { top:58%; left:65%; }

.pin-dot {
    width:14px; height:14px; border-radius:50%;
    background:#6366f1;
    border:2px solid white;
    box-shadow:0 2px 8px rgba(99,102,241,.5);
    position:relative; z-index:2;
}
.pin-dot-mid { background:#f59e0b; box-shadow:0 2px 8px rgba(245,158,11,.4); }

.pin-ripple {
    position:absolute;
    top:50%; left:50%;
    transform:translate(-50%,-50%);
    width:14px; height:14px;
    border-radius:50%;
    background:rgba(99,102,241,.35);
    animation:ripple 2s ease-out infinite;
    z-index:1;
}
@keyframes ripple {
    0%   { transform:translate(-50%,-50%) scale(1);   opacity:.8; }
    100% { transform:translate(-50%,-50%) scale(3.2); opacity:0;  }
}

.pin-label {
    margin-top:4px;
    font-size:.65rem; font-weight:700;
    background:#6366f1; color:white;
    padding:2px 7px; border-radius:20px;
    white-space:nowrap;
    box-shadow:0 2px 6px rgba(99,102,241,.35);
}
.pin-label-mid {
    background:#f59e0b;
    box-shadow:0 2px 6px rgba(245,158,11,.35);
}

/* Legenda */
.map-legend {
    position:absolute; bottom:8px; left:8px;
    display:flex; align-items:center; gap:3px;
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(4px);
    border-radius:8px; padding:4px 8px;
    font-size:.6rem; color:var(--gray);
    z-index:3;
}
.legend-dot { width:10px; height:10px; border-radius:2px; }
.legend-text { margin-left:4px; font-weight:600; }

/* ---- SIDEBAR ---- */
.db-sidebar {
    display:flex; flex-direction:column; gap:.75rem;
}

/* Score ring card */
.score-card {
    background:#f8fafc;
    border-radius:10px;
    padding:.75rem .5rem;
    text-align:center;
    border:1px solid #e2e8f0;
}
.score-label {
    font-size:.65rem; font-weight:600;
    text-transform:uppercase; letter-spacing:.05em;
    color:var(--gray); margin-bottom:.4rem;
}
.score-ring { position:relative; width:60px; height:60px; margin:0 auto .3rem; }
.ring-svg { width:100%; height:100%; }
.ring-progress {
    animation:ringFill 1.8s ease-out forwards;
    stroke-dashoffset:150.8;
}
@keyframes ringFill {
    to { stroke-dashoffset:22.6; }
}
.ring-value {
    position:absolute; inset:0;
    display:flex; align-items:center; justify-content:center;
    font-size:1rem; font-weight:700; color:#15803d;
}
.score-region { font-size:.6rem; color:var(--gray); }

/* Mini métricas */
.db-mini-metrics {
    display:flex; flex-direction:column; gap:.4rem;
}
.mini-metric {
    background:#f8fafc;
    border-radius:8px; padding:.4rem .6rem;
    display:flex; align-items:center; justify-content:space-between;
    border:1px solid #e2e8f0;
}
.mini-val { font-size:.8rem; font-weight:700; }
.mini-lbl { font-size:.6rem; color:var(--gray); }

/* Insight IA */
.ia-insight {
    background:linear-gradient(135deg,#eef2ff,#f0fdf4);
    border:1px solid #c7d2fe;
    border-radius:10px;
    padding:.6rem .7rem;
}
.ia-badge {
    font-size:.6rem; font-weight:700;
    color:var(--primary);
    margin-bottom:.3rem;
}
.ia-text {
    font-size:.62rem; color:#374151; line-height:1.4; margin:0;
}

/* Responsivo */
@media (max-width:768px) {
    .db-body { grid-template-columns:1fr; }
    .db-sidebar { flex-direction:row; flex-wrap:wrap; }
    .score-card { flex:1; min-width:120px; }
    .db-mini-metrics { flex-direction:row; flex:2; }
    .ia-insight { width:100%; }
}

/* Remove o fundo cinza padrão do dropdown */
.navbar .dropdown-menu {
  border-radius: 12px;
}

.navbar .dropdown-item:hover {
  background: #f8f9fa;
  border-radius: 6px;
}

/* Sombras finas e premium */
.dropdown-menu {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Melhor espaçamento no mobile */
@media (max-width: 991px) {
  .dropdown-menu {
    padding: 1rem !important;
  }
}





/* ============================================================
   FEATURE PAGE MOCKUPS — base compartilhado + variações
   ============================================================ */

.feat-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,.10), 0 0 0 1px rgba(0,0,0,.04);
    padding: 1.5rem;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

/* Cabeçalho do mockup */
.feat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid #f1f5f9;
}
.feat-title { font-size: .85rem; font-weight: 700; color: var(--dark); }
.feat-tag {
    font-size: .62rem; font-weight: 600;
    background: #eef2ff; color: var(--primary);
    padding: 3px 10px; border-radius: 20px;
}

/* Filter chips */
.filter-chips { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.chip {
    font-size: .6rem; font-weight: 600;
    padding: 3px 10px; border-radius: 20px;
    border: 1px solid #e2e8f0; color: var(--gray);
    cursor: default;
}
.chip.active { background: var(--primary); color: white; border-color: var(--primary); }

/* Métrica genérica */
.metric-item {
    display: flex; justify-content: space-between; align-items: center;
    background: #f8fafc; border-radius: 8px;
    padding: .4rem .75rem; border: 1px solid #e2e8f0;
    margin-bottom: .4rem;
}
.metric-label { font-size: .62rem; color: var(--gray); }
.metric-value { font-size: .75rem; font-weight: 700; color: var(--dark); }

/* Barra horizontal */
.bar-row { display: flex; align-items: center; gap: .5rem; margin-bottom: .35rem; }
.bar-label { font-size: .6rem; color: var(--gray); width: 75px; text-align: right; flex-shrink: 0; }
.bar-track { flex: 1; background: #f1f5f9; border-radius: 4px; height: 10px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; transition: width .8s ease; }
.bar-val { font-size: .6rem; color: var(--gray); width: 28px; flex-shrink: 0; }

/* Cards de shopping */
.shop-item {
    display: flex; align-items: center; gap: .75rem;
    background: #f8fafc; border-radius: 10px;
    padding: .6rem .75rem; border: 1px solid #e2e8f0;
    margin-bottom: .5rem;
}
.shop-icon {
    width: 34px; height: 34px; border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: .8rem; color: white;
}
.shop-name { font-size: .72rem; font-weight: 700; color: var(--dark); }
.shop-city { font-size: .6rem; color: var(--gray); }
.shop-score { font-size: .85rem; font-weight: 700; }

/* Card de ponto selecionado */
.point-card {
    background: white; border-radius: 10px;
    border: 1px solid #e2e8f0; padding: .75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.point-type { font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.point-name { font-size: .8rem; font-weight: 700; color: var(--dark); margin: .2rem 0 .5rem; }
.point-metrics { display: flex; gap: .4rem; }
.point-metric { flex: 1; text-align: center; background: #f8fafc; border-radius: 6px; padding: .3rem; }
.point-metric-val { font-size: .72rem; font-weight: 700; color: var(--primary); }
.point-metric-lbl { font-size: .55rem; color: var(--gray); }

/* Relatório */
.report-export {
    font-size: .6rem; color: var(--primary);
    background: #eef2ff; padding: 3px 10px;
    border-radius: 6px; font-weight: 600;
}
.report-bars { display: flex; align-items: flex-end; gap: 5px; height: 65px; padding: 0 .5rem; }
.report-bar { flex: 1; border-radius: 3px 3px 0 0; }
.report-metric {
    background: #f8fafc; border-radius: 8px;
    padding: .45rem .6rem; border: 1px solid #e2e8f0;
    margin-bottom: .4rem;
}
.report-metric-val { font-size: .85rem; font-weight: 700; color: var(--dark); }
.report-metric-lbl { font-size: .58rem; color: var(--gray); }

/* Insight IA reutilizável */
.feat-insight {
    background: linear-gradient(135deg, #eef2ff, #f0fdf4);
    border: 1px solid #c7d2fe; border-radius: 10px;
    padding: .6rem .75rem; margin-top: .75rem;
    font-size: .62rem; color: #374151; line-height: 1.5;
}
.feat-insight-badge {
    font-size: .58rem; font-weight: 700;
    color: var(--primary); margin-bottom: .25rem;
}

/* Animação de entrada do mockup */
@media (prefers-reduced-motion: no-preference) {
    .feat-mockup { animation: float 6s ease-in-out infinite; }
}

/* ============================================================
   HOME — SEÇÕES NOVAS
   ============================================================ */

/* --- Barra de anúncio --- */
.announcement-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1032;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    color: white;
    font-size: .82rem;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    gap: 1rem;
}
.ann-btn {
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.5);
    transition: border-color .2s;
    white-space: nowrap;
}
.ann-btn:hover { color: white; border-color: white; }
.ann-close {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255,255,255,.7);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}
.ann-close:hover { color: white; }

/* Quando barra está visível: empurra navbar e hero */
.has-announcement .navbar { top: 40px; }
.has-announcement .hero-section { padding-top: 130px; }
@media (max-width: 768px) {
    .has-announcement .hero-section { padding-top: 150px; }
    .announcement-bar { font-size: .72rem; padding: 0 2.5rem 0 1rem; gap: .5rem; }
}

/* Quando barra é fechada */
body:not(.has-announcement) .announcement-bar { display: none; }
body:not(.has-announcement) .navbar { top: 0; }

/* --- Stats / Números em destaque --- */
.stats-section { border-bottom: 1px solid #f1f5f9; }
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: .25rem;
}
.stat-desc {
    font-size: .85rem;
    color: var(--gray);
    font-weight: 500;
}
@media (max-width: 768px) { .stat-number { font-size: 1.9rem; } }

/* --- Antes vs Criala --- */
.comparison-col {
    border-radius: 16px;
    padding: 2rem;
}
.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: .9rem;
    font-size: .95rem;
}
.comparison-icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.comparison-icon.bad  { background: #fee2e2; color: #dc2626; }
.comparison-icon.good { background: #dcfce7; color: #16a34a; }

/* --- Como começa --- */
.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}
.steps-wrapper::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.66% + 1rem);
    right: calc(16.66% + 1rem);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 0;
}
.step-card { position: relative; z-index: 1; text-align: center; }
.step-number {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(99,102,241,.3);
}
.step-title { font-weight: 700; margin-bottom: .5rem; }
.step-desc { font-size: .9rem; color: var(--gray); }
@media (max-width: 768px) {
    .steps-wrapper { grid-template-columns: 1fr; gap: 1.5rem; }
    .steps-wrapper::before { display: none; }
}

/* --- Depoimentos --- */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    border: 1px solid #f1f5f9;
    height: 100%;
    position: relative;
}
.testimonial-quote {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--primary);
    opacity: .25;
    font-family: Georgia, serif;
    margin-bottom: .5rem;
}
.testimonial-text {
    font-size: .95rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .95rem; color: var(--dark); }
.testimonial-role { font-size: .8rem; color: var(--gray); }

/* --- FAQ --- */
.faq-item {
    border-bottom: 1px solid #f1f5f9;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 0;
    font-weight: 600;
    cursor: pointer;
    color: var(--dark);
    gap: 1rem;
    user-select: none;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem;
    flex-shrink: 0;
    transition: transform .3s, background .3s;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: white;
}
.faq-answer {
    display: none;
    padding-bottom: 1rem;
    color: var(--gray);
    font-size: .95rem;
    line-height: 1.6;
}
.faq-item.open .faq-answer { display: block; }

/* Desktop cards do blog */
.posts .image-placeholder{
  position: relative;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  background: #eef2ff; /* só um placeholder claro */
}

/* Garante que a imagem cobre o box */
.posts .image-placeholder img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s ease;
}

/* Só a imagem fica visível quando carregar */
.posts .image-placeholder.image-loaded img{
  opacity: 1;
}

/* Garante que título e data sempre apareçam */
.posts h5,
.posts small{
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 1;
}

/* ============================================================
   LANDING 2026 — CRIALA
   ============================================================ */

:root {
    --site-bg: #fbf9f4;
    --site-surface: #ffffff;
    --site-surface-soft: #f2f2f2;
    --site-ink: #161616;
    --site-muted: #6b6b6b;
    --site-border: rgba(20, 20, 20, 0.12);
    --site-primary: #1a1a1a;
    --site-primary-deep: #000000;
    --site-lilac: #ececec;
    --site-cyan: #f2f2f2;
    --site-mint: #eef2ee;
    --site-shadow: 0 24px 70px rgba(0, 0, 0, 0.10);

    /* Sobrescreve o azul padrão do Bootstrap para alinhar badges,
       botões e textos "primary" à identidade em cinza/preto */
    --bs-primary: #1a1a1a;
    --bs-primary-rgb: 26, 26, 26;
    --bs-primary-text-emphasis: #1a1a1a;
    --bs-primary-bg-subtle: #ececec;
    --bs-primary-border-subtle: #d4d4d4;
    --bs-link-color: #1a1a1a;
    --bs-link-color-rgb: 26, 26, 26;
    --bs-link-hover-color: #000000;
    --bs-link-hover-color-rgb: 0, 0, 0;
}

.btn-primary {
    --bs-btn-bg: #1a1a1a;
    --bs-btn-border-color: #1a1a1a;
    --bs-btn-hover-bg: #000000;
    --bs-btn-hover-border-color: #000000;
    --bs-btn-active-bg: #000000;
    --bs-btn-active-border-color: #000000;
    --bs-btn-disabled-bg: #1a1a1a;
    --bs-btn-disabled-border-color: #1a1a1a;
}


body {
    font-family: 'Manrope', sans-serif;
    background: var(--site-bg);
    color: var(--site-ink);
}

.site-homepage {
    overflow: clip;
}

.site-navbar {
    background: rgba(251, 249, 244, 0.86) !important;
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(20, 20, 20, 0.08);
    box-shadow: none !important;
    padding: .92rem 0;
    transition: padding .24s ease, box-shadow .24s ease, background-color .24s ease;
}

.site-navbar.is-scrolled {
    padding: .72rem 0;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08) !important;
    background: rgba(251, 249, 244, 0.96) !important;
}

.site-navbar-inner {
    gap: 1.25rem;
}

.site-brand img {
    display: block;
}

.site-navbar-links .nav-link {
    color: var(--site-ink);
    font-size: .95rem;
    font-weight: 600;
    margin: 0 .15rem;
}

.site-navbar-links .nav-link:hover,
.site-navbar-links .nav-link:focus {
    color: var(--site-primary);
}

.site-navbar-toggler {
    border: none;
}

.site-navbar-toggler:focus {
    box-shadow: none;
}

.site-navbar-actions {
    display: flex;
    align-items: center;
    gap: .9rem;
}

.site-login-link {
    color: var(--site-ink);
    font-size: .92rem;
    font-weight: 700;
    text-decoration: none;
}

.site-login-link:hover {
    color: var(--site-primary);
}

.site-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: .15rem;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    padding: .2rem;
}

.site-lang-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    border-radius: 999px;
    padding: .32rem .55rem;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .03em;
    color: var(--site-muted);
    text-decoration: none;
    transition: background-color .18s ease, color .18s ease;
}

.site-lang-option:hover {
    color: var(--site-ink);
}

.site-lang-option.is-active {
    background: var(--site-ink);
    color: #fff;
}

.site-btn-primary,
.site-btn-secondary,
.hero-card-cta,
.platform-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: .86rem 1.3rem;
    font-size: .92rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform .24s ease, box-shadow .24s ease, background-color .24s ease, border-color .24s ease, color .24s ease;
}

.site-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--site-primary), var(--site-primary-deep));
    box-shadow: 0 14px 26px rgba(20, 20, 20, 0.24);
}

.site-btn-primary:hover,
.site-btn-primary:focus,
.hero-card-cta:hover,
.hero-card-cta:focus,
.platform-filter-btn:hover,
.platform-filter-btn:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(20, 20, 20, 0.28);
}

.site-btn-secondary {
    color: var(--site-ink);
    background: rgba(255, 255, 255, 0.74);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.site-btn-secondary:hover,
.site-btn-secondary:focus {
    color: var(--site-primary);
    border-color: rgba(20, 20, 20, 0.22);
    transform: translateY(-2px);
}

.site-btn-sm {
    padding: .78rem 1.18rem;
    font-size: .88rem;
}

.site-section {
    padding: 5rem 0;
}

.site-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .42rem .84rem;
    border-radius: 999px;
    background: rgba(20, 20, 20, 0.08);
    color: var(--site-primary);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .68rem;
    font-weight: 800;
}

.site-eyebrow.is-live::before {
    content: "";
    width: .48rem;
    height: .48rem;
    border-radius: 50%;
    background: #ff5b6e;
    box-shadow: 0 0 0 .22rem rgba(255, 91, 110, 0.14);
}

.section-heading {
    max-width: 640px;
}

.section-heading-centered {
    margin: 0 auto 2.8rem;
    text-align: center;
}

.section-heading h2,
.live-section-head h2,
.platform-copy h2,
.cta-shell h2 {
    margin: .95rem 0 0;
    font-size: clamp(2rem, 4vw, 3.45rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.04em;
    font-family: 'Space Grotesk', sans-serif;
}

.section-heading h2 span,
.live-section-head h2 span,
.landing-title span {
    color: var(--site-primary);
}

.section-heading p,
.live-section-head p,
.platform-copy p,
.cta-shell p,
.landing-subtitle {
    color: var(--site-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.landing-hero {
    position: relative;
    padding: 8rem 0 4.2rem;
}

.landing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(20, 20, 20, 0.10), transparent 28%),
        radial-gradient(circle at 84% 74%, rgba(160, 160, 160, 0.28), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 249, 244, 0.75));
    pointer-events: none;
}

.landing-hero::after {
    content: "";
    position: absolute;
    inset: 4.5rem -4% 2rem 44%;
    background:
        radial-gradient(circle at 56% 42%, rgba(30, 30, 30, 0.28), rgba(30, 30, 30, 0) 26%),
        radial-gradient(circle at 74% 58%, rgba(170, 170, 170, 0.24), rgba(170, 170, 170, 0) 34%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 78 68'%3E%3Cpath d='M19.5 1H58.5L77 34L58.5 67H19.5L1 34Z' fill='none' stroke='%23d9f0ff' stroke-width='1'/%3E%3C/svg%3E") 0 0 / 92px 80px repeat,
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 78 68'%3E%3Cpath d='M19.5 1H58.5L77 34L58.5 67H19.5L1 34Z' fill='none' stroke='%23e9f6ff' stroke-width='1'/%3E%3C/svg%3E") 46px 40px / 92px 80px repeat;
    opacity: .72;
    pointer-events: none;
    z-index: 0;
}

.hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    gap: 2rem;
    align-items: center;
}

.landing-title {
    margin: 1.1rem 0 1.25rem;
    font-size: clamp(2.8rem, 5.6vw, 5rem);
    line-height: 1;
    letter-spacing: -.065em;
    font-weight: 800;
    max-width: 620px;
    font-family: 'Space Grotesk', sans-serif;
}

.landing-title span {
    display: block;
}

.landing-subtitle {
    max-width: 560px;
    margin-bottom: 1.75rem;
}

.landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-bottom: 1.9rem;
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .8rem;
    max-width: 610px;
}

.hero-stat-card {
    min-height: 96px;
    padding: .95rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(20, 20, 20, 0.1);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-stat-card strong {
    font-size: 1.36rem;
    line-height: 1;
    font-weight: 800;
}

.hero-stat-card span {
    color: var(--site-muted);
    font-size: .72rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero-stat-card-accent {
    background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(240, 240, 240, .92));
}

.hero-visual {
    position: relative;
    min-height: 580px;
    isolation: isolate;
    border-radius: 32px;
    background: linear-gradient(155deg, #100f0f 0%, #050505 62%, #000000 100%);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 62% 42%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05) 24%, transparent 52%),
        radial-gradient(circle at 14% 86%, rgba(255, 255, 255, 0.08), transparent 46%);
    z-index: 0;
    pointer-events: none;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-visual-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(50px);
    opacity: .55;
    z-index: 0;
}

.hero-visual-glow-a {
    inset: 4% 2% auto auto;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.16);
    animation: heroGlow 8s ease-in-out infinite;
}

.hero-visual-glow-b {
    inset: auto auto 4% 4%;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.1);
    animation: heroGlow 9.5s ease-in-out infinite reverse;
}

.hero-honeycomb {
    position: absolute;
    inset: .8rem 0 1.2rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: .38rem;
    justify-content: center;
    z-index: 1;
}

.hero-honeycomb::before {
    content: "";
    position: absolute;
    inset: 32% 20% 8% 10%;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08) 34%, transparent 64%);
    filter: blur(18px);
    z-index: 0;
}

.hero-hex-row {
    display: flex;
    gap: .38rem;
    position: relative;
    z-index: 1;
}

.hero-hex-row.is-shifted {
    transform: translateX(1.82rem);
}

.hero-hex {
    width: 52px;
    height: 60px;
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: hexPulse 7.5s ease-in-out infinite;
}

.hero-hex:nth-child(3n) { animation-duration: 8.8s; }
.hero-hex:nth-child(4n) { animation-duration: 6.6s; }

.hero-hex.is-warm {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.16);
}

.hero-hex.is-cool {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.06);
}

.hero-hex.is-hot {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(215, 215, 215, 0.65));
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow:
        0 0 24px rgba(255, 255, 255, 0.35),
        0 12px 28px rgba(0, 0, 0, 0.4);
}

.hero-card {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), 0 6px 18px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(18px);
}

.hero-location-card {
    top: 1.5rem;
    right: 1.4rem;
    z-index: 3;
    width: 286px;
    padding: 1rem;
    border-radius: 20px;
    animation: floatCard 7s ease-in-out infinite;
}

.hero-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.hero-card-head strong {
    display: block;
    font-size: .95rem;
    font-weight: 800;
}

.hero-card-head span {
    display: block;
    color: var(--site-muted);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: .18rem;
}

.hero-card-head button {
    border: none;
    background: transparent;
    color: rgba(0, 0, 0, 0.45);
    font-size: 1rem;
    line-height: 1;
    padding: 0;
}

.hero-score-row {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin: .9rem 0;
}

.hero-score-ring {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: conic-gradient(var(--site-primary) 0deg 313deg, rgba(20, 20, 20, 0.12) 313deg 360deg);
    position: relative;
    flex-shrink: 0;
}

.hero-score-ring::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: #fff;
}

.hero-score-ring span {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    font-weight: 800;
}

.hero-score-ring-small {
    width: 48px;
    height: 48px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #e5f7ea;
    color: #228251;
    padding: .34rem .68rem;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero-score-meta small {
    display: block;
    margin-top: .3rem;
    color: var(--site-muted);
    font-size: .74rem;
}

.hero-insight-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.hero-insight-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .8rem;
    padding: .38rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: .84rem;
}

.hero-insight-list li:last-child {
    border-bottom: none;
}

.hero-insight-list span {
    color: var(--site-muted);
}

.hero-insight-list strong {
    font-size: .84rem;
    font-weight: 800;
}

.hero-card-cta,
.platform-filter-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--site-primary), var(--site-primary-deep));
    color: #fff;
    padding: .84rem 1rem;
}

.hero-ai-card {
    left: 1.4rem;
    top: 1.5rem;
    z-index: 2;
    width: 190px;
    border-radius: 16px;
    padding: .92rem;
    animation: floatCard 9s ease-in-out infinite reverse;
}

.hero-card-tag {
    display: inline-flex;
    margin-bottom: .6rem;
    color: var(--site-primary);
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
}

.hero-ai-card strong,
.hero-scale-card span {
    font-size: .88rem;
    font-weight: 800;
}

.hero-ai-card p {
    margin: .45rem 0 0;
    color: var(--site-muted);
    font-size: .74rem;
    line-height: 1.55;
}

.hero-scale-card {
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    z-index: 2;
    width: 240px;
    border-radius: 16px;
    padding: .84rem .94rem;
    animation: floatCard 8.5s ease-in-out infinite;
}

.hero-scale-track {
    position: relative;
    width: 100%;
    height: .62rem;
    border-radius: 999px;
    background: rgba(20, 20, 20, 0.12);
    overflow: hidden;
    margin: .7rem 0 .42rem;
}

.hero-scale-fill {
    height: 100%;
    width: 84%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(20, 20, 20, 0.22), rgba(20, 20, 20, 0.98));
    animation: scalePulse 6s ease-in-out infinite;
}

.hero-scale-labels {
    display: flex;
    justify-content: space-between;
    color: var(--site-muted);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    z-index: 1;
}

.hero-orbit::before {
    content: "";
    position: absolute;
    width: .62rem;
    height: .62rem;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 .3rem rgba(255, 255, 255, 0.14), 0 0 14px rgba(255, 255, 255, 0.5);
}

.hero-orbit-a {
    width: 92px;
    height: 92px;
    left: 57%;
    top: 28%;
    animation: orbitSpin 12s linear infinite;
}

.hero-orbit-a::before {
    top: -4px;
    left: 38px;
}

.hero-orbit-b {
    width: 76px;
    height: 76px;
    left: 32%;
    bottom: 16%;
    animation: orbitSpin 10s linear infinite reverse;
}

.hero-orbit-b::before {
    left: calc(100% - 4px);
    top: 33px;
}

.trust-strip {
    padding: 1.25rem 0 3.7rem;
}

.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-strip-label {
    color: var(--site-muted);
    font-size: .76rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 800;
    white-space: nowrap;
}

.trust-strip-wordmarks {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.trust-strip-wordmarks span {
    color: rgba(0, 0, 0, 0.56);
    font-size: .82rem;
    letter-spacing: .16em;
    text-transform: lowercase;
    font-weight: 700;
}

.intelligence-section {
    padding-top: 2.2rem;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border: 1px solid rgba(20, 20, 20, 0.1);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
}

.capability-card {
    min-height: 280px;
    padding: 1.35rem 1.1rem 1.08rem;
    border-right: 1px solid rgba(20, 20, 20, 0.08);
    display: flex;
    flex-direction: column;
}

.capability-card:last-child {
    border-right: none;
}

.capability-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(20, 20, 20, 0.08);
    color: var(--site-primary);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.capability-card h3 {
    font-size: .98rem;
    font-weight: 800;
    margin-bottom: .7rem;
}

.capability-card p {
    font-size: .84rem;
    color: var(--site-muted);
    line-height: 1.65;
    margin-bottom: auto;
}

.capability-visual {
    position: relative;
    margin-top: 1.25rem;
    min-height: 68px;
}

.capability-dots,
.capability-bars,
.capability-network,
.capability-line,
.capability-wave {
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(242, 242, 242, 0.8), rgba(255,255,255,0.55));
}

.capability-dots::before,
.capability-bars::before,
.capability-network::before,
.capability-line::before,
.capability-wave::before {
    content: "";
    position: absolute;
    inset: 14px;
}

.capability-dots::before {
    background:
        radial-gradient(circle at 8% 60%, var(--site-primary) 0 2px, transparent 3px),
        radial-gradient(circle at 18% 40%, var(--site-primary) 0 2px, transparent 3px),
        radial-gradient(circle at 28% 70%, var(--site-primary) 0 2px, transparent 3px),
        radial-gradient(circle at 42% 52%, var(--site-primary) 0 2px, transparent 3px),
        radial-gradient(circle at 56% 30%, var(--site-primary) 0 2px, transparent 3px),
        radial-gradient(circle at 66% 68%, var(--site-primary) 0 2px, transparent 3px),
        radial-gradient(circle at 78% 44%, var(--site-primary) 0 2px, transparent 3px),
        radial-gradient(circle at 92% 62%, var(--site-primary) 0 2px, transparent 3px);
}

.capability-bars::before {
    background:
        linear-gradient(var(--site-primary), var(--site-primary)) 4% 90% / 10% 24%,
        linear-gradient(var(--site-primary), var(--site-primary)) 18% 90% / 10% 48%,
        linear-gradient(var(--site-primary), var(--site-primary)) 32% 90% / 10% 38%,
        linear-gradient(var(--site-primary), var(--site-primary)) 46% 90% / 10% 68%,
        linear-gradient(var(--site-primary), var(--site-primary)) 60% 90% / 10% 55%,
        linear-gradient(var(--site-primary), var(--site-primary)) 74% 90% / 10% 76%,
        linear-gradient(var(--site-primary), var(--site-primary)) 88% 90% / 10% 44%;
    background-repeat: no-repeat;
    opacity: .78;
}

.capability-network::before {
    background:
        radial-gradient(circle at 22% 30%, var(--site-primary) 0 3px, transparent 4px),
        radial-gradient(circle at 50% 62%, var(--site-primary) 0 3px, transparent 4px),
        radial-gradient(circle at 78% 30%, var(--site-primary) 0 3px, transparent 4px),
        linear-gradient(214deg, transparent calc(50% - 1px), rgba(20, 20, 20, .38) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)) 0 0 / 50% 100% no-repeat,
        linear-gradient(146deg, transparent calc(50% - 1px), rgba(20, 20, 20, .38) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)) 50% 0 / 50% 100% no-repeat;
}

.capability-line::before {
    background:
        linear-gradient(rgba(20, 20, 20, .1) 1px, transparent 1px) 0 25% / 100% 25% no-repeat,
        linear-gradient(rgba(20, 20, 20, .1) 1px, transparent 1px) 0 50% / 100% 25% no-repeat,
        linear-gradient(rgba(20, 20, 20, .1) 1px, transparent 1px) 0 75% / 100% 25% no-repeat;
}

.capability-line::after {
    content: "";
    position: absolute;
    inset: 22px 18px 18px 18px;
    border-bottom: 2px solid rgba(20, 20, 20, .15);
    clip-path: polygon(0 100%, 20% 68%, 40% 78%, 58% 46%, 76% 56%, 100% 12%, 100% 100%);
    background: linear-gradient(180deg, rgba(20, 20, 20, .12), rgba(20, 20, 20, 0) 70%);
}

.capability-wave::before {
    background:
        radial-gradient(circle at 12% 50%, rgba(20, 20, 20, .82) 0 2.5px, transparent 3.5px),
        radial-gradient(circle at 38% 34%, rgba(20, 20, 20, .82) 0 2.5px, transparent 3.5px),
        radial-gradient(circle at 64% 58%, rgba(20, 20, 20, .82) 0 2.5px, transparent 3.5px),
        radial-gradient(circle at 90% 38%, rgba(20, 20, 20, .82) 0 2.5px, transparent 3.5px);
}

.capability-wave::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-bottom: 2px solid rgba(20, 20, 20, .32);
    clip-path: polygon(0 74%, 26% 50%, 52% 66%, 78% 42%, 100% 58%, 100% 100%, 0 100%);
    background: linear-gradient(180deg, rgba(20, 20, 20, .1), rgba(20, 20, 20, 0) 70%);
}

.capability-card-score {
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(240, 240, 240, .92));
}

.capability-score {
    display: inline-flex;
    flex-direction: column;
    gap: .3rem;
    margin-top: 1.25rem;
    padding: .9rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(20, 20, 20, 0.14);
}

.capability-score strong {
    color: var(--site-primary);
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
}

.capability-score span {
    color: var(--site-muted);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
}

.live-section {
    background: linear-gradient(180deg, rgba(240, 240, 240, 0.82), rgba(225, 225, 225, 0.78));
}

.live-section-head {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(280px, .8fr);
    gap: 2.4rem;
    align-items: end;
    margin-bottom: 2.3rem;
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.signal-card {
    padding: 1.05rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(20, 20, 20, 0.08);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.signal-card-top,
.signal-card-bottom,
.platform-map-card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
}

.signal-badge {
    color: var(--site-primary);
    font-size: .69rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.signal-card-top small,
.signal-card-bottom span {
    color: var(--site-muted);
    font-size: .76rem;
}

.signal-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin: 1rem 0 .5rem;
}

.signal-card p {
    color: var(--site-muted);
    font-size: .86rem;
    line-height: 1.58;
    min-height: 72px;
}

.signal-heatmap {
    height: 82px;
    border-radius: 18px;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.08);
}

.signal-heatmap::before,
.signal-heatmap::after {
    content: "";
    position: absolute;
    inset: 0;
}

.signal-heatmap::before {
    background:
        linear-gradient(90deg, transparent 0 10%, rgba(255,255,255,.3) 10% 11%, transparent 11% 22%, rgba(255,255,255,.3) 22% 23%, transparent 23% 100%),
        linear-gradient(180deg, transparent 0 22%, rgba(255,255,255,.2) 22% 23%, transparent 23% 46%, rgba(255,255,255,.2) 46% 47%, transparent 47% 100%);
    opacity: .42;
}

.signal-heatmap::after {
    inset: 16px 18px;
    border-radius: 999px;
    filter: blur(12px);
}

.signal-heatmap-purple::after { background: radial-gradient(circle at center, rgba(20, 20, 20, .76), rgba(20, 20, 20, 0)); }
.signal-heatmap-blue::after { background: radial-gradient(circle at center, rgba(100, 100, 100, .76), rgba(100, 100, 100, 0)); }
.signal-heatmap-cyan::after { background: radial-gradient(circle at center, rgba(130, 130, 130, .62), rgba(130, 130, 130, 0)); }
.signal-heatmap-lilac::after { background: radial-gradient(circle at center, rgba(70, 70, 70, .7), rgba(70, 70, 70, 0)); }

.signal-card-bottom strong {
    font-size: 1.55rem;
    line-height: 1;
    color: var(--site-primary);
    font-weight: 800;
}

.signal-card-bottom em {
    font-style: normal;
    color: #1d8c53;
    font-size: .74rem;
    font-weight: 800;
    border-radius: 999px;
    background: #def7e8;
    padding: .2rem .48rem;
}

.platform-section {
    background: var(--site-bg);
}

.platform-shell {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: 2rem;
    align-items: center;
}

.platform-copy h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.platform-bullets {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 1.8rem;
    display: grid;
    gap: .8rem;
}

.platform-bullets li {
    position: relative;
    padding-left: 1.75rem;
    color: var(--site-muted);
    font-size: .96rem;
}

.platform-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .38rem;
    width: .82rem;
    height: .82rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--site-primary), #404040);
    box-shadow: 0 0 0 .24rem rgba(20, 20, 20, 0.1);
}

.platform-visual {
    display: grid;
    grid-template-columns: 228px 1fr;
    gap: 0;
    min-height: 500px;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(20, 20, 20, 0.1);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.08);
}

.platform-panel {
    padding: 1.08rem;
    border-right: 1px solid rgba(20, 20, 20, 0.08);
    background: rgba(255, 255, 255, 0.94);
}

.platform-panel-label {
    display: inline-flex;
    color: var(--site-muted);
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 1rem;
}

.platform-chip-group {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin-bottom: 1rem;
}

.platform-chip {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: .65rem;
    padding: .72rem .85rem;
    border-radius: 14px;
    background: rgba(20, 20, 20, 0.06);
    color: var(--site-ink);
    font-size: .82rem;
    font-weight: 700;
}

.platform-chip::after {
    content: "";
    width: 34px;
    height: 18px;
    border-radius: 999px;
    background: rgba(20, 20, 20, 0.16);
    box-shadow: inset 18px 0 0 0 rgba(255,255,255,.9);
}

.platform-chip.is-active::after {
    background: rgba(20, 20, 20, 0.92);
    box-shadow: inset -18px 0 0 0 rgba(255,255,255,.95);
}

.platform-panel label {
    display: block;
    margin: .95rem 0 .45rem;
    color: var(--site-muted);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 800;
}

.platform-select {
    padding: .86rem .92rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--site-ink);
    font-size: .9rem;
    font-weight: 600;
}

.platform-filter-btn {
    margin-top: 1.2rem;
}

.platform-map {
    position: relative;
    min-height: 500px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .09) 1px, transparent 1px) 0 0 / 18% 18%,
        linear-gradient(180deg, rgba(0, 0, 0, .09) 1px, transparent 1px) 0 0 / 18% 18%,
        linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
}

.platform-shape {
    position: absolute;
    opacity: .5;
    border: 1px solid rgba(0, 0, 0, 0.08);
    mix-blend-mode: multiply;
}

.platform-shape-a {
    inset: 16% 54% 34% 6%;
    background: rgba(140, 140, 140, 0.35);
    clip-path: polygon(8% 12%, 82% 8%, 100% 52%, 74% 100%, 0 84%);
}

.platform-shape-b {
    inset: 10% 16% 28% 40%;
    background: rgba(60, 60, 60, 0.3);
    clip-path: polygon(6% 12%, 90% 8%, 100% 58%, 66% 100%, 14% 72%);
}

.platform-shape-c {
    inset: 42% 34% 6% 12%;
    background: rgba(190, 190, 190, 0.4);
    clip-path: polygon(0 18%, 68% 0, 100% 44%, 80% 100%, 18% 82%);
}

.platform-shape-d {
    inset: 38% 0 12% 56%;
    background: rgba(170, 170, 170, 0.4);
    clip-path: polygon(10% 0, 100% 18%, 92% 100%, 0 90%, 6% 48%);
}

.platform-shape-e {
    inset: 32% 50% 16% 32%;
    background: rgba(100, 100, 100, 0.3);
    clip-path: polygon(12% 10%, 80% 0, 100% 40%, 72% 100%, 0 74%);
}

.platform-pin {
    position: absolute;
    left: 66%;
    top: 36%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--site-primary);
    box-shadow: 0 0 0 .35rem rgba(20, 20, 20, 0.16);
}

.platform-pin span {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(20, 20, 20, 0.22);
    transform: translate(-50%, -50%);
    animation: pulseRing 3.6s ease-out infinite;
}

.platform-map-card {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 210px;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.09);
}

.platform-map-card strong {
    display: block;
    font-size: .96rem;
    font-weight: 800;
}

.platform-map-card small {
    display: block;
    color: var(--site-muted);
    font-size: .74rem;
    margin: .2rem 0 .78rem;
}

.cta-section {
    padding-top: 3.5rem;
}

.cta-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.1rem 2.3rem;
    border-radius: 26px;
    background:
        radial-gradient(circle at 75% 50%, rgba(175, 175, 175, 0.38), transparent 25%),
        radial-gradient(circle at 32% 52%, rgba(20, 20, 20, 0.14), transparent 28%),
        rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(20, 20, 20, 0.1);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.cta-shell h2 {
    font-size: clamp(2rem, 3.6vw, 3.3rem);
    max-width: 560px;
}

.cta-shell p {
    max-width: 520px;
    margin-top: .85rem;
}

.cta-actions {
    display: flex;
    gap: .9rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-footer {
    margin-top: 4rem;
    padding: 3rem 0 1.3rem;
    background: #141414;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer-top {
    display: flex;
    justify-content: space-between;
    gap: 2.4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-brand {
    max-width: 360px;
}

.site-footer-brand img {
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.site-footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.7;
}

.site-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .95rem;
}

.site-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: .82rem;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.site-footer-social a:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    transform: translateY(-2px);
}

.site-footer-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 2rem;
    flex: 1;
}

.site-footer-columns h6 {
    color: #fff;
    font-size: .9rem;
    font-weight: 800;
    margin-bottom: .95rem;
}

.site-footer-columns a,
.site-footer-legal a {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    margin-bottom: .55rem;
    font-size: .92rem;
}

.site-footer-columns a:hover,
.site-footer-legal a:hover {
    color: #fff;
}

.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.1rem;
    color: rgba(255, 255, 255, 0.48);
    font-size: .88rem;
}

.site-footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@keyframes hexPulse {
    0%, 100% { transform: translateY(0); opacity: .84; }
    50% { transform: translateY(-4px); opacity: 1; }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes heroGlow {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(10px, -12px, 0) scale(1.08); }
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(.86); opacity: .85; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

@keyframes scalePulse {
    0%, 100% { width: 84%; }
    50% { width: 88%; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-hex,
    .hero-location-card,
    .hero-ai-card,
    .hero-scale-card,
    .hero-visual-glow,
    .hero-orbit,
    .hero-scale-fill,
    .platform-pin span {
        animation: none !important;
    }
}

@media (max-width: 1200px) {
    .hero-shell,
    .platform-shell,
    .live-section-head {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 560px;
    }

    .capability-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .signal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .site-navbar .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(20, 20, 20, 0.08);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .site-navbar-actions {
        margin-top: 1rem;
        flex-direction: column;
        align-items: stretch;
    }

    .site-lang-switch {
        justify-content: center;
        margin-top: .3rem;
    }

    .hero-stat-grid,
    .signal-grid,
    .site-footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .platform-visual {
        grid-template-columns: 1fr;
    }

    .platform-panel {
        border-right: none;
        border-bottom: 1px solid rgba(20, 20, 20, 0.08);
    }

    .cta-shell,
    .site-footer-top,
    .site-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .landing-hero {
        padding-top: 6.8rem;
    }

    .landing-hero::after {
        inset: 5.8rem -8% auto 46%;
        height: 310px;
        background:
            radial-gradient(circle at 48% 38%, rgba(30, 30, 30, 0.24), rgba(30, 30, 30, 0) 22%),
            radial-gradient(circle at 72% 54%, rgba(170, 170, 170, 0.20), rgba(170, 170, 170, 0) 30%),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 78 68'%3E%3Cpath d='M19.5 1H58.5L77 34L58.5 67H19.5L1 34Z' fill='none' stroke='%23dff2ff' stroke-width='1'/%3E%3C/svg%3E") 0 0 / 64px 56px repeat,
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 78 68'%3E%3Cpath d='M19.5 1H58.5L77 34L58.5 67H19.5L1 34Z' fill='none' stroke='%23eef8ff' stroke-width='1'/%3E%3C/svg%3E") 32px 28px / 64px 56px repeat;
        opacity: .64;
    }

    .hero-stat-grid,
    .signal-grid,
    .capability-grid,
    .site-footer-columns {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 620px;
    }

    .hero-honeycomb {
        inset: .6rem 0 .3rem .1rem;
        gap: .26rem;
    }

    .hero-honeycomb::before {
        inset: 22% 10% 18% 22%;
    }

    .hero-hex-row {
        gap: .26rem;
    }

    .hero-hex-row.is-shifted {
        transform: translateX(1.08rem);
    }

    .hero-hex {
        width: 34px;
        height: 40px;
    }

    .hero-location-card {
        top: 6.4rem;
        right: .2rem;
        width: min(258px, calc(100% - .8rem));
    }

    .hero-ai-card {
        left: .2rem;
        top: 1.1rem;
        width: 148px;
        padding: .75rem;
    }

    .hero-scale-card {
        left: 50%;
        width: min(194px, calc(100% - .8rem));
    }

    .trust-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-strip-wordmarks {
        justify-content: flex-start;
        gap: .9rem 1.2rem;
    }

    .hero-stat-card {
        min-height: 76px;
        padding: .82rem .9rem;
    }

    .hero-stat-card strong {
        font-size: 1.16rem;
    }

    .hero-stat-card span {
        font-size: .66rem;
    }

    .capability-card {
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid rgba(20, 20, 20, 0.08);
    }

    .capability-card:last-child {
        border-bottom: none;
    }

    .cta-shell {
        padding: 1.8rem;
    }
}

/* ============================================================
   CADASTRO — CRIALA
   ============================================================ */

.signup-page {
    background: var(--site-surface);
    min-height: 100vh;
}

.signup-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    min-height: 100vh;
}

.signup-aside {
    background: linear-gradient(160deg, #1a1a1a 0%, #000000 100%);
    color: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    padding: 4rem;
}

.signup-aside-inner {
    max-width: 420px;
    margin: 0 auto;
}

.signup-aside-brand img {
    filter: brightness(0) invert(1);
    margin-bottom: 3rem;
    display: inline-block;
}

.signup-aside-title {
    font-size: clamp(2rem, 3.4vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.15;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 1.1rem;
}

.signup-aside-subtitle {
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.signup-aside-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .9rem;
}

.signup-aside-list li {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-weight: 600;
    font-size: .96rem;
}

.signup-aside-list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    font-size: .68rem;
    flex-shrink: 0;
}

.signup-form-side {
    display: flex;
    align-items: center;
    padding: 1.8rem 2rem;
    min-height: 100vh;
}

.signup-form-inner {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.signup-title {
    margin: 0 0 .3rem;
    font-size: clamp(1.5rem, 2.4vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -.03em;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--site-ink);
}

.signup-subtitle {
    color: var(--site-muted);
    margin-bottom: .9rem;
    font-size: .92rem;
}

.signup-badge {
    background: var(--site-lilac);
    color: var(--site-ink);
    border-radius: 12px;
    padding: .7rem .9rem;
    font-size: .84rem;
    margin-bottom: 1.6rem;
}

.signup-card {
    background: var(--site-surface);
    border: 1px solid var(--site-border);
    border-radius: 20px;
    padding: 1.4rem 1.6rem;
    box-shadow: var(--site-shadow);
}

.signup-form {
    display: grid;
    gap: .2rem;
}

.signup-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
}

.signup-form .form-label {
    font-weight: 700;
    font-size: .82rem;
    color: var(--site-ink);
    margin-top: .6rem;
    margin-bottom: .2rem;
    display: block;
}

.signup-form .form-control,
.signup-form .form-select {
    border-radius: 10px;
    border-color: var(--site-border);
    padding: .5rem .75rem;
    font-size: .92rem;
}

.signup-form .form-control:focus,
.signup-form .form-select:focus {
    border-color: var(--site-primary);
    box-shadow: 0 0 0 .2rem rgba(20, 20, 20, 0.08);
}

.signup-hint {
    color: var(--site-muted);
    font-size: .74rem;
    margin: .15rem 0 0;
    display: flex;
    align-items: center;
    gap: .35rem;
}

.signup-hint i {
    color: #228251;
}

.signup-range {
    accent-color: var(--site-primary);
    margin-top: .5rem;
}

.signup-submit {
    margin-top: 1rem;
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: .8rem 1.3rem;
    font-weight: 700;
    font-size: .96rem;
    color: #fff;
    background: linear-gradient(135deg, var(--site-primary), var(--site-primary-deep));
    transition: transform .24s ease, box-shadow .24s ease;
}

.signup-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24);
}

.signup-note {
    text-align: center;
    color: var(--site-muted);
    font-size: .78rem;
    margin: .6rem 0 0;
}

.signup-note i {
    margin-right: .35rem;
}

.signup-footer-link {
    text-align: center;
    margin-top: .9rem;
}

.signup-footer-link a {
    color: var(--site-muted);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 600;
}

.signup-footer-link a:hover {
    color: var(--site-ink);
}

.signup-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.signup-alert {
    border-radius: 12px;
    padding: .8rem 1rem;
    font-size: .86rem;
    margin-bottom: 1.4rem;
}

.signup-alert-error {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e5f7ea;
    color: #228251;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.4rem;
}

.success-steps {
    display: grid;
    gap: 1.3rem;
    margin: 1.8rem 0 2rem;
}

.success-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.success-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--site-ink);
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
    flex-shrink: 0;
}

.success-step strong {
    display: block;
    font-size: .96rem;
    margin-bottom: .25rem;
    color: var(--site-ink);
}

.success-step p {
    margin: 0;
    color: var(--site-muted);
    font-size: .88rem;
    line-height: 1.55;
}

.success-actions {
    display: grid;
    gap: .8rem;
}

.success-actions .signup-submit {
    margin-top: 0;
    text-align: center;
    text-decoration: none;
}

.success-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: #228251;
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    padding: .6rem;
}

.success-whatsapp:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .signup-split {
        grid-template-columns: 1fr;
    }

    .signup-aside {
        padding: 3rem 2rem;
    }

    .signup-aside-inner {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .signup-form-side {
        padding: 1.5rem 1.2rem;
        min-height: auto;
    }

    .signup-card {
        padding: 1.4rem;
    }

    .signup-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ============================================================
   BLOG — CRIALA
   ============================================================ */

.blog-section {
    border-top: 1px solid var(--site-border);
}

.blog-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.4rem;
}

.blog-see-all {
    display: inline-flex;
    align-items: center;
    color: var(--site-ink);
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    white-space: nowrap;
}

.blog-see-all:hover {
    color: var(--site-primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.blog-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--site-surface-soft);
    aspect-ratio: 16 / 10;
    margin-bottom: .9rem;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.04);
}

.blog-card-title {
    font-size: .98rem;
    font-weight: 800;
    color: var(--site-ink);
    line-height: 1.4;
    margin-bottom: .4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    color: var(--site-muted);
    font-size: .8rem;
}

.blog-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: .5rem;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.blog-card-mobile {
    flex: 0 0 78%;
    scroll-snap-align: start;
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
