/* 5K BLOCKS — Brutalist Premium */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

a {
  text-decoration: none;
  color: #00ff88;
  transition: color 0.2s ease;
}

a:visited {
  color: #00cc6a;
}

a:hover {
  color: #00ff99;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  background: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Background ───────────────────────────────────────────────────────── */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(0,255,136,0.08), transparent 60%);
  pointer-events: none;
}

/* ─── Layout ───────────────────────────────────────────────────────────── */
.page { min-height: 100vh; display: flex; flex-direction: column; }

.page-main { flex: 1; padding-top: 5rem; }

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Nav ─────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(0,0,0,0.6);
  border-bottom: none;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  transition: background 0.4s ease;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.brand-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease, transform 0.3s ease;
}

.brand:hover .brand-logo {
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255,255,255,0.5));
  transform: translateY(-1px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav a {
  text-decoration: none !important;
}

.nav-link {
  color: #666;
  position: relative;
  padding: 0.6rem 1.1rem;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,255,136,0.06), rgba(0,255,136,0.02));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.nav-link:hover::before,
.nav-link-active::before { opacity: 1; }

.nav-link:hover {
  color: #00ff88;
  text-shadow: 0 0 20px rgba(0,255,136,0.3);
}

.nav-link-active {
  color: #fff;
}

.nav-link-active::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(0,255,136,0.12), rgba(0,255,136,0.04));
}

/* Nav CTA - separate from regular links */
.nav-link.nav-cta {
  padding: 0.6rem 1.4rem;
  margin-left: 0.5rem;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,255,136,0.2);
}

.nav-link.nav-cta::before,
.nav-link.nav-cta::after { display: none; }

