/* ===================================================================
   Jarvis Creations — jarviscreations.app
   Dark / futuristic / tech-studio style sheet
   =================================================================== */

:root {
  /* Palette */
  --bg-0:        #06080F;
  --bg-1:        #0B0F1C;
  --bg-2:        #11162A;
  --surface:     #131829;
  --surface-2:   #1A2038;
  --border:      #1F2742;
  --border-hi:   #2C3559;

  --text:        #F1F5F9;
  --text-muted:  #9AA8C7;
  --text-dim:    #6B7794;

  --accent:      #00E5FF;
  --accent-hi:   #5EE7F7;
  --accent-2:    #A855F7;
  --accent-3:    #EC4899;

  --success:     #10B981;

  /* Type */
  --font-body:    "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --container:    1200px;
  --container-narrow: 720px;
  --radius:       14px;
  --radius-sm:    8px;

  /* Effects */
  --shadow-card:  0 4px 20px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.04) inset;
  --shadow-glow:  0 0 40px rgba(0, 229, 255, 0.15);
  --gradient-1:   linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  --gradient-2:   linear-gradient(135deg, var(--accent) 0%, var(--accent-3) 50%, var(--accent-2) 100%);

  --ease:         cubic-bezier(.2,.8,.2,1);
}

/* ============================================================ RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-0);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}
.mono { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.08em; }

/* ============================================================ BACKGROUND */
.bg-grid {
  position: fixed; 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: 56px 56px;
  background-position: -1px -1px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 100%);
}
.bg-glow {
  position: fixed;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 1100px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(0,229,255,0.18) 0%, rgba(168,85,247,0.10) 35%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================ LAYOUT */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.container-narrow { max-width: var(--container-narrow); }

.section { padding: 100px 0; position: relative; }
.section-alt {
  background: linear-gradient(180deg, transparent 0%, rgba(17, 22, 42, 0.6) 50%, transparent 100%);
}

.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head .eyebrow {
  color: var(--accent);
  display: inline-block;
  margin-bottom: 18px;
  padding: 4px 12px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 999px;
}
.section-head h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 18px;
}
.section-head .section-lede {
  color: var(--text-muted);
  font-size: 17px;
  margin: 0;
}

/* ============================================================ NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6, 8, 15, 0.7);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.brand-mark {
  display: inline-flex; color: var(--accent);
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.5));
}
.brand-text-accent { color: var(--accent); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 9px 18px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  color: var(--accent) !important;
  background: rgba(0, 229, 255, 0.05);
  transition: all 0.2s var(--ease);
}
.nav-cta:hover {
  background: var(--accent);
  color: var(--bg-0) !important;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============================================================ HERO */
.hero {
  padding: 80px 0 80px;
  text-align: center;
}
.hero-inner { max-width: 920px; margin: 0 auto; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 999px;
  color: var(--success);
  font-size: 11px;
  margin-bottom: 36px;
}
.status-dot {
  display: inline-block; width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--success);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(38px, 7vw, 72px);
  margin-bottom: 26px;
  letter-spacing: -0.03em;
}
.gradient-text {
  background: var(--gradient-2);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 8s ease infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-lede {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta-row {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 80px;
}

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--gradient-1);
  color: var(--bg-0);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.25), 0 0 0 1px rgba(255,255,255,0.1) inset;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.45), 0 0 0 1px rgba(255,255,255,0.15) inset;
}

.btn-ghost {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--border-hi);
  transform: translateY(-2px);
}

.btn-block { width: 100%; justify-content: center; }

/* ============================================================ STATS */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(0,229,255,0.02), transparent);
}
.stat { text-align: center; padding: 8px; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
@media (max-width: 640px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================ WORK GRID */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 24px;
}

.work-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.work-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, var(--card-accent, var(--accent)), var(--card-accent-2, var(--accent-2)));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.work-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5),
              0 0 60px rgba(var(--card-accent-rgb, 0, 229, 255), 0.15);
}
.work-card:hover::before { opacity: 1; }

.work-card-visual {
  height: 140px;
  position: relative;
  background:
    linear-gradient(135deg,
      color-mix(in oklab, var(--card-accent, var(--accent)) 20%, var(--bg-1)) 0%,
      color-mix(in oklab, var(--card-accent-2, var(--accent-2)) 20%, var(--bg-1)) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.work-card-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(6,8,15,0.6) 100%);
}
.work-card-mark {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  color: var(--card-accent, var(--accent));
  letter-spacing: -0.02em;
  text-shadow: 0 0 24px color-mix(in oklab, var(--card-accent, var(--accent)) 40%, transparent);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.work-card-tag {
  position: absolute; bottom: 14px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  z-index: 1;
}

.work-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.work-card-body h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.work-card-body p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0 0 18px;
  flex: 1;
}

.tech-row {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 18px;
}
.tech {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.work-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--card-accent, var(--accent));
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: auto;
  transition: gap 0.2s var(--ease);
}
.work-link:hover { gap: 10px; }
.work-link .arrow { transition: transform 0.2s var(--ease); }

.work-card-more {
  background: linear-gradient(135deg, rgba(0,229,255,0.04), rgba(168,85,247,0.04));
  border-style: dashed;
}
.work-card-more .work-card-body { padding: 32px; justify-content: center; }
.work-card-more h3 { color: var(--text); }

