/**
 * DEVHQ Studio - Design System 7.0: Luxe Velvet Obsidian & Platinum Glass
 * Identidade Visual Premium: Alto Contraste, Micro-interações Táteis & Performance Pura
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-sans);
  --font-mono: 'JetBrains Mono', monospace;

  /* Cores Base: Velvet Obsidian */
  --bg-canvas: #07080b;
  --bg-surface: #0d0f15;
  --bg-surface-elevated: #131620;
  --bg-card: rgba(13, 15, 21, 0.88);

  /* Bordas e Reflexos de Vidro */
  --border-glass: rgba(255, 255, 255, 0.07);
  --border-glass-hover: rgba(255, 255, 255, 0.18);
  --border-glass-active: rgba(255, 255, 255, 0.35);

  /* Tipografia */
  --text-pure: #ffffff;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-tertiary: #64748b;
  --text-dim: #475569;

  /* Acentos */
  --accent-emerald: #10b981;
  --accent-blue: #3b82f6;
  --accent-indigo: #6366f1;
  --accent-amber: #f59e0b;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-canvas);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar Refinada */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg-canvas);
}
::-webkit-scrollbar-thumb {
  background: #1e2230;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #33394d;
}

/* Texturas de Fundo: Dot Matrix & Ambient Radial Beams */
.bg-ambient-mesh {
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.12), transparent 70%),
    radial-gradient(ellipse 60% 40% at 85% 60%, rgba(59, 130, 246, 0.05), transparent 60%),
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 24px 24px;
}

