/* =============================================
   PromptKaro — style.css
   Layout, components, custom properties
   ============================================= */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  /* Core backgrounds */
  --bg-primary: #0a0a0c;
  --bg-secondary: #111114;
  --bg-tertiary: #1a1a1f;
  --border: #1e1e24;
  --border-hover: #2a2a32;

  /* Brand colors */
  --lime: #c8ff00;
  --lime-dim: rgba(200, 255, 0, 0.12);
  --lime-glow: rgba(200, 255, 0, 0.06);
  --orange: #ff6b35;
  --orange-dim: rgba(255, 107, 53, 0.12);
  --hot-pink: #ff2d87;
  --saffron: #ff9933;

  /* Text */
  --text-primary: #e8e6e1;
  --text-secondary: #9d9a93;
  --text-muted: #5a5752;

  /* Functional */
  --success: #28c840;
  --whatsapp: #25d366;

  /* Typography */
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Satoshi', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-logo: 'Rubik', sans-serif;

  /* Layout */
  --nav-height: 60px;
  --container: 1200px;
  --pad: clamp(16px, 4vw, 24px);
  --section-py: clamp(72px, 10vw, 120px);
  --radius: 14px;
  --radius-lg: 20px;
  --radius-sm: 8px;
}

/* ===== BASE RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img, svg {
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== GRAIN OVERLAY ===== */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ===== LOGO ===== */
.logo {
  font-family: var(--font-logo);
  font-weight: 800;
  font-size: 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo-sm {
  font-size: 1.2rem;
}

.logo-chevron {
  color: var(--lime);
  margin-right: 2px;
  font-weight: 900;
}

.logo-prompt {
  color: #fff;
}

.logo-karo {
  color: var(--lime);
}

.logo-cursor {
  display: inline-block;
  width: 3px;
  height: 1.5rem;
  background: var(--lime);
  margin-left: 3px;
  animation: blink 1.1s step-end infinite;
  vertical-align: middle;
  border-radius: 1px;
}

.logo-cursor-sm {
  height: 1rem;
}

/* ===== NAVIGATION ===== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  /* Full width but content max-width */
}

/* Nav wrapper to handle full-width backdrop */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 999;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease;
  pointer-events: none;
}

body.nav-scrolled::before {
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--text-primary);
  outline: none;
}

/* Language toggle button */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.lang-toggle:hover,
.lang-toggle:focus {
  border-color: var(--lime);
  color: var(--text-primary);
  outline: none;
}

.lt-sep {
  color: var(--border-hover);
  margin: 0 1px;
}

/* Active language highlighting */
.lang-toggle .lt-en {
  color: var(--lime);
}

.lang-toggle .lt-gu {
  color: var(--text-muted);
}

body.lang-gu .lang-toggle .lt-en {
  color: var(--text-muted);
}

body.lang-gu .lang-toggle .lt-gu {
  color: var(--lime);
}

/* Gujarati font for translated elements */
body.lang-gu [data-gu] {
  font-family: 'Noto Sans Gujarati', var(--font-body), sans-serif;
}

/* WhatsApp button (nav) */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--whatsapp);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-wa:hover,
.btn-wa:focus {
  background: #1fb855;
  transform: translateY(-1px);
  outline: 2px solid rgba(37, 211, 102, 0.4);
  outline-offset: 2px;
}

/* ===== SHARED SECTION STYLES ===== */
section {
  padding: var(--section-py) var(--pad);
  max-width: var(--container);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid rgba(200, 255, 0, 0.2);
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-height) + 40px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200, 255, 0, 0.18) 1px, transparent 1px);
  background-size: 36px 36px;
  animation: dotDrift 30s linear infinite;
  opacity: 0.5;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero-glow-lime {
  width: 600px;
  height: 400px;
  top: 10%;
  left: -10%;
  background: radial-gradient(ellipse, rgba(200, 255, 0, 0.12) 0%, transparent 70%);
}

.hero-glow-orange {
  width: 500px;
  height: 350px;
  top: 20%;
  right: -5%;
  background: radial-gradient(ellipse, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.badge-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.hl-line {
  display: block;
}

.hl-static {
  color: var(--text-primary);
}

.hl-ready {
  color: var(--text-secondary);
  font-size: 0.9em;
}

.hl-rotating-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  /* height matches the rotating word's line-height */
}

.hl-rotating {
  display: inline-block;
  color: var(--lime);
  will-change: transform, opacity;
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.hl-rotating.exit {
  transform: translateY(-110%);
  opacity: 0;
}

.hl-rotating.enter {
  transform: translateY(110%);
  opacity: 0;
  transition: none;
}

/* Terminal window */
.terminal-window {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 560px;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.03);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border);
}