/* ============================================================ PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex; flex-direction: column;
  transition: all 0.3s var(--ease);
  position: relative;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hi);
}
.price-card-featured {
  background: linear-gradient(180deg, rgba(0,229,255,0.05), rgba(168,85,247,0.05)), var(--surface);
  border-color: rgba(0,229,255,0.4);
  box-shadow: 0 0 40px rgba(0,229,255,0.12);
}
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-1);
  color: var(--bg-0);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.price-tier {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.price {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.price .amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.price-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 22px;
}
.price-features {
  list-style: none; padding: 0; margin: 0 0 26px;
  flex: 1;
}
.price-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 22px;
}
.price-features li::before {
  content: "→";
  position: absolute; left: 0;
  color: var(--accent);
  font-family: var(--font-mono);
}
.price-features li:last-child { border-bottom: none; }

.pricing-footnote {
  text-align: center;
  margin-top: 36px;
  color: var(--text-dim);
  font-size: 12.5px;
}
.pricing-footnote .hl { color: var(--accent); }

/* ============================================================ PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.process-step::before {
  content: "";
  position: absolute; inset: -1px -1px auto -1px;
  height: 2px;
  background: var(--gradient-1);
  opacity: 0.4;
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: var(--border-hi);
}
.process-step:hover::before { opacity: 1; }
.process-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 22px; margin-bottom: 10px; }
.process-step p { color: var(--text-muted); font-size: 14.5px; margin: 0; line-height: 1.65; }

/* ============================================================ CONTACT FORM */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }

.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15);
}
.form-field textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%239AA8C7' stroke-width='1.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-status {
  margin: 14px 0 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  text-align: center;
  min-height: 18px;
}
.form-status.success { color: var(--success); }
.form-status.error { color: #F87171; }

.contact-direct {
  text-align: center;
  margin-top: 26px;
  color: var(--text-dim);
  font-size: 12.5px;
}
.contact-direct a { color: var(--accent); }
.contact-direct a:hover { text-decoration: underline; }

/* ============================================================ FOOTER */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-1);
  padding: 60px 0 80px;
  margin-top: 60px;
}
.footer-inner { text-align: center; }
.footer-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.footer-tag {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 24px;
  font-size: 14.5px;
}
.footer-meta {
  color: var(--text-dim);
  font-size: 11px;
  margin: 0;
}

/* ============================================================ JARVIS CHAT WIDGET */
.jarvis-chat {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 200;
}
.jarvis-toggle {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--surface) 100%);
  color: var(--accent);
  border: 1px solid rgba(0,229,255,0.4);
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.4), 0 0 30px rgba(0,229,255,0.2);
  transition: all 0.25s var(--ease);
  position: relative;
}
.jarvis-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.5), 0 0 40px rgba(0,229,255,0.4);
}
.jarvis-toggle-pulse {
  position: absolute;
  top: 14px; left: 14px;
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: ring 2s infinite;
  z-index: 2;
}
@keyframes ring {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.jarvis-toggle-label { letter-spacing: 0.04em; }
@media (max-width: 480px) {
  .jarvis-toggle-label { display: none; }
  .jarvis-toggle { padding: 12px; }
}

.jarvis-panel {
  position: absolute; bottom: 70px; right: 0;
  width: min(380px, calc(100vw - 32px));
  height: min(540px, calc(100vh - 120px));
  background: var(--surface);
  border: 1px solid rgba(0,229,255,0.3);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 60px rgba(0,229,255,0.15);
  animation: slideUp 0.25s var(--ease);
}
.jarvis-panel[hidden] { display: none !important; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.jarvis-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  background: linear-gradient(180deg, var(--bg-2), var(--surface));
  border-bottom: 1px solid var(--border);
}
.jarvis-header-left { display: flex; align-items: center; gap: 12px; }
.jarvis-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: 0.06em; }
.jarvis-subtitle { color: var(--success); font-size: 10px; }
.jarvis-close {
  background: none; border: none; color: var(--text-muted);
  font-size: 26px; line-height: 1; cursor: pointer; padding: 0 4px;
  transition: color 0.2s;
}
.jarvis-close:hover { color: var(--text); }

.jarvis-messages {
  flex: 1; padding: 18px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 12px;
}
.jarvis-msg { display: flex; }
.jarvis-msg-bot { justify-content: flex-start; }
.jarvis-msg-user { justify-content: flex-end; }
.jarvis-msg-bubble {
  max-width: 85%;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.jarvis-msg-bot .jarvis-msg-bubble {
  background: var(--bg-1);
  border: 1px solid var(--border);
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.jarvis-msg-user .jarvis-msg-bubble {
  background: var(--gradient-1);
  color: var(--bg-0);
  border-bottom-right-radius: 4px;
}
.jarvis-msg-thinking .jarvis-msg-bubble {
  color: var(--text-muted);
  font-style: italic;
}
.jarvis-msg-thinking .jarvis-msg-bubble::after {
  content: "";
  display: inline-block;
  animation: dots 1.4s infinite;
}
@keyframes dots {
  0%, 20% { content: "."; }
  40% { content: ".."; }
  60%, 100% { content: "..."; }
}

.jarvis-input {
  display: flex; gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--border);
  background: var(--bg-1);
}
.jarvis-input input {
  flex: 1;
  padding: 11px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
}
.jarvis-input input:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.15);
}
.jarvis-input button {
  width: 42px; height: 42px;
  background: var(--gradient-1);
  color: var(--bg-0);
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s var(--ease);
}
.jarvis-input button:hover { transform: scale(1.05); }
.jarvis-input button:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ============================================================ MOBILE */
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-head { margin-bottom: 44px; }
  .hero { padding: 50px 0 60px; }
  .hero-cta-row { margin-bottom: 50px; }
  .stats-strip { padding: 20px 0; }
}

/* ============================================================ A11Y */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