.bg-dot-pattern {
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Cards em Vidro Obsidian com Borda Gradiente */
.clean-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 1.25rem;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 24px -2px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.clean-card:hover {
  border-color: var(--border-glass-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Card com Borda Glow Ativa */
.card-featured {
  background: linear-gradient(180deg, rgba(21, 24, 34, 0.95) 0%, rgba(13, 15, 21, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 30px -4px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Botão Primário: Solid White de Alto Impacto */
.btn-primary {
  background: #ffffff;
  color: #07080b;
  font-weight: 600;
  font-family: var(--font-sans);
  border-radius: 0.8125rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-primary:hover {
  background: #f1f5f9;
  transform: translateY(-1.5px);
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Botão Secundário: Obsidian Glass */
.btn-secondary {
  background: #131620;
  color: #e2e8f0;
  font-weight: 500;
  border: 1px solid var(--border-glass);
  border-radius: 0.8125rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: #1a1e2d;
  border-color: var(--border-glass-hover);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Badges e Pílulas */
.badge-tech {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  border-radius: 0.5rem;
  background: #131620;
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Tipografia Especial */
.font-display {
  font-family: var(--font-display);
}

.font-mono-code {
  font-family: var(--font-mono);
}

/* Gradiente Textual Platina */
.text-gradient-platinum {
  background: linear-gradient(180deg, #ffffff 10%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Marquee Ticker */
.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 2.5rem;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: 2.5rem;
  animation: marqueeScroll 45s linear infinite;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ==========================================================================
   DEVHQ 8.0 — COBALT EDITORIAL
   Nova direção visual clara, expressiva e orientada a produto.
   ========================================================================== */

:root {
  --v8-ink: #11152a;
  --v8-ink-soft: #30364f;
  --v8-muted: #6e748b;
  --v8-canvas: #f5f7fb;
  --v8-surface: #ffffff;
  --v8-surface-soft: #edf1f8;
  --v8-line: #dfe4ee;
  --v8-line-strong: #c9d0df;
  --v8-cobalt: #00f0ff;
  --v8-cobalt-dark: #0070f3;
  --v8-cobalt-soft: rgba(0, 240, 255, 0.12);
  --v8-lime: #00f0ff;
  --v8-lime-dark: #00cbf7;
  --v8-navy: #07080b;
  --v8-navy-soft: #0d101a;
  --v8-cyan: #00f0ff;
  --v8-azure: #0070f3;
  --v8-success: #19a974;
  --v8-warning: #f3a83b;
  --v8-danger: #e3536d;
  --v8-shadow-sm: 0 8px 30px rgba(0, 240, 255, 0.08);
  --v8-shadow-md: 0 22px 70px rgba(0, 112, 243, 0.14);
  --v8-shadow-lg: 0 35px 100px rgba(5, 10, 35, 0.3);
  --v8-radius-sm: 0.75rem;
  --v8-radius-md: 1.1rem;
  --v8-radius-lg: 1.75rem;
  --v8-container: 78rem;
}

html {
  scroll-padding-top: 7rem;
}

[x-cloak] {
  display: none !important;
}

body.site-public {
  background: var(--v8-canvas);
  color: var(--v8-ink);
  font-size: 1rem;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

.site-container {
  width: min(var(--v8-container), calc(100% - 3rem));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 0.65rem;
  background: var(--v8-lime);
  color: var(--v8-navy);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.availability-bar {
  background: #07080b;
  border-bottom: 1px solid rgba(0, 240, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding-block: 0.5rem;
  text-transform: uppercase;
}

.availability-bar p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.availability-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #00f0ff;
  box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.2), 0 0 10px #00f0ff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 247, 251, 0.9);
  border-bottom: 1px solid rgba(201, 208, 223, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header__inner {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--v8-ink);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.brand-mark {
  width: 2.85rem;
  height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  max-width: 2.85rem;
  max-height: 2.85rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 180, 255, 0.4));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  display: block;
}

.brand-lockup:hover .brand-mark {
  transform: translateY(-1px);
}

.brand-lockup:hover .brand-logo-img {
  transform: scale(1.08);
  filter: drop-shadow(0 6px 18px rgba(0, 240, 255, 0.65));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--v8-ink);
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 0.32rem;
  color: var(--v8-muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem;
  border: 1px solid var(--v8-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 20px rgba(24, 31, 63, 0.04);
}

.site-nav a {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: var(--v8-ink-soft);
  font-size: 0.75rem;
  font-weight: 650;
  transition: 0.2s ease;
}

.site-nav a:hover {
  background: var(--v8-cobalt-soft);
  color: var(--v8-cobalt-dark);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.header-contact {
  align-items: center;
  gap: 0.45rem;
  color: var(--v8-ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
}

.header-contact:hover {
  color: var(--v8-cobalt-dark);
}

.header-cta {
  min-height: 2.65rem !important;
  padding: 0.65rem 1rem !important;
  font-size: 0.75rem !important;
}

.mobile-menu-button {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--v8-line);
  border-radius: 0.8rem;
  background: #fff;
  color: var(--v8-ink);
}

.mobile-nav {
  position: absolute;
  inset: 100% 0 auto;
  background: rgba(245, 247, 251, 0.98);
  border-bottom: 1px solid var(--v8-line);
  box-shadow: var(--v8-shadow-md);
}

.mobile-nav .site-container {
  padding-block: 0.8rem 1.2rem;
}

.mobile-nav a {
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--v8-line);
  color: var(--v8-ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.mobile-nav svg {
  width: 1rem;
}

.btn-primary,
.btn-secondary {
  min-height: 3rem;
  border-radius: 0.85rem;
  padding: 0.78rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--v8-cobalt);
  color: #fff;
  border: 1px solid var(--v8-cobalt);
  box-shadow: 0 10px 25px rgba(83, 103, 248, 0.22);
}

.btn-primary:hover {
  background: var(--v8-cobalt-dark);
  color: #fff;
  border-color: var(--v8-cobalt-dark);
  box-shadow: 0 16px 34px rgba(83, 103, 248, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #fff;
  color: var(--v8-ink);
  border: 1px solid var(--v8-line-strong);
  box-shadow: 0 8px 20px rgba(24, 31, 63, 0.06);
}

.btn-secondary:hover {
  background: var(--v8-surface-soft);
  border-color: var(--v8-cobalt);
  color: var(--v8-cobalt-dark);
  transform: translateY(-2px);
}

.new-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 8vw, 8rem) 2.2rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--v8-navy);
  background-size: 52px 52px;
  color: #fff;
}

.new-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 12rem;
  background: linear-gradient(transparent, rgba(9, 14, 32, 0.72));
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.75;
  pointer-events: none;
}

.hero-orb--one {
  width: 32rem;
  height: 32rem;
  top: -15rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.42), rgba(0, 112, 243, 0.18) 50%, transparent 70%);
}

.hero-orb--two {
  width: 28rem;
  height: 28rem;
  right: -8rem;
  bottom: -10rem;
  background: radial-gradient(circle, rgba(0, 112, 243, 0.32), rgba(0, 240, 255, 0.15) 50%, transparent 70%);
}

.new-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(31rem, 1.08fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker__icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, #00f0ff 0%, #0070f3 100%);
  color: #07080b;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.hero-kicker__icon svg {
  width: 1rem;
}

.new-hero h1 {
  max-width: 12ch;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.8vw, 5.15rem);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.new-hero__lead {
  max-width: 38rem;
  margin-top: 1.7rem;
  color: rgba(229, 233, 249, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
}

.new-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.new-hero .btn-primary {
  background: linear-gradient(135deg, #00f0ff 0%, #0070f3 100%);
  border: 1px solid rgba(0, 240, 255, 0.5);
  color: #07080b;
  font-weight: 800;
  box-shadow: 0 12px 35px rgba(0, 240, 255, 0.35);
}

.new-hero .btn-primary:hover {
  background: linear-gradient(135deg, #38f4ff 0%, #0084ff 100%);
  border-color: #00f0ff;
  color: #000;
  box-shadow: 0 16px 42px rgba(0, 240, 255, 0.5);
  transform: translateY(-2px);
}

.new-hero .btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: none;
}

.new-hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 35rem;
  margin-top: 2.2rem;
  color: rgba(229, 233, 249, 0.62);
  font-size: 0.75rem;
  line-height: 1.5;
}

.hero-trust strong {
  color: #fff;
}

.hero-trust__avatars {
  display: flex;
  flex-shrink: 0;
}

.hero-trust__avatars span {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  margin-left: -0.35rem;
  border: 2px solid var(--v8-navy);
  border-radius: 50%;
  background: var(--v8-cobalt);
  color: #fff;
  font-size: 0.56rem;
  font-weight: 800;
}

.hero-trust__avatars span:nth-child(2) {
  background: var(--v8-lime);
  color: var(--v8-navy);
}

.hero-trust__avatars span:nth-child(3) {
  background: #ff8e6e;
}

.product-window {
  position: relative;
  min-height: 35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.5rem;
  background: #f8faff;
  box-shadow: var(--v8-shadow-lg);
  color: var(--v8-ink);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.product-window__topbar {
  height: 3rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: 1rem;
  border-bottom: 1px solid #e3e7f0;
  color: #80869a;
  font-size: 0.62rem;
}

.window-dots {
  display: flex;
  gap: 0.3rem;
}

.window-dots span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #d2d7e2;
}

.window-dots span:first-child {
  background: #ff8e7e;
}

.window-dots span:nth-child(2) {
  background: #ffc963;
}

.window-dots span:nth-child(3) {
  background: #83d9aa;
}

.window-address {
  padding: 0.35rem 1.7rem;
  border-radius: 999px;
  background: #edf0f6;
}

.window-status {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #58a17f;
}

.window-status span {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #41bd83;
}

.product-window__body {
  min-height: 32rem;
  display: grid;
  grid-template-columns: 4.25rem 1fr;
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  padding-top: 1.1rem;
  border-right: 1px solid #e3e7f0;
  color: #9ba2b6;
}

.product-sidebar svg {
  width: 1.05rem;
}

.product-sidebar svg:nth-of-type(1) {
  color: var(--v8-cobalt);
}

.product-sidebar__logo {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.45rem;
  border-radius: 0.65rem;
  background: radial-gradient(circle at 50% 30%, rgba(0, 240, 255, 0.2), #07080b);
  border: 1px solid rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.25);
  overflow: hidden;
  padding: 2px;
}

.product-content {
  padding: 1.65rem;
}

.product-heading,
.product-chart__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.product-heading div,
.product-chart__header div {
  display: flex;
  flex-direction: column;
}

.product-heading span,
.product-chart__header span,
.product-metrics article > span {
  color: #8a91a6;
  font-size: 0.62rem;
}

.product-heading strong {
  margin-top: 0.12rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.product-date,
.chart-badge {
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: var(--v8-cobalt-soft);
  color: var(--v8-cobalt-dark) !important;
  font-size: 0.56rem !important;
  font-weight: 700;
}

.product-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.product-metrics article {
  padding: 1rem;
  border: 1px solid #e2e6ef;
  border-radius: 0.9rem;
  background: #fff;
}

.product-metrics strong {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
}

.product-metrics small {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  color: #67a080;
  font-size: 0.52rem;
}

.product-metrics small svg {
  width: 0.65rem;
}

.product-chart {
  margin-top: 0.8rem;
  padding: 1rem;
  border: 1px solid #e2e6ef;
  border-radius: 0.9rem;
  background: #fff;
}

.product-chart__header strong {
  margin-top: 0.15rem;
  font-size: 0.72rem;
}

.chart-badge {
  background: #eef8e3;
  color: #5c8a2a !important;
}

.chart-bars {
  height: 6.4rem;
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-bottom: 1px solid #e8ebf2;
  background: repeating-linear-gradient(to bottom, #fff 0, #fff 1.6rem, #edf0f5 1.65rem);
}

.chart-bars span {
  flex: 1;
  min-height: 1rem;
  border-radius: 0.3rem 0.3rem 0 0;
  background: linear-gradient(180deg, #8290ff, var(--v8-cobalt));
}

.chart-bars span:nth-child(2n) {
  background: linear-gradient(180deg, #e8ffa8, var(--v8-lime-dark));
}

.product-tasks {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.product-tasks > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid #e2e6ef;
  border-radius: 0.8rem;
  background: #fff;
  color: #a1a7b8;
  font-size: 0.6rem;
}

.product-tasks p {
  display: flex;
  flex-direction: column;
}

.product-tasks strong {
  color: var(--v8-ink);
  font-size: 0.66rem;
}

.product-tasks small {
  margin-top: 0.1rem;
  color: #8e95a8;
  font-size: 0.52rem;
}

.task-icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 0.6rem;
}

.task-icon svg {
  width: 0.9rem;
}

.task-icon--blue {
  background: var(--v8-cobalt-soft);
  color: var(--v8-cobalt);
}

.task-icon--lime {
  background: #f0fad8;
  color: #71982b;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 44px rgba(11, 18, 45, 0.18);
  backdrop-filter: blur(16px);
}

.floating-note svg {
  width: 1.2rem;
  color: var(--v8-cobalt);
}

.floating-note > div {
  display: flex;
  flex-direction: column;
}

.floating-note strong {
  color: var(--v8-ink);
  font-size: 0.65rem;
}

.floating-note span {
  color: #80879b;
  font-size: 0.54rem;
}

.floating-note--top {
  top: 4.8rem;
  right: -2.2rem;
}

.floating-note--bottom {
  left: -2.6rem;
  bottom: 2.3rem;
}

.floating-note__pulse {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--v8-lime-dark);
  box-shadow: 0 0 0 5px rgba(188, 233, 75, 0.16);
}

.hero-proof {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  align-items: center;
  gap: 0;
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof > span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof > div {
  display: flex;
  flex-direction: column;
  padding-left: 1.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.hero-proof strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
}

.hero-proof small {
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.6rem;
}

:focus-visible {
  outline: 3px solid rgba(83, 103, 248, 0.48);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .new-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .product-window {
    min-height: 32rem;
  }

  .floating-note--top {
    right: -0.8rem;
  }

  .floating-note--bottom {
    left: -0.8rem;
  }
}

@media (max-width: 900px) {
  .new-hero__grid {
    grid-template-columns: 1fr;
  }

  .new-hero__content {
    text-align: center;
  }

  .new-hero h1,
  .new-hero__lead,
  .hero-trust {
    margin-inline: auto;
  }

  .new-hero__actions,
  .hero-trust {
    justify-content: center;
  }

  .product-window {
    width: min(42rem, 100%);
    margin-inline: auto;
    transform: none;
  }
}

@media (max-width: 720px) {
  .site-container {
    width: min(100% - 1.25rem, var(--v8-container));
  }

  .availability-bar {
    font-size: 0.58rem;
  }

  .brand-copy small,
  .header-contact,
  .header-cta span {
    display: none;
  }

  .header-cta {
    width: 2.65rem;
    padding-inline: 0 !important;
  }

  .new-hero {
    padding-top: 4rem;
  }

  .new-hero h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .new-hero__actions {
    flex-direction: column;
  }

  .new-hero__actions > * {
    width: 100%;
  }

  .hero-trust {
    align-items: flex-start;
    text-align: left;
  }

  .product-window {
    min-height: auto;
    border-radius: 1.2rem;
  }

  .product-window__body {
    min-height: auto;
    grid-template-columns: 3rem 1fr;
  }

  .product-content {
    padding: 1rem;
  }

  .product-sidebar {
    gap: 1rem;
  }

  .product-metrics {
    grid-template-columns: 1fr;
  }

  .product-chart {
    display: none;
  }

  .floating-note {
    display: none;
  }

  .hero-proof {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1rem;
  }

  .hero-proof > span {
    grid-column: 1 / -1;
  }

  .hero-proof > div {
    padding-left: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Public page — sections and content */
.expertise-strip {
  border-bottom: 1px solid var(--v8-line);
  background: var(--v8-lime);
  color: var(--v8-navy);
}

.expertise-strip .marquee-container {
  color: var(--v8-navy);
  font-family: var(--font-sans);
  font-weight: 800;
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.expertise-strip .text-white\/20 {
  color: rgba(13, 18, 38, 0.24) !important;
}

.public-section {
  padding-block: clamp(5rem, 9vw, 8rem);
  background: var(--v8-canvas);
}

.public-section--soft {
  background: var(--v8-surface-soft);
}

.public-section--ink {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(83, 103, 248, 0.24), transparent 30rem),
    radial-gradient(circle at 90% 80%, rgba(217, 255, 114, 0.1), transparent 28rem),
    var(--v8-navy);
}

.public-section--ink::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 5rem;
  pointer-events: none;
}

.public-section--ink > div {
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
  color: var(--v8-cobalt);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-eyebrow::before {
  content: '';
  width: 1.6rem;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.public-section--ink .section-eyebrow {
  color: var(--v8-lime);
}

.section-heading h2,
.public-section > div > .text-center h2,
.process-section h2 {
  color: var(--v8-ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.section-heading p,
.public-section > div > .text-center > p {
  margin-top: 0.85rem;
  color: var(--v8-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.public-section--ink > div > .text-center h2 {
  color: #fff !important;
}

.public-section--ink > div > .text-center > p {
  color: rgba(229, 233, 249, 0.68) !important;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.5fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.section-heading--split > p {
  max-width: 28rem;
  margin: 0 0 0.4rem auto;
}

/* Cards */
.clean-card {
  background: var(--v8-surface);
  border: 1px solid var(--v8-line);
  border-radius: var(--v8-radius-md);
  box-shadow: var(--v8-shadow-sm);
  color: var(--v8-ink);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.clean-card:hover {
  border-color: rgba(83, 103, 248, 0.36);
  box-shadow: var(--v8-shadow-md);
  transform: translateY(-4px);
}

.site-public .clean-card .text-white,
.site-public .clean-card .text-platinum-100,
.site-public .clean-card .text-platinum-200,
.site-public .clean-card .text-platinum-300 {
  color: var(--v8-ink) !important;
}

.site-public .clean-card .text-platinum-400,
.site-public .clean-card .text-platinum-500,
.site-public .clean-card .text-zinc-400,
.site-public .clean-card .text-zinc-500 {
  color: var(--v8-muted) !important;
}

.site-public .clean-card .border-white\/10,
.site-public .clean-card .border-white\/\[0\.08\],
.site-public .clean-card .border-white\/\[0\.06\],
.site-public .clean-card .border-zinc-800 {
  border-color: var(--v8-line) !important;
}

.site-public .clean-card .bg-obsidian-950,
.site-public .clean-card .bg-obsidian-900,
.site-public .clean-card .bg-obsidian-850,
.site-public .clean-card .bg-obsidian-850\/90,
.site-public .clean-card .bg-obsidian-800,
.site-public .clean-card .bg-zinc-900 {
  background: var(--v8-surface-soft) !important;
}

.project-card {
  min-height: 100%;
}

.project-card > div:first-child {
  height: 14rem;
}

.project-card img {
  filter: saturate(0.92) contrast(1.02);
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem !important;
  letter-spacing: -0.025em;
}

.project-card p {
  min-height: 2.8rem;
  color: var(--v8-muted) !important;
  font-size: 0.78rem !important;
}

.project-card__action {
  color: var(--v8-cobalt-dark);
}

.project-card__demo {
  color: var(--v8-muted);
}

.project-card__action:hover,
.project-card__demo:hover {
  color: var(--v8-ink);
}

#portfolio .section-heading .text-white,
#servicos .text-center .text-white,
#simulador .text-center .text-white,
#depoimentos .text-center .text-white,
#faq .text-center .text-white,
#contato h2,
#contato > div > div > div:first-child .text-white {
  color: var(--v8-ink) !important;
}

#portfolio .section-heading .text-platinum-400,
#servicos .text-center .text-platinum-400,
#simulador .text-center .text-platinum-400,
#faq .text-center .text-platinum-400,
#contato > div > div > div:first-child .text-platinum-400,
#contato > div > div > div:first-child .text-platinum-300 {
  color: var(--v8-muted) !important;
}

#portfolio > div > .section-heading > div:last-child {
  padding: 0.35rem;
  border: 1px solid var(--v8-line);
  background: #fff !important;
  box-shadow: 0 8px 24px rgba(24, 31, 63, 0.05);
}

#portfolio > div > .section-heading button {
  color: var(--v8-muted) !important;
}

#portfolio > div > .section-heading button.bg-obsidian-800 {
  background: var(--v8-cobalt) !important;
  color: #fff !important;
}

/* Conversion paths */
.conversion-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(83, 103, 248, 0.24), transparent 26rem),
    radial-gradient(circle at 92% 88%, rgba(204, 255, 0, 0.08), transparent 24rem),
    var(--v8-navy);
}

.conversion-showcase::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 4rem 4rem;
  content: "";
  pointer-events: none;
}

.conversion-showcase > div {
  position: relative;
  z-index: 1;
}

.conversion-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: 3rem;
}

.conversion-intro h2 {
  max-width: 48rem;
  margin-top: 0.8rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.7vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.conversion-intro__copy {
  padding-bottom: 0.35rem;
}

.conversion-intro__copy p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.75;
}

.conversion-intro__copy span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(204, 255, 0, 0.22);
  border-radius: 999px;
  background: rgba(204, 255, 0, 0.08);
  color: var(--v8-lime);
  font-size: 0.67rem;
  font-weight: 800;
}

.conversion-intro__copy svg {
  width: 0.95rem;
  height: 0.95rem;
}

.conversion-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
}

.conversion-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 38rem;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--v8-radius-lg);
  background: #fff;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.2);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.conversion-card:hover {
  border-color: rgba(204, 255, 0, 0.62);
  box-shadow: 0 32px 75px rgba(0, 0, 0, 0.28);
  transform: translateY(-5px);
}

.conversion-card--featured {
  border-color: var(--v8-lime);
  background:
    linear-gradient(180deg, rgba(204, 255, 0, 0.12), transparent 10rem),
    #fff;
}

.conversion-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 0.48rem 0.9rem;
  border-radius: 0 0 0.75rem 0.75rem;
  background: var(--v8-lime);
  color: var(--v8-navy);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.conversion-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.3rem;
}

.conversion-card__number {
  color: #cbd1de;
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.conversion-card__icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 0.9rem;
  background: var(--v8-cobalt-soft);
  color: var(--v8-cobalt);
}

.conversion-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.conversion-card__type {
  margin-top: 1.5rem;
  color: var(--v8-cobalt);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.conversion-card h3 {
  margin-top: 0.65rem;
  color: var(--v8-ink);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.conversion-card__description {
  margin-top: 0.9rem;
  color: var(--v8-muted);
  font-size: 0.77rem;
  line-height: 1.7;
}

.conversion-card__fit {
  margin-top: 1.35rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--v8-cobalt);
  border-radius: 0 0.75rem 0.75rem 0;
  background: var(--v8-canvas);
}

.conversion-card__fit strong,
.conversion-card__fit span {
  display: block;
}

.conversion-card__fit strong {
  color: var(--v8-ink);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.conversion-card__fit span {
  margin-top: 0.28rem;
  color: var(--v8-muted);
  font-size: 0.7rem;
  line-height: 1.5;
}

.conversion-card ul {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.conversion-card li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--v8-ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.conversion-card li svg {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  padding: 0.15rem;
  border-radius: 50%;
  background: var(--v8-lime);
  color: var(--v8-navy);
  stroke-width: 3;
}

.conversion-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 3rem;
  margin-top: auto;
  padding: 0.85rem 1rem;
  border-radius: 0.8rem;
  background: var(--v8-navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.conversion-card--featured .conversion-card__cta,
.conversion-card__cta:hover {
  background: var(--v8-cobalt);
  color: #fff;
}

.conversion-card__cta:focus-visible {
  outline: 3px solid var(--v8-lime);
  outline-offset: 3px;
}

.conversion-card__cta svg {
  width: 1rem;
  height: 1rem;
}

.conversion-close {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  margin-top: 1rem;
  padding: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--v8-radius-lg);
  background:
    linear-gradient(115deg, rgba(83, 103, 248, 0.2), transparent 55%),
    rgba(255, 255, 255, 0.055);
}

.conversion-close h3 {
  max-width: 44rem;
  margin-top: 0.65rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.conversion-close__copy > p {
  max-width: 45rem;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  line-height: 1.7;
}

.conversion-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  margin-top: 1.2rem;
}

.conversion-assurances span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.67rem;
  font-weight: 700;
}

.conversion-assurances svg {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--v8-lime);
}

.conversion-close__action {
  display: flex;
  min-width: 17rem;
  align-items: center;
  flex-direction: column;
  gap: 0.65rem;
}

.conversion-close__action .btn-primary {
  width: 100%;
  justify-content: center;
}

.conversion-close__action > a {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.32);
  text-underline-offset: 0.25rem;
}

.conversion-close__action > a:hover {
  color: var(--v8-lime);
}

.conversion-close__action small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.6rem;
}

/* Process */
.process-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(83, 103, 248, 0.08), transparent 22rem),
    var(--v8-canvas);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--v8-line);
  border-radius: var(--v8-radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--v8-shadow-sm);
}

.process-grid article {
  position: relative;
  min-height: 18rem;
  padding: 1.7rem;
  border-right: 1px solid var(--v8-line);
  transition: background 0.25s ease, color 0.25s ease;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid article > span {
  position: absolute;
  top: 1.3rem;
  right: 1.4rem;
  color: #d7dce7;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.process-grid article > svg {
  width: 2.7rem;
  height: 2.7rem;
  margin-top: 3rem;
  padding: 0.7rem;
  border-radius: 0.85rem;
  background: var(--v8-cobalt-soft);
  color: var(--v8-cobalt);
}

.process-grid h3 {
  margin-top: 1.35rem;
  color: var(--v8-ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
}

.process-grid p {
  margin-top: 0.65rem;
  color: var(--v8-muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.process-grid article:hover {
  background: var(--v8-navy);
}

.process-grid article:hover > span {
  color: rgba(255, 255, 255, 0.1);
}

.process-grid article:hover > svg {
  background: var(--v8-lime);
  color: var(--v8-navy);
}

.process-grid article:hover h3 {
  color: #fff;
}

.process-grid article:hover p {
  color: rgba(255, 255, 255, 0.58);
}

.process-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--v8-line);
  border-radius: var(--v8-radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.process-action p {
  margin: 0;
  color: var(--v8-ink);
  font-weight: 700;
}

.process-action .btn-secondary {
  flex: 0 0 auto;
}

/* Services */
.service-card {
  min-height: 100%;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: transparent;
}

.service-card--featured {
  border-color: rgba(83, 103, 248, 0.45);
  box-shadow: 0 22px 65px rgba(83, 103, 248, 0.14);
}

.service-card--featured::before {
  background: var(--v8-cobalt);
}

.service-card > span {
  background: var(--v8-lime) !important;
  border: 0 !important;
  color: var(--v8-navy) !important;
}

.service-card h3 {
  padding-right: 4rem;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.service-card .font-mono-code {
  font-family: var(--font-display);
}

.service-card ul li svg {
  width: 1rem;
  height: 1rem;
  padding: 0.12rem;
  border-radius: 50%;
  background: #e7f7ef;
  color: var(--v8-success) !important;
}

/* Calculator */
.calculator-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(83, 103, 248, 0.13), transparent 24rem),
    radial-gradient(circle at 95% 80%, rgba(217, 255, 114, 0.18), transparent 24rem),
    var(--v8-surface);
}

#simulador .clean-card {
  border-radius: var(--v8-radius-lg);
  box-shadow: var(--v8-shadow-md);
}

#simulador .clean-card:hover {
  transform: none;
}

#simulador label {
  color: var(--v8-ink-soft) !important;
}

#simulador .grid button,
#simulador .grid label {
  min-height: 3.25rem;
  border: 1px solid var(--v8-line) !important;
  background: var(--v8-surface-soft) !important;
  color: var(--v8-ink-soft) !important;
}

#simulador .grid button.bg-white {
  border-color: var(--v8-cobalt) !important;
  background: var(--v8-cobalt-soft) !important;
  color: var(--v8-cobalt-dark) !important;
  box-shadow: inset 0 0 0 1px rgba(83, 103, 248, 0.08);
}

#simulador .grid label:has(input:checked) {
  border-color: var(--v8-cobalt) !important;
  background: var(--v8-cobalt-soft) !important;
  color: var(--v8-cobalt-dark) !important;
}

#simulador input[type="checkbox"],
#simulador input[type="range"] {
  accent-color: var(--v8-cobalt);
}

#simulador .clean-card > div:last-child {
  border-color: rgba(83, 103, 248, 0.2) !important;
  background: var(--v8-navy) !important;
}

