/* ============================================
   CSS Variables — Dark Vibe v2
   ============================================ */
:root {
  --brand: #F06B22;
  --brand-dark: #D85A15;
  --brand-glow: rgba(240, 107, 34, 0.4);
  --brand-soft: rgba(240, 107, 34, 0.08);
  --brand-softer: rgba(240, 107, 34, 0.04);


  --bg-0: #060609;
  --bg-1: #0B0B10;
  --bg-2: #111117;
  --bg-3: #18181F;
  --bg-4: #1F1F28;

  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  --text-1: #F4F4F5;
  --text-2: #D4D4D8;
  --text-3: #A1A1AA;
  --text-4: #71717A;
  --text-5: #52525B;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --rounded: 0.75rem;
  --rounded-lg: 1rem;
  --rounded-xl: 1.25rem;
  --rounded-full: 9999px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
}

/* ============================================
   Base
   ============================================ */
body {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text-2);
  background: var(--bg-0);
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 6rem 0; }

::selection {
  background: rgba(240, 107, 34, 0.3);
  color: var(--text-1);
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}

/* Gradient text utility */
.gradient-text {
  background: linear-gradient(135deg, var(--brand) 0%, #FF9A56 50%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gradient border card utility */
.glow-card {
  position: relative;
  background: var(--bg-2);
  border-radius: var(--rounded-lg);
  overflow: hidden;
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Section label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brand);
}

/* ============================================
   Navigation
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s var(--ease);
}

.site-header.scrolled {
  background: rgba(6, 6, 9, 0.8);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.125rem 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.01em;
}

.nav-logo img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-4);
  transition: color 0.2s var(--ease);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-1);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
  box-shadow: 0 0 10px var(--brand-glow);
}

.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-1) !important;
  background: var(--brand);
  border-radius: var(--rounded-full);
  transition: all 0.25s var(--ease);
}

.nav-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--brand-glow);
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  width: 28px;
  height: 24px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-3);
  border-radius: 2px;
  position: absolute;
  left: 3px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle span:nth-child(1) { top: 4px; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 18px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-3);
  border-bottom: 1px solid var(--border);
  transition: all 0.2s var(--ease);
}

.mobile-menu a:hover {
  background: var(--bg-3);
  color: var(--text-1);
}

.mobile-menu .nav-cta {
  display: block;
  margin: 1rem 1.5rem;
  text-align: center;
  border-radius: var(--rounded);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
}

/* Animated gradient mesh */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(240, 107, 34, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(168, 85, 247, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 60% 80%, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
  animation: meshShift 20s ease infinite alternate;
}

@keyframes meshShift {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05) translateX(-2%); }
  100% { opacity: 1; transform: scale(1) translateX(2%); }
}

/* Grid lines */
.hero-bg-blob {
  position: absolute;
  inset: 0;
  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: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  pointer-events: none;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('../images/homepage.jpg') center center / cover no-repeat;
  opacity: 0.35;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 960px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem 0.375rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid rgba(240, 107, 34, 0.12);
  border-radius: var(--rounded-full);
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--brand-glow);
  animation: pulse 2.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--text-1);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero h1 strong {
  display: block;
  background: linear-gradient(135deg, var(--brand), #FF9A56, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-3);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--rounded-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.btn-primary {
  color: var(--text-1);
  background: var(--brand);
  border-color: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--brand-glow);
}