.t-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.t-red    { background: #ff5f57; }
.t-yellow { background: #febc2e; }
.t-green  { background: #28c840; }

.t-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-left: 8px;
  flex: 1;
  text-align: center;
}

.terminal-body {
  padding: 16px 20px 20px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.8;
  min-height: 140px;
}

.t-prompt-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}

.t-prompt-char {
  color: var(--lime);
  font-weight: 700;
  font-size: 1rem;
}

.t-command {
  color: var(--text-primary);
}

.t-caret {
  color: var(--lime);
  animation: blink 0.9s step-end infinite;
  font-size: 0.95rem;
}

.t-output {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.t-line {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeSlideUp 0.3s ease forwards;
}

.t-check {
  color: var(--success);
  font-size: 0.9rem;
}

.t-text {
  color: var(--text-secondary);
}

.t-line.final .t-text {
  color: var(--lime);
  font-weight: 500;
}

/* Pixel canvas */
.t-pixel-canvas {
  display: grid;
  gap: 2px;
  margin-top: 10px;
  min-height: 0;
}

.t-cell {
  aspect-ratio: 1.8;
  border-radius: 2px;
  opacity: 0;
}

.tc-0 { background: transparent; }
.tc-1 { background: var(--lime); }
.tc-2 { background: rgba(232, 230, 225, 0.45); }
.tc-3 { background: var(--orange); }
.tc-4 { background: var(--bg-tertiary); border: 1px solid var(--border); }
.tc-5 { background: var(--border-hover); }

.t-ready-msg {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--lime);
  margin-top: 8px;
  opacity: 0;
  letter-spacing: 0.02em;
}

/* CTA */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--lime);
  color: #0a0a0c;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 100px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  letter-spacing: -0.01em;
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 255, 0, 0.35);
  outline: 2px solid rgba(200, 255, 0, 0.5);
  outline-offset: 3px;
}

.cta-sub {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 1;
}

.scroll-arrow {
  font-size: 1rem;
}

/* ===== BENTO GRID (DEMO WALL) ===== */
#demos {
  /* Full bleed dark strip */
  background: var(--bg-secondary);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

#demos .section-header {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--pad);
}

.bento-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
}

/* Card base */
.bento-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--lime-glow);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.bento-card:hover {
  border-color: var(--lime);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(200, 255, 0, 0.15);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-large {
  grid-column: span 2;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.bento-medium {
  grid-column: span 1;
}

.bento-small {
  grid-column: span 1;
}

.bento-more {
  background: var(--bg-primary);
}

/* Card icon */
.bcard-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--lime-dim);
  border: 1px solid rgba(200, 255, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  flex-shrink: 0;
  margin-bottom: 16px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.bento-card:hover .bcard-icon {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(200, 255, 0, 0.2);
}

.bcard-icon-lime {
  background: var(--lime);
  color: var(--bg-primary);
  border-color: var(--lime);
}

.bento-card:hover .bcard-icon-lime {
  background: var(--lime);
}

.bcard-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.bcard-body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.bcard-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.bcard-link:hover {
  color: var(--lime);
}

.bcard-link-active {
  color: var(--lime);
}

.badge-soon {
  font-size: 0.65rem;
  background: rgba(90, 87, 82, 0.3);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* Bento large card: mockup preview */
.bcard-mockup {
  flex-shrink: 0;
  width: 200px;
}

.mock-browser {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.mock-bar {
  background: var(--bg-secondary);
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
}

.mock-dots {
  display: flex;
  gap: 4px;
}

.mock-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-hover);
}

.mock-dots span:nth-child(1) { background: #ff5f5780; }
.mock-dots span:nth-child(2) { background: #febc2e80; }
.mock-dots span:nth-child(3) { background: #28c84080; }

.mock-body {
  padding: 10px;
}

.mock-hero-strip {
  height: 40px;
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.1), rgba(255, 107, 53, 0.08));
  border-radius: 4px;
  margin-bottom: 8px;
}

.mock-cards-row {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.mock-card-sm {
  flex: 1;
  height: 28px;
  background: var(--border);
  border-radius: 3px;
}

.mock-text-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-line {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
}

.w80 { width: 80%; }
.w60 { width: 60%; }
.w70 { width: 70%; }

/* ===== PROCESS SECTION ===== */
#process {
  background: var(--bg-primary);
}

.process-wrap {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}

.process-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.25s ease;
}

.process-card:hover {
  border-color: rgba(200, 255, 0, 0.3);
}

.process-icon {
  width: 44px;
  height: 44px;
  background: var(--lime-dim);
  border: 1px solid rgba(200, 255, 0, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  margin-bottom: 16px;
}

.process-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--lime);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  opacity: 0.8;
}

.process-cmd {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.process-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Connector between process steps */
.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2px;
  position: relative;
}

.process-connector::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  border-top: 2px dashed var(--border-hover);
  background: transparent;
}