#simulador .clean-card > div:last-child .text-white {
  color: #fff !important;
}

#simulador .clean-card > div:last-child .text-platinum-500 {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Testimonials and FAQ */
.testimonials-section {
  background: var(--v8-canvas);
}

#depoimentos .clean-card {
  position: relative;
  min-height: 15rem;
  border-radius: 1.4rem;
}

#depoimentos .clean-card::before {
  content: '“';
  position: absolute;
  top: 0.5rem;
  right: 1.1rem;
  color: var(--v8-cobalt-soft);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

#depoimentos .italic {
  position: relative;
  z-index: 1;
  color: var(--v8-ink-soft) !important;
  font-size: 0.8rem !important;
}

.faq-section {
  background: var(--v8-surface-soft);
}

#faq .clean-card {
  padding: 0 !important;
  border-radius: 1rem;
  box-shadow: none;
}

#faq .clean-card:hover {
  border-color: var(--v8-line-strong);
  box-shadow: none;
  transform: none;
}

#faq .clean-card > button {
  min-height: 4rem;
  padding: 1rem 1.2rem;
  color: var(--v8-ink) !important;
  font-size: 0.86rem !important;
}

#faq .clean-card > div {
  margin: 0 1.2rem !important;
  padding: 0 0 1.2rem !important;
  border-top: 1px solid var(--v8-line) !important;
  color: var(--v8-muted) !important;
  font-size: 0.78rem !important;
}