.btn-outline {
  color: var(--text-3);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

/* ============================================
   About — Bento Grid
   ============================================ */
.about {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.about-text {
  padding: 2.5rem;
}

.about-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.about-text p {
  color: var(--text-3);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-stats {
  display: grid;
  gap: 1.25rem;
}

.stat-card {
  padding: 2rem;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.stat-card:hover {
  background: var(--bg-3);
}

.stat-card:hover::before {
  background: linear-gradient(135deg, rgba(240, 107, 34, 0.15), rgba(255,255,255,0.06));
}

.stat-card .stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.375rem;
}

.stat-card .stat-value { color: var(--brand); }

.stat-card .stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   Product Status Badges
   ============================================ */
.product-status {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--rounded-full);
  margin-bottom: 0.75rem;
}

.product-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.product-status--live {
  color: #34D399;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.15);
}

.product-status--live::before {
  background: #34D399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
}

.product-status--soon {
  color: var(--text-4);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.product-status--soon::before {
  background: var(--text-5);
}

/* Flagship product cards (larger) */
.products-grid--flagship {
  grid-template-columns: 1fr;
}

.product-card--flagship .product-body {
  padding: 2.5rem;
}

/* Upcoming product cards (muted) */
.products-grid--upcoming {
  grid-template-columns: 1fr;
}

.product-card--upcoming {
  opacity: 0.7;
}

.product-card--upcoming:hover {
  opacity: 1;
}

.product-accent--muted {
  background: linear-gradient(90deg, var(--text-5), transparent) !important;
}

.product-icon--muted {
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--text-4) !important;
}

/* Sub section header */
.section-header--sub {
  margin-top: 3rem;
  margin-bottom: 1.5rem !important;
}

.section-title--sm {
  font-size: 1.25rem !important;
  color: var(--text-3) !important;
}

/* ============================================
   Free Tools Teaser (Homepage)
   ============================================ */
.tools-teaser {
  background: var(--bg-0);
}

.tools-teaser-inner {
  display: grid;
  gap: 2.5rem;
  padding: 3rem;
}

.tools-teaser-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.tools-teaser-content p {
  color: var(--text-4);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tools-teaser-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-content: flex-start;
}

.tools-teaser-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-3);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--rounded-full);
  transition: all 0.2s var(--ease);
  text-decoration: none;
}

.tools-teaser-pill:hover {
  border-color: var(--border-hover);
  color: var(--text-1);
  background: var(--bg-4);
}

/* ============================================
   Page Hero (subpages)
   ============================================ */
.page-hero {
  padding: 10rem 0 4rem;
  position: relative;
  background: var(--bg-0);
}