.nav-link.nav-cta:hover {
  color: #000;
  text-shadow: none;
  background: linear-gradient(135deg, #00ff99, #00dd77);
  box-shadow: 0 0 30px rgba(0,255,136,0.5);
  transform: translateY(-2px);
}

.nav-cta-dot { display: none; }
.nav-cta-short { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-toggle:hover {
  border-color: #00ff88;
  background: rgba(0,255,136,0.15);
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ─── Marquee ─────────────────────────────────────────────────────────── */
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
.marquee-wrap {
  overflow: hidden;
  padding: 0.6rem 0;
}

.marquee {
  display: flex;
  gap: 4rem;
  animation: marquee 25s linear infinite;
}

.marquee span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: #444;
  white-space: nowrap;
}

.marquee span.accent { color: #00ff88; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Animations ───────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0,255,136,0.3); }
  50% { box-shadow: 0 0 40px rgba(0,255,136,0.5); }
}

@keyframes drawLine {
  from { stroke-dashoffset: 100; }
  to { stroke-dashoffset: 0; }
}

@keyframes drawRect {
  from { stroke-dashoffset: 400; }
  to { stroke-dashoffset: 0; }
}

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

.animate-in .animate-delay-1 { animation: fadeUp 0.7s ease-out both; }
.animate-in .animate-delay-2 { animation: fadeUp 0.7s ease-out 0.15s both; }
.animate-in .animate-delay-3 { animation: fadeUp 0.7s ease-out 0.3s both; }
.animate-in .animate-delay-4 { animation: fadeUp 0.7s ease-out 0.45s both; }
.animate-in .animate-delay-5 { animation: fadeUp 0.7s ease-out 0.6s both; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal .feature-card {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.revealed .feature-card {
  animation: fadeUp 0.6s ease forwards;
}

.reveal.revealed .feature-card:nth-child(1) { animation-delay: 0.1s; }
.reveal.revealed .feature-card:nth-child(2) { animation-delay: 0.2s; }
.reveal.revealed .feature-card:nth-child(3) { animation-delay: 0.3s; }
.reveal.revealed .feature-card:nth-child(4) { animation-delay: 0.4s; }

/* ─── Hero ────────────────────────────────────────────────────────────── */
.hero {
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding: 6rem 0 7rem;
}

.hero-grid {
  width: 100%;
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 5rem; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #00ff88;
}

.eyebrow-pill {
  padding: 0.2rem 0.6rem;
  background: rgba(0,255,136,0.15);
  color: #00ff88;
}

/* Hero slider */
.hero-slider {
  position: relative;
  min-height: 4.5em;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-title.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.hero-slider-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hero-slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-dots .dot:hover {
  background: rgba(255,255,255,0.4);
}

.hero-slider-dots .dot.active {
  background: #00ff88;
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(0,255,136,0.5);
}

.hero-outline {
  display: block;
  color: #fff;
}

.hero-highlight {
  display: block;
  margin-top: 0.1em;
  font-weight: 700;
  color: #00ff88;
  filter: url(#outline-outer);
}

.hero-text-wrap {
  position: relative;
  min-height: 6.5em;
  margin-bottom: 2rem;
}

.hero-text-slide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  max-width: 28rem;
}

.hero-text-slide.active {
  position: relative;
  opacity: 1;
}

.hero-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #888;
}

.hero-badges { display: none; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons with arrow + micro-interactions */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-primary,
a.btn-primary,
a.btn-primary:hover,
a.btn-primary:visited {
  background: #00ff88;
  color: #000;
  border: none;
  box-shadow: 0 0 0 0 rgba(0,255,136,0.4);
}

.btn-primary:hover {
  background: #00dd77;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,255,136,0.35);
}

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

.btn-secondary,
a.btn-secondary,
a.btn-secondary:hover,
a.btn-secondary:visited {
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  background: transparent;
}

.btn-secondary:hover,
a.btn-secondary:hover {
  border-color: #00ff88;
  color: #fff;
  background: rgba(0,255,136,0.05);
  transform: translateY(-2px);
}

/* Legacy btn-primary/btn-secondary for other pages */
.btn-primary:not(.btn) {
  display: inline-flex;
  align-items: center;
  padding: 1.1rem 2rem;
  background: #00ff88;
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary-dot { display: none; }

.hero-note { display: none; }

/* Hero visual - automation pipeline */
.hero-right {
  position: relative;
}

.hero-visual {
  padding: 1.75rem;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

/* Pipeline: Lead → Worker → AI → Booked */
.hero-pipeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.pipeline-node {
  flex: 1;
  padding: 0.75rem 0.5rem;
  background: rgba(0,255,136,0.06);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 8px;
  text-align: center;
  transition: all 0.4s ease;
  animation: nodeIn 0.6s ease-out backwards;
}

.pipeline-node:nth-child(1) { animation-delay: 0.3s; }
.pipeline-node:nth-child(3) { animation-delay: 0.5s; }
.pipeline-node:nth-child(5) { animation-delay: 0.7s; }
.pipeline-node:nth-child(7) { animation-delay: 0.9s; }

.pipeline-node:hover {
  background: rgba(0,255,136,0.12);
  border-color: rgba(0,255,136,0.4);
  box-shadow: 0 0 20px rgba(0,255,136,0.15);
}

.pipeline-node-result {
  background: rgba(0,255,136,0.12);
  border-color: rgba(0,255,136,0.35);
}

.node-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  color: #00ff88;
  letter-spacing: 0.1em;
}

.node-desc {
  display: block;
  font-size: 0.6rem;
  color: #555;
  margin-top: 0.2rem;
}

.pipeline-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,255,136,0.3), rgba(0,255,136,0.6));
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.flow-dot {
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: flowThrough 2.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(0,255,136,0.8);
}

.pipeline-arrow:nth-child(2) .flow-dot { animation-delay: 0.5s; }
.pipeline-arrow:nth-child(4) .flow-dot { animation-delay: 0.9s; }
.pipeline-arrow:nth-child(6) .flow-dot { animation-delay: 1.3s; }

@keyframes flowThrough {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

@keyframes nodeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Deployment log */
.hero-log {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  line-height: 1.9;
  color: #555;
  padding: 1rem 1.1rem;
  background: rgba(0,0,0,0.4);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}

.log-line {
  opacity: 0;
  animation: logLineIn 0.5s ease-out forwards;
}

.log-line-1 { animation-delay: 1.2s; }
.log-line-2 { animation-delay: 1.6s; }
.log-line-3 { animation-delay: 2s; }
.log-line-4 { animation-delay: 2.4s; }

@keyframes logLineIn {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.log-prompt {
  color: #00ff88;
  margin-right: 0.35rem;
}

.log-ok {
  color: #00ff88;
  margin-right: 0.5rem;
}

.log-status {
  color: #00ff88;
  margin-right: 0.4rem;
  animation: pulse 1.5s ease-in-out infinite;
}

.log-metric {
  color: #00ff88;
  font-weight: 600;
}

@keyframes flowThroughVertical {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@media (max-width: 640px) {
  .hero-pipeline {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .pipeline-node {
    width: 100%;
    max-width: 200px;
  }
  .pipeline-arrow {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, rgba(0,255,136,0.3), rgba(0,255,136,0.6));
  }
  .flow-dot {
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    animation-name: flowThroughVertical;
  }
}

/* ─── Bento Sections ──────────────────────────────────────────────────── */
.section {
  width: 100%;
  padding: 3rem 0 6rem;
}

.section-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #00ff88;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1rem;
}

.section-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #888;
  max-width: 36rem;
}

/* Bento grid */
.bento {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
  .bento .feature-card:nth-child(1) { grid-column: span 2; }
  .bento .feature-card:nth-child(2) { grid-column: span 1; }
  .bento .feature-card:nth-child(3) { grid-column: span 1; }
}

.bento-item {
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.2s, background 0.2s;
}

.bento-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(0,255,136,0.2);
}

.bento-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.bento-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* Standard grid fallback */
.grid { display: grid; gap: 1.5rem; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  padding: 2.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}

.feature-card {
  padding: 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.35s ease;
}

.feature-card:hover {
  border-color: rgba(0,255,136,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
}

.feature-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

.feature-meta {
  font-size: 0.75rem;
  color: #555;
  margin-top: 0.5rem;
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: #00ff88;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.pill-dot {
  width: 6px;
  height: 6px;
  background: #00ff88;
}

.list { padding-left: 1.25rem; }
.list li { margin-bottom: 0.3rem; color: #666; font-size: 0.9rem; }
.list-compact li { margin-bottom: 0.2rem; }

/* ─── Form ───────────────────────────────────────────────────────────── */
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .form-grid-2 { grid-template-columns: repeat(2, 1fr); } }

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field-label { font-size: 0.85rem; font-weight: 500; color: #fff; }

.field-input, .field-textarea {
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1rem;
}

.field-textarea { min-height: 120px; resize: vertical; }

.field-input:focus, .field-textarea:focus {
  outline: none;
  border-color: #00ff88;
}

.helper-text { font-size: 0.75rem; color: #555; }

/* ─── Footer ───────────────────────────────────────────────────────────── */
.footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-links { display: flex; gap: 1.5rem; }
.footer-link { color: #666; transition: color 0.2s; }
.footer-link:hover { color: #00ff88; }
.footer-location { color: #555; }

.accent { color: #00ff88; }
.strong { color: #fff; font-weight: 600; }
.muted { color: #888; }

/* ─── Mobile ───────────────────────────────────────────────────────────── */
@media screen and (max-width: 992px) {
  .container { padding: 0 1rem; }
  .nav-inner {
    padding: 0 1rem;
    flex-wrap: nowrap;
    overflow: hidden;
    max-width: 100%;
  }
  .nav-inner .brand {
    min-width: 0;
    flex: 1;
    overflow: hidden;
  }
  .nav { overflow: hidden; }
  body { overflow-x: hidden; }
  .brand-logo { height: 40px; }
  .nav-toggle {
    display: flex !important;
    flex-shrink: 0;
    position: relative;
    z-index: 10001;
  }
  .nav-links {
    display: none !important;
  }
  .nav.nav-open {
    bottom: 0;
    height: 100vh;
    height: 100dvh;
    background: #000;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
  }
  .nav.nav-open .nav-inner {
    overflow: visible;
  }
  .nav.nav-open .nav-links {
    display: flex !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    z-index: 9999;
  }
  .nav-links .nav-link {
    width: 100%;
    max-width: 280px;
    padding: 1.1rem 1.5rem;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 12px;
    color: #fff;
  }
  .nav-links .nav-link:hover,
  .nav-links .nav-link-active {
    color: #00ff88;
    background: rgba(0,255,136,0.1);
  }
  .nav-links .nav-link.nav-cta {
    margin-top: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
  }
  .nav-links .nav-link.nav-cta:hover {
    background: linear-gradient(135deg, #00ff99, #00dd77);
    color: #000;
  }
  .nav-cta-long { display: inline; }
  .nav-cta-short { display: none; }
  .hero {
    padding: 3rem 0 4rem;
  }
  .hero-grid {
    gap: 2.5rem;
    display: flex;
    flex-direction: column;
  }
  .hero-right { order: -1; }
  .hero-title { font-size: clamp(2.25rem, 10vw, 4rem); }
  .hero-text { font-size: 1.05rem; }
  .hero-text-wrap { min-height: 5.5em; }
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-visual { padding: 1.25rem; }
  .section { padding: 2rem 0 4rem; }
  .card { padding: 1.5rem; }
  .feature-card { padding: 1.25rem; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2.25rem); }
  .footer-inner { padding: 0 1rem; flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
}