/* Contact */
.contact-section {
  background:
    linear-gradient(90deg, var(--v8-navy) 0 48%, var(--v8-canvas) 48% 100%);
}

#contato > div > div > div:first-child {
  padding-right: 3rem;
}

#contato > div > div > div:first-child .section-eyebrow {
  color: var(--v8-lime);
}

#contato > div > div > div:first-child h2 {
  color: #fff !important;
}

#contato > div > div > div:first-child > p,
#contato > div > div > div:first-child .text-platinum-300 {
  color: rgba(255, 255, 255, 0.58) !important;
}

#contato > div > div > div:first-child strong {
  color: #fff !important;
}

#contato > div > div > div:first-child .bg-obsidian-850 {
  border-color: rgba(255, 255, 255, 0.13) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--v8-lime) !important;
}

#contato .clean-card {
  border-radius: var(--v8-radius-lg);
  box-shadow: var(--v8-shadow-md);
}

#contato .clean-card:hover {
  transform: none;
}

.site-public input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
.site-public select,
.site-public textarea {
  min-height: 2.85rem;
  border: 1px solid var(--v8-line) !important;
  border-radius: 0.75rem !important;
  background: #fff !important;
  color: var(--v8-ink) !important;
  font-size: 0.82rem !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-public textarea {
  min-height: 6rem;
}

.site-public input::placeholder,
.site-public textarea::placeholder {
  color: #a0a6b7 !important;
}

.site-public input:focus,
.site-public select:focus,
.site-public textarea:focus {
  border-color: var(--v8-cobalt) !important;
  box-shadow: 0 0 0 4px rgba(83, 103, 248, 0.1);
  outline: none;
}

/* Modal, WhatsApp and footer */
.budget-modal {
  background: rgba(7, 11, 29, 0.76);
  backdrop-filter: blur(14px);
}

.budget-modal__panel {
  max-width: 34rem;
  border-radius: 1.4rem !important;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.34);
}