.page-hero--compact {
  padding: 8rem 0 3rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--text-1);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.page-hero h1 strong {
  display: block;
  background: linear-gradient(135deg, var(--brand), #FF9A56, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-subtitle {
  font-size: 1.0625rem;
  color: var(--text-3);
  line-height: 1.75;
  max-width: 600px;
}

.page-hero-subtitle a {
  color: var(--brand);
  font-weight: 500;
}

.page-hero-subtitle a:hover {
  text-decoration: underline;
}

/* ============================================
   Tools Page
   ============================================ */
.tools-section {
  padding: 4rem 0;
  background: var(--bg-0);
}

.tools-section--alt {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tools-category {
  margin-bottom: 2.5rem;
}

.tools-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.tools-category-desc {
  color: var(--text-4);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.tools-category-cta {
  font-size: 0.8125rem;
  color: var(--text-5);
}

.tools-category-cta a {
  color: var(--brand);
  font-weight: 600;
}

.tools-category-cta a:hover {
  text-decoration: underline;
}

.tools-grid {
  display: grid;
  gap: 1.25rem;
}

.tool-card {
  display: block;
  padding: 2rem;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.tool-card:hover {
  background: var(--bg-3);
  transform: translateY(-2px);
}

.tool-card:hover::before {
  background: linear-gradient(135deg, rgba(240, 107, 34, 0.12), rgba(255,255,255,0.04));
}

.tool-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  background: var(--brand-soft);
  color: var(--brand);
}

.tool-icon svg {
  width: 22px;
  height: 22px;
}

.tool-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.tool-domain {
  font-size: 0.75rem;
  color: var(--text-5);
  margin-bottom: 0.75rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.tool-desc {
  font-size: 0.875rem;
  color: var(--text-4);
  line-height: 1.7;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  padding: 5rem 0;
  background: var(--bg-0);
}

.cta-banner-inner {
  text-align: center;
  padding: 3.5rem 2.5rem;
}

.cta-banner-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.cta-banner-inner p {
  color: var(--text-4);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================
   Legal Content (mentions-legales)
   ============================================ */
.legal-content {
  padding: 3rem 0 6rem;
  background: var(--bg-0);
}

.legal-body {
  max-width: 720px;
}

.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-1);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p {
  color: var(--text-3);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-body a {
  color: var(--brand);
}

.legal-body a:hover {
  text-decoration: underline;
}

.legal-body strong {
  color: var(--text-2);
}

.legal-body em {
  color: var(--text-4);
}

.legal-body ul {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
}

.legal-body li {
  color: var(--text-3);
  line-height: 1.8;
  padding: 0.2rem 0;
  padding-left: 0.5rem;
  position: relative;
  list-style: none;
}

.legal-body li::before {
  content: '';
  position: absolute;
  left: -0.75rem;
  top: 0.85rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.legal-body th,
.legal-body td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

.legal-body th {
  font-weight: 600;
  color: var(--text-2);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-body td {
  color: var(--text-3);
}

/* ============================================
   Products
   ============================================ */
.products {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.products .section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

.products .section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.products .section-subtitle {
  font-size: 1rem;
  color: var(--text-4);
  line-height: 1.7;
}

.products .section-label {
  justify-content: center;
}

.products-grid {
  display: grid;
  gap: 1.25rem;
}

.product-card {
  background: var(--bg-2);
  border-radius: var(--rounded-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease);
  position: relative;
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-card:hover { border-color: rgba(240, 107, 34, 0.3); box-shadow: 0 16px 48px rgba(240, 107, 34, 0.08), inset 0 1px 0 rgba(240, 107, 34, 0.1); }

.product-accent {
  height: 2px;
}

.product-accent { background: linear-gradient(90deg, var(--brand), transparent); }

.product-body {
  padding: 2rem;
}

.product-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.product-icon { background: var(--brand-soft); color: var(--brand); }

.product-icon svg {
  width: 22px;
  height: 22px;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.125rem;
  letter-spacing: -0.01em;
}

.product-domain {
  font-size: 0.8125rem;
  color: var(--text-5);
  margin-bottom: 0.875rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.product-tagline {
  font-size: 0.9375rem;
  color: var(--text-3);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.product-features {
  margin-bottom: 1.75rem;
}

.product-features li {
  font-size: 0.8125rem;
  color: var(--text-4);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.product-features li::before { background: var(--brand); box-shadow: 0 0 8px var(--brand-glow); }

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--rounded-full);
  transition: all 0.25s var(--ease);
}

.product-link { color: var(--brand); background: var(--brand-soft); }
.product-link:hover { background: rgba(240, 107, 34, 0.15); }

.product-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s var(--ease);
}

.product-link:hover svg {
  transform: translateX(3px);
}

/* ============================================
   Contact
   ============================================ */
.contact { background: var(--bg-0); }

.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-info h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.contact-info > p {
  color: var(--text-4);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  border: 1px solid rgba(240, 107, 34, 0.1);
  border-radius: 12px;
  color: var(--brand);
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.25rem;
}

.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.875rem;
  color: var(--text-4);
}

.contact-detail-text a:hover {
  color: var(--brand);
}

/* Contact Form */
.contact-form {
  background: var(--bg-2);
  padding: 2.25rem;
  border-radius: var(--rounded-lg);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-3);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.6875rem 1rem;
  font-size: 0.875rem;
  color: var(--text-2);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--rounded);
  transition: all 0.2s var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-5);
}

.form-group select {
  color: var(--text-5);
}

.form-group select option {
  background: var(--bg-3);
  color: var(--text-2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(240, 107, 34, 0.1);
  background: var(--bg-4);
}

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

.form-submit {
  width: 100%;
  padding: 0.8125rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-1);
  background: var(--brand);
  border: none;
  border-radius: var(--rounded);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.form-submit:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px var(--brand-glow);
}

.form-feedback {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--rounded);
  font-size: 0.875rem;
  display: none;
}
.form-feedback--success,
.form-feedback--error {
  display: block;
}
.form-feedback--success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}
.form-feedback--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--bg-0);
  color: var(--text-5);
  padding: 4rem 1.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand .nav-logo {
  color: var(--text-1);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
  color: var(--text-5);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-5);
  padding: 0.3rem 0;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--text-2);
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-5);
}

/* ============================================
   Scroll Reveal
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }

/* ============================================
   Responsive: >= 640px
   ============================================ */
@media (min-width: 640px) {
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .products-grid--upcoming {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .tools-teaser-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

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

/* ============================================
   Responsive: >= 1024px
   ============================================ */
@media (min-width: 1024px) {
  section { padding: 7rem 0; }

  .nav-toggle { display: none !important; }

  .about-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 1.25rem;
  }

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

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ============================================
   Responsive: < 1024px
   ============================================ */
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .site-header.scrolled,
  .site-header:has(.mobile-menu.open) {
    background: rgba(6, 6, 9, 0.95);
  }

  .hero-bg-image {
    opacity: 0.2;
  }

  .hero-content {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 639px) {
  .hero-bg-image {
    opacity: 0.15;
  }
}

/* ============================================
   Responsive: >= 1280px
   ============================================ */
@media (min-width: 1280px) {
  .tools-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