/* Trust badge */
.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 14px 28px;
  border-radius: 100px;
  max-width: fit-content;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

/* ===== PRICING ===== */
#pricing {
  background: var(--bg-secondary);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

#pricing .section-header {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--pad);
}

.pricing-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pricing-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-2px);
}

.pricing-popular {
  border-color: var(--lime);
  background: var(--bg-primary);
  transform: scale(1.03);
}

.pricing-popular:hover {
  transform: scale(1.03) translateY(-2px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--bg-primary);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.ptier {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ptier-emoji {
  font-size: 1.1rem;
}

.ptier-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.pprice {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pcurr {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.pamount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pperiod {
  font-size: 1rem;
  color: var(--text-muted);
}

.pfeatures {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pfeatures li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.pfeatures li svg {
  color: var(--lime);
  flex-shrink: 0;
}

.pbtn {
  display: block;
  text-align: center;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.pbtn:hover,
.pbtn:focus {
  border-color: var(--lime);
  color: var(--lime);
  background: var(--lime-dim);
  outline: none;
}

.pbtn-primary {
  background: var(--lime);
  color: var(--bg-primary);
  border-color: var(--lime);
}

.pbtn-primary:hover,
.pbtn-primary:focus {
  background: #d4ff26;
  color: var(--bg-primary);
  border-color: #d4ff26;
}

.pricing-footer-note {
  max-width: var(--container);
  margin: 32px auto 0;
  padding: 0 var(--pad);
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-footer-note a {
  color: var(--lime);
  transition: opacity 0.2s;
}

.pricing-footer-note a:hover {
  opacity: 0.8;
}

/* ===== ABOUT / TRUST ===== */
#about {
  background: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-left .section-tag {
  margin-bottom: 20px;
}

.about-left .section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.about-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.stats-row {
  display: flex;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* What We Build card */
.what-we-build-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.wwb-head {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}

.wwb-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.wwb-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.wwb-check {
  color: var(--lime);
  font-size: 0.85rem;
  flex-shrink: 0;
  font-weight: 700;
}

/* Location card (kept for potential reuse) */
.location-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.lcard-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lcard-head svg {
  color: var(--lime);
}

.location-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.lpill {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-secondary);
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 100px;
}

.lpill-active {
  background: var(--lime-dim);
  border-color: rgba(200, 255, 0, 0.3);
  color: var(--lime);
}

.testimonial-placeholder {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.testimonial-placeholder svg {
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 2px;
}

.tph-main {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.tph-sub {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
#footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  max-width: 100%;
  padding: 60px var(--pad) 40px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--text-primary);
  outline: none;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-fine {
  font-family: var(--font-mono);
  font-size: 0.68rem !important;
  color: var(--border-hover) !important;
  letter-spacing: 0.04em;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--lime);
}

/* ===== FLOATING WHATSAPP (desktop) ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: waPulse 2.5s ease-in-out 1s 3;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover,
.wa-float:focus {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  outline: none;
}

/* Mobile WhatsApp bar (hidden on desktop) */
.wa-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: var(--whatsapp);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(37, 211, 102, 0.3);
}

/* ===== SCROLL REVEAL BASE ===== */
.reveal-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FOCUS STYLES ===== */
:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== CUSTOM CURSOR (desktop) ===== */
@media (pointer: fine) {
  a, button, [role="button"] {
    cursor: none;
  }
}

/* Custom cursor dot handled in JS/CSS — simple approach */
body {
  cursor: default;
}