.budget-modal__panel:hover {
  transform: none;
}

.budget-modal__panel > button {
  color: var(--v8-muted) !important;
}

.budget-modal__panel > button:hover {
  color: var(--v8-ink) !important;
}

.budget-modal__panel .bg-obsidian-950 {
  background: var(--v8-line) !important;
}

.budget-modal__panel .bg-white {
  background: var(--v8-cobalt) !important;
}

.budget-modal__panel label {
  color: var(--v8-ink-soft) !important;
}

.budget-modal__panel label.bg-obsidian-800 {
  border-color: var(--v8-cobalt) !important;
  background: var(--v8-cobalt-soft) !important;
  color: var(--v8-cobalt-dark) !important;
}

.budget-modal__panel label.bg-obsidian-850 {
  border-color: var(--v8-line) !important;
  background: var(--v8-surface-soft) !important;
}

.whatsapp-float a {
  min-height: 3.2rem;
  border: 1px solid rgba(13, 18, 38, 0.14);
  background: var(--v8-lime);
  color: var(--v8-navy);
  box-shadow: 0 18px 50px rgba(13, 18, 38, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float a:hover {
  box-shadow: 0 23px 60px rgba(13, 18, 38, 0.28);
  transform: translateY(-3px);
}

.site-footer {
  padding-block: 4.5rem 2rem;
  background: #080c1c;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__cta span {
  color: var(--v8-lime);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__cta h2 {
  max-width: 20ch;
  margin-top: 0.5rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.site-footer__cta .btn-primary {
  flex-shrink: 0;
  background: var(--v8-lime);
  border-color: var(--v8-lime);
  color: var(--v8-navy);
}

.site-footer__cta svg {
  width: 1rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.7fr);
  gap: 3rem;
  padding-block: 3.5rem;
}

.site-footer__brand {
  max-width: 20rem;
}

.site-footer__brand p {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
  line-height: 1.7;
}

.site-footer__grid > div:not(.site-footer__brand) {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.site-footer__grid strong {
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.site-footer__grid a {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  transition: color 0.2s ease;
}

.site-footer__grid a:hover {
  color: var(--v8-lime);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.64rem;
}

@media (max-width: 900px) {
  .conversion-intro,
  .conversion-close {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .conversion-paths {
    grid-template-columns: 1fr;
  }

  .conversion-card {
    min-height: 0;
  }

  .conversion-card__cta {
    margin-top: 1.75rem;
  }

  .conversion-close__action {
    width: min(100%, 22rem);
    min-width: 0;
    align-items: flex-start;
  }

  .section-heading--split,
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading--split > p {
    margin-left: 0;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid article:nth-child(2) {
    border-right: 0;
  }

  .process-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--v8-line);
  }

  .contact-section {
    background: linear-gradient(var(--v8-navy) 0 42%, var(--v8-canvas) 42% 100%);
  }

  #contato > div > div > div:first-child {
    padding-right: 0;
    padding-bottom: 2rem;
  }
}

@media (max-width: 640px) {
  .process-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .public-section {
    padding-block: 4.5rem;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article,
  .process-grid article:nth-child(2) {
    min-height: 15rem;
    border-right: 0;
    border-bottom: 1px solid var(--v8-line);
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .conversion-intro h2 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .conversion-card,
  .conversion-close {
    padding: 1.25rem;
  }

  .conversion-assurances {
    align-items: flex-start;
    flex-direction: column;
  }

  #portfolio > div > .section-heading > div:last-child {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  #portfolio > div > .section-heading button {
    flex-shrink: 0;
  }

  .contact-section {
    background: linear-gradient(var(--v8-navy) 0 38%, var(--v8-canvas) 38% 100%);
  }

  .whatsapp-float {
    right: 0.75rem !important;
    bottom: calc(0.75rem + env(safe-area-inset-bottom)) !important;
  }

  .whatsapp-float a {
    width: 3.2rem;
    justify-content: center;
    padding-inline: 0 !important;
  }

  .whatsapp-float a > span:not(.relative) {
    display: none;
  }

  .site-footer__cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__cta .btn-primary {
    width: 100%;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem 1.2rem;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

/* Client portal */
body.client-shell {
  background:
    radial-gradient(circle at 85% 10%, rgba(83, 103, 248, 0.1), transparent 24rem),
    var(--v8-canvas);
  color: var(--v8-ink);
}

.client-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(201, 208, 223, 0.76);
  background: rgba(245, 247, 251, 0.9);
  backdrop-filter: blur(18px);
}

.client-main {
  position: relative;
}

.client-search {
  padding: 2.4rem !important;
  border-radius: var(--v8-radius-lg);
  box-shadow: var(--v8-shadow-md);
}

.client-search > div:first-child {
  width: 3.5rem !important;
  height: 3.5rem !important;
  border: 0 !important;
  border-radius: 1rem !important;
  background: var(--v8-cobalt-soft) !important;
  color: var(--v8-cobalt) !important;
}

.client-order-heading {
  border-bottom: 1px solid var(--v8-line) !important;
}

.client-shell h1,
.client-shell h2,
.client-shell h3,
.client-shell .text-white,
.client-shell .text-platinum-100,
.client-shell .text-platinum-300 {
  color: var(--v8-ink) !important;
}

.client-shell .text-platinum-400,
.client-shell .text-platinum-500 {
  color: var(--v8-muted) !important;
}

.client-shell .border-white\/10,
.client-shell .border-white\/\[0\.08\],
.client-shell .border-white\/5 {
  border-color: var(--v8-line) !important;
}

.client-shell .bg-obsidian-950,
.client-shell .bg-obsidian-900,
.client-shell .bg-obsidian-850,
.client-shell .bg-obsidian-850\/60,
.client-shell .bg-obsidian-800 {
  background: var(--v8-surface-soft) !important;
}

.client-shell .clean-card {
  border-radius: 1.15rem;
}

.client-shell .clean-card:hover {
  transform: none;
}

.client-shell input {
  min-height: 3rem;
  border: 1px solid var(--v8-line) !important;
  border-radius: 0.75rem !important;
  background: #fff !important;
  color: var(--v8-ink) !important;
}

.client-shell input:focus {
  border-color: var(--v8-cobalt) !important;
  box-shadow: 0 0 0 4px rgba(83, 103, 248, 0.1);
}

.client-timeline .grid > div {
  border-color: var(--v8-line) !important;
  background: var(--v8-surface-soft) !important;
  opacity: 1 !important;
}

.client-timeline .grid > div.bg-obsidian-800 {
  border-color: var(--v8-cobalt) !important;
  background: var(--v8-cobalt-soft) !important;
}

.client-timeline .grid > div.bg-obsidian-800 .animate-pulse {
  background: var(--v8-cobalt) !important;
}

.client-deliverables .space-y-3 > div {
  border-color: var(--v8-line) !important;
  background: var(--v8-surface-soft) !important;
}

.client-footer {
  padding: 1.3rem;
  border-top: 1px solid var(--v8-line);
  background: #fff;
  color: var(--v8-muted);
  font-size: 0.65rem;
  text-align: center;
}

@media (max-width: 640px) {
  .client-header .btn-secondary span {
    display: none;
  }

  .client-header .btn-secondary {
    width: 2.8rem;
    padding-inline: 0;
  }
}

/* Authentication */
body.auth-shell {
  min-height: 100vh;
  background: var(--v8-canvas);
  color: var(--v8-ink);
}

.auth-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(26rem, 0.9fr) minmax(32rem, 1.1fr);
}

.auth-story {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 2.2rem clamp(2rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 12% 12%, rgba(83, 103, 248, 0.45), transparent 24rem),
    radial-gradient(circle at 92% 88%, rgba(217, 255, 114, 0.14), transparent 22rem),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--v8-navy);
  background-size: auto, auto, 100% 4rem, auto;
}

.auth-story .brand-copy strong {
  color: #fff;
}

.auth-story .brand-copy small {
  color: rgba(255, 255, 255, 0.42);
}

.auth-story__content {
  width: min(100%, 34rem);
  margin-block: auto;
}

.auth-story__eyebrow {
  display: inline-flex;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(217, 255, 114, 0.24);
  border-radius: 999px;
  background: rgba(217, 255, 114, 0.08);
  color: var(--v8-lime);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.auth-story h1 {
  max-width: 10ch;
  margin-top: 1.35rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.auth-story__content > p {
  max-width: 33rem;
  margin-top: 1.4rem;
  color: rgba(229, 233, 249, 0.62);
  font-size: 0.92rem;
  line-height: 1.75;
}

.auth-story__features {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.2rem;
}

.auth-story__features > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.045);
}

.auth-story__features > div > svg {
  width: 2.2rem;
  height: 2.2rem;
  padding: 0.58rem;
  border-radius: 0.7rem;
  background: rgba(83, 103, 248, 0.18);
  color: #aeb7ff;
}

.auth-story__features span {
  display: flex;
  flex-direction: column;
}

.auth-story__features strong {
  color: #fff;
  font-size: 0.72rem;
}

.auth-story__features small {
  margin-top: 0.12rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.62rem;
}

.auth-story__footer {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.58rem;
}

.auth-form-side {
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at 85% 10%, rgba(83, 103, 248, 0.1), transparent 20rem),
    var(--v8-canvas);
}

.auth-card {
  width: min(100%, 28rem);
}

.auth-card__header > span {
  color: var(--v8-cobalt);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.auth-card__header h2 {
  margin-top: 0.65rem;
  color: var(--v8-ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1;
}

.auth-card__header p {
  margin-top: 0.75rem;
  color: var(--v8-muted);
  font-size: 0.82rem;
}

.auth-alert {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.4rem;
  padding: 0.8rem;
  border: 1px solid rgba(227, 83, 109, 0.2);
  border-radius: 0.75rem;
  background: rgba(227, 83, 109, 0.08);
  color: #b13e54;
  font-size: 0.72rem;
}

.auth-alert svg {
  width: 1rem;
}

.auth-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.auth-form label {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--v8-ink-soft);
  font-size: 0.68rem;
  font-weight: 750;
}

.auth-field {
  position: relative;
}

.auth-field svg {
  position: absolute;
  top: 50%;
  left: 0.9rem;
  width: 1rem;
  color: #9299aa;
  transform: translateY(-50%);
}

.auth-field input {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.8rem 0.9rem 0.8rem 2.65rem;
  border: 1px solid var(--v8-line);
  border-radius: 0.8rem;
  background: #fff;
  color: var(--v8-ink);
  font-size: 0.8rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-field input:focus {
  border-color: var(--v8-cobalt);
  box-shadow: 0 0 0 4px rgba(83, 103, 248, 0.1);
  outline: none;
}

.auth-form .btn-primary {
  width: 100%;
  margin-top: 0.4rem;
}

.auth-form .btn-primary svg {
  width: 1rem;
}

.auth-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  color: var(--v8-muted);
  font-size: 0.7rem;
  font-weight: 650;
}

.auth-back:hover {
  color: var(--v8-cobalt-dark);
}

.auth-back svg {
  width: 0.85rem;
}

@media (max-width: 900px) {
  .auth-layout {
    grid-template-columns: 1fr;
  }

  .auth-story {
    min-height: auto;
    padding-block: 1.5rem 3rem;
  }

  .auth-story__content {
    margin-top: 3.5rem;
  }

  .auth-story h1 {
    max-width: 13ch;
    font-size: clamp(2.5rem, 9vw, 4rem);
  }

  .auth-story__features {
    grid-template-columns: repeat(3, 1fr);
  }

  .auth-story__features > div {
    align-items: flex-start;
  }

  .auth-story__footer {
    margin-top: 2rem;
  }

  .auth-form-side {
    min-height: 35rem;
  }
}

@media (max-width: 640px) {
  .auth-story {
    padding-inline: 1.2rem;
  }

  .auth-story__features {
    grid-template-columns: 1fr;
  }

  .auth-form-side {
    padding: 3rem 1.2rem;
  }
}

/* ==========================================================================
   ADMIN WORKSPACE — light operational interface
   ========================================================================== */

body.admin-shell {
  background: #eef1f6;
  color: var(--v8-ink);
  font-size: 0.875rem;
}

.admin-app {
  min-height: 100vh;
  display: flex;
}

.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 60;
  width: 16rem;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 20% 5%, rgba(83, 103, 248, 0.24), transparent 16rem),
    #0c1124;
  color: rgba(255, 255, 255, 0.68);
  transition: transform 0.25s ease;
}

.admin-sidebar__brand {
  min-height: 5.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar .brand-copy strong {
  color: #fff;
}

.admin-sidebar .brand-copy small {
  color: rgba(255, 255, 255, 0.42);
}

.admin-sidebar__close {
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.admin-sidebar__close svg {
  width: 1rem;
}

.admin-sidebar__context {
  display: flex;
  flex-direction: column;
  margin: 1rem 0.85rem 0.6rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
}

.admin-sidebar__context span {
  color: var(--v8-lime);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.admin-sidebar__context strong {
  margin-top: 0.15rem;
  color: #fff;
  font-size: 0.75rem;
}

.admin-nav {
  flex: 1;
  overflow-y: auto;
  padding: 0.4rem 0.75rem 1rem;
}

.admin-nav__label {
  display: block;
  margin: 1.15rem 0.75rem 0.4rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-nav a {
  min-height: 2.75rem;
  display: grid;
  grid-template-columns: 1.1rem 1fr auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 650;
  transition: 0.18s ease;
}

.admin-nav a svg {
  width: 1rem;
}

.admin-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.admin-nav a.is-active {
  background: var(--v8-cobalt);
  color: #fff;
  box-shadow: 0 10px 24px rgba(83, 103, 248, 0.22);
}

.admin-nav a b {
  min-width: 1.25rem;
  padding: 0.12rem 0.35rem;
  border-radius: 999px;
  background: var(--v8-lime);
  color: var(--v8-navy);
  font-size: 0.58rem;
  text-align: center;
}

.admin-sidebar__footer {
  padding: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-user {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
}

.admin-user > span {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 0.65rem;
  background: var(--v8-lime);
  color: var(--v8-navy);
  font-size: 0.68rem;
  font-weight: 900;
}

.admin-user > div {
  display: flex;
  flex-direction: column;
}

.admin-user strong {
  color: #fff;
  font-size: 0.68rem;
}

.admin-user small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.56rem;
}

.admin-user > a {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 0.6rem;
  color: rgba(255, 255, 255, 0.42);
}

.admin-user > a:hover {
  background: rgba(227, 83, 109, 0.14);
  color: #ff8ba0;
}

.admin-user svg {
  width: 0.95rem;
}

.admin-workspace {
  min-width: 0;
  min-height: 100vh;
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-left: 16rem;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 5.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.8rem;
  border-bottom: 1px solid #dde2eb;
  background: rgba(246, 248, 251, 0.9);
  backdrop-filter: blur(18px);
}

.admin-topbar__left,
.admin-topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.admin-topbar__left > div {
  display: flex;
  flex-direction: column;
}

.admin-topbar__left span {
  color: var(--v8-muted);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-topbar__left strong {
  margin-top: 0.1rem;
  color: var(--v8-ink);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.admin-menu-button {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--v8-line);
  border-radius: 0.75rem;
  background: #fff;
  color: var(--v8-ink);
}

.admin-menu-button svg {
  width: 1rem;
}

.admin-environment,
.admin-view-site {
  min-height: 2.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--v8-line);
  border-radius: 0.7rem;
  background: #fff;
  color: var(--v8-muted);
  font-size: 0.65rem;
  font-weight: 700;
}

.admin-environment svg,
.admin-view-site svg {
  width: 0.8rem;
}

.admin-environment svg {
  color: var(--v8-success);
  fill: rgba(25, 169, 116, 0.15);
}

.admin-view-site:hover {
  border-color: var(--v8-cobalt);
  color: var(--v8-cobalt-dark);
}

.admin-main {
  width: 100%;
  max-width: 92rem;
  flex: 1;
  margin-inline: auto;
  padding: 1.8rem;
}

.admin-page-heading {
  position: relative;
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--v8-line);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 94% 0, rgba(217, 255, 114, 0.28), transparent 12rem),
    #fff;
  box-shadow: 0 8px 28px rgba(24, 31, 63, 0.045);
}

.admin-page-heading::before {
  content: '';
  position: absolute;
  inset: 1rem auto 1rem 0;
  width: 3px;
  border-radius: 0 99px 99px 0;
  background: var(--v8-cobalt);
}

.admin-page-heading p {
  color: var(--v8-muted) !important;
  font-size: 0.7rem !important;
}

.admin-kpi-grid .clean-card {
  position: relative;
  overflow: hidden;
}

.admin-kpi-grid .clean-card::after {
  content: '';
  position: absolute;
  top: -1.8rem;
  right: -1.8rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(83, 103, 248, 0.06);
}

.admin-kpi-grid .clean-card:nth-child(2)::after {
  background: rgba(217, 255, 114, 0.32);
}

.admin-kpi-grid .clean-card:nth-child(3)::after {
  background: rgba(25, 169, 116, 0.08);
}

.admin-kpi-grid .clean-card:nth-child(4)::after {
  background: rgba(243, 168, 59, 0.1);
}

.admin-kpi-grid .clean-card .text-2xl {
  font-family: var(--font-display);
  font-size: 1.85rem !important;
  font-weight: 850 !important;
  letter-spacing: -0.05em;
}

.admin-table-card {
  overflow: hidden;
}

.admin-funnel-card .space-y-2 > div {
  border: 0 !important;
  border-radius: 0.7rem !important;
  background: var(--v8-surface-soft) !important;
}

.admin-funnel-card .space-y-2 > div:last-child {
  background: rgba(25, 169, 116, 0.08) !important;
}

.admin-shortcuts-card .grid a {
  min-height: 4.8rem;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-color: var(--v8-line) !important;
  background: #fff !important;
}

.admin-shortcuts-card .grid a:hover {
  border-color: var(--v8-cobalt) !important;
  background: var(--v8-cobalt-soft) !important;
  color: var(--v8-cobalt-dark) !important;
}

.admin-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.8rem;
  border-top: 1px solid #dde2eb;
  color: #9097a8;
  font-size: 0.62rem;
}

.admin-shell .clean-card {
  border-radius: 1rem;
  box-shadow: 0 8px 28px rgba(24, 31, 63, 0.055);
}

.admin-shell .clean-card:hover {
  border-color: var(--v8-line-strong);
  box-shadow: 0 14px 38px rgba(24, 31, 63, 0.08);
  transform: none;
}

.admin-shell h1,
.admin-shell h2,
.admin-shell h3,
.admin-shell .text-white,
.admin-shell .text-zinc-100,
.admin-shell .text-zinc-200,
.admin-shell .text-zinc-300,
.admin-shell .text-platinum-100,
.admin-shell .text-platinum-300 {
  color: var(--v8-ink) !important;
}

.admin-shell h1 {
  font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.045em !important;
}

.admin-shell .text-zinc-400,
.admin-shell .text-zinc-500,
.admin-shell .text-platinum-400,
.admin-shell .text-platinum-500 {
  color: var(--v8-muted) !important;
}

.admin-shell .border-zinc-800,
.admin-shell .border-zinc-700,
.admin-shell .border-white\/10,
.admin-shell .border-white\/\[0\.08\],
.admin-shell .divide-zinc-800\/60 > :not([hidden]) ~ :not([hidden]) {
  border-color: var(--v8-line) !important;
}

.admin-shell .bg-zinc-950,
.admin-shell .bg-zinc-900,
.admin-shell .bg-zinc-900\/50,
.admin-shell .bg-zinc-900\/60,
.admin-shell .bg-zinc-800,
.admin-shell .bg-zinc-800\/30,
.admin-shell .bg-obsidian-950,
.admin-shell .bg-obsidian-900,
.admin-shell .bg-obsidian-850,
.admin-shell .bg-obsidian-800 {
  background: var(--v8-surface-soft) !important;
}

.admin-shell table {
  color: var(--v8-ink-soft);
}

.admin-shell table thead {
  background: #f7f8fb !important;
  color: var(--v8-muted) !important;
}

.admin-shell table th {
  font-size: 0.62rem !important;
  letter-spacing: 0.07em;
}

.admin-shell table td {
  font-size: 0.74rem;
}

.admin-shell table tbody tr:hover {
  background: var(--v8-cobalt-soft) !important;
}

.admin-shell input:not([type="checkbox"]):not([type="radio"]),
.admin-shell select,
.admin-shell textarea {
  min-height: 2.75rem;
  border: 1px solid var(--v8-line) !important;
  border-radius: 0.7rem !important;
  background: #fff !important;
  color: var(--v8-ink) !important;
  font-size: 0.76rem !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-shell textarea {
  min-height: 5.5rem;
}

.admin-shell input::placeholder,
.admin-shell textarea::placeholder {
  color: #a3a9b8 !important;
}

.admin-shell input:focus,
.admin-shell select:focus,
.admin-shell textarea:focus {
  border-color: var(--v8-cobalt) !important;
  box-shadow: 0 0 0 4px rgba(83, 103, 248, 0.1);
  outline: none;
}

.admin-shell input[type="checkbox"],
.admin-shell input[type="radio"] {
  accent-color: var(--v8-cobalt);
}

.admin-shell label {
  color: var(--v8-ink-soft) !important;
  font-size: 0.68rem !important;
}

.admin-shell .fixed.inset-0 {
  background: rgba(7, 11, 29, 0.68) !important;
  backdrop-filter: blur(12px);
}

.admin-shell .fixed.inset-0 .clean-card {
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3);
}

.admin-shell .btn-primary {
  background: var(--v8-cobalt);
  color: #fff !important;
}

.admin-shell .btn-secondary {
  background: #fff;
  color: var(--v8-ink) !important;
}

.admin-shell .rounded-lg.bg-emerald-500\/10 {
  border-color: rgba(25, 169, 116, 0.2) !important;
  background: rgba(25, 169, 116, 0.08) !important;
  color: #117552 !important;
}

.admin-shell .rounded-lg.bg-rose-500\/10 {
  border-color: rgba(227, 83, 109, 0.2) !important;
  background: rgba(227, 83, 109, 0.08) !important;
  color: #b03d53 !important;
}

.admin-shell .bg-amber-500\/10 {
  background: rgba(245, 158, 11, 0.12) !important;
  border-color: rgba(217, 119, 6, 0.22) !important;
  color: #92400e !important;
}

.admin-shell .bg-blue-500\/10 {
  background: rgba(37, 99, 235, 0.1) !important;
  border-color: rgba(37, 99, 235, 0.2) !important;
  color: #1d4ed8 !important;
}

.admin-shell .bg-emerald-500\/10 {
  background: rgba(16, 185, 129, 0.1) !important;
  border-color: rgba(5, 150, 105, 0.2) !important;
  color: #047857 !important;
}

.admin-shell .bg-rose-500\/10 {
  background: rgba(244, 63, 94, 0.1) !important;
  border-color: rgba(225, 29, 72, 0.2) !important;
  color: #be123c !important;
}

.admin-sidebar-overlay {
  display: none;
}

@media (max-width: 1023px) {
  .admin-sidebar {
    transform: translateX(-100%);
    box-shadow: 24px 0 70px rgba(0, 0, 0, 0.25);
  }

  .admin-sidebar.is-open {
    transform: translateX(0);
  }

  .admin-sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 55;
    display: block;
    background: rgba(6, 9, 22, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .admin-sidebar-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .admin-workspace {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .admin-topbar,
  .admin-main {
    padding-inline: 1rem;
  }

  .admin-environment {
    display: none;
  }

  .admin-view-site span {
    display: none;
  }

  .admin-main {
    padding-block: 1.2rem;
  }

  .admin-footer {
    flex-direction: column;
    padding-inline: 1rem;
  }

  .admin-shell table {
    min-width: 46rem;
  }
}
