/* ==========================================================================
   ANSERIFORM CORPORATE STYLE SHEET
   Signature Palette: Modern Warm Fintech
   ========================================================================== */

:root {
  /* Colors */
  --primary: #e65c24;
  --primary-rgb: 230, 92, 36;
  --accent: #c74a1e;
  --text: #0d1117;
  --text-rgb: 13, 17, 23;
  --muted: #4e5e6a;
  --alt: #f9f7f4;
  --bg: #ffffff;
  --border: #edeae4;
  --card-bg: rgba(255, 255, 255, 0.95);
  
  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-logo: 'Space Grotesk', system-ui, sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(13, 17, 23, 0.04);
  --shadow-md: 0 8px 24px rgba(13, 17, 23, 0.06);
  --shadow-lg: 0 16px 48px rgba(230, 92, 36, 0.1);
  --shadow-card: 0 12px 32px rgba(13, 17, 23, 0.08);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent);
}

img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

/* Layout Utilities */
.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.text-center { text-align: center; }
.section { padding: 5.5rem 0; position: relative; }
.section.alt { background-color: var(--alt); }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.align-center { align-items: center; }

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  z-index: 99999;
  font-weight: 700;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Site Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: padding var(--transition-fast), background var(--transition-fast);
  padding: 1.25rem 0;
}

.site-header.scrolled {
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: -0.5px;
}

.brand-logo, .brand-mark {
  transition: transform var(--transition-normal);
}

.brand:hover .brand-logo, .brand:hover .brand-mark {
  transform: scale(1.03);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-normal);
}

.nav-link.active::after, .nav-link:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(230, 92, 36, 0.25);
}

.btn-primary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 92, 36, 0.35);
}

.btn-secondary {
  background: var(--alt);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-nav {
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  background: var(--primary);
  color: #fff !important;
  font-size: 0.9rem;
}

.btn-nav:hover {
  background: var(--accent);
}

/* Hero Section */
.hero-section {
  padding: 10rem 0 6rem;
  background: radial-gradient(circle at 80% 20%, #fff5ef 0%, #ffffff 70%);
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  padding: 0.35rem 0.85rem;
  background: var(--alt);
  color: var(--primary);
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(230, 92, 36, 0.15);
}

.hero-section h1 {
  font-size: clamp(2.5rem, 4vw + 1rem, 3.75rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.lead {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 50ch;
}

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

/* Floating Card Visuals */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-visual-container {
  width: 100%;
  height: 380px;
  position: relative;
}

.abstract-grid {
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, black 30%, transparent 70%);
  z-index: 1;
}

.floating-card {
  width: 320px;
  height: 200px;
  border-radius: 16px;
  padding: 1.5rem;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  z-index: 2;
}

.primary-floating-card {
  background: linear-gradient(135deg, #2b1a0f 0%, #150c07 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  top: 20px;
  left: 20px;
  animation: float-slow 6s ease-in-out infinite;
}

.secondary-floating-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  bottom: 20px;
  right: 20px;
  animation: float-fast 5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.floating-card:hover {
  transform: scale(1.05) rotate(1deg) !important;
  box-shadow: 0 20px 40px rgba(43, 26, 15, 0.2);
  z-index: 10;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-chip {
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #e5c07b 0%, #abb2bf 100%);
  border-radius: 6px;
  position: relative;
}

.card-number {
  font-family: monospace;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin: 1.5rem 0;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-bottom: 2px;
}

.card-holder {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.card-expiry {
  font-family: monospace;
  font-size: 0.85rem;
}

/* Animations */
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-12px) rotate(-2deg); }
}

@keyframes float-fast {
  0%, 100% { transform: translateY(0) rotate(6deg); }
  50% { transform: translateY(-15px) rotate(8deg); }
}

.animate-on-load {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-on-load.delay-1 {
  animation-delay: 0.2s;
}

@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Entrance transitions on scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Section Headers */
.section-header {
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw + 0.5rem, 2.75rem);
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
}

/* General Card */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(230, 92, 36, 0.3);
}

/* Market Opportunity Section */
.market-value-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-icon-wrapper {
  width: 48px;
  height: 48px;
  background: var(--alt);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.market-value-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.market-value-card p {
  color: var(--muted);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.stat-highlight {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

/* Products Section & Tabs */
.product-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.product-tabs {
  display: inline-flex;
  background: var(--border);
  padding: 0.35rem;
  border-radius: 16px;
  gap: 0.25rem;
}

.product-tab-btn {
  appearance: none;
  background: transparent;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition-fast);
  font-family: var(--font-heading);
}

.product-tab-btn.active {
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

.tab-btn-title {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
}

.tab-btn-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1px;
}

.product-tab-btn.active .tab-btn-title {
  color: var(--primary);
}

/* Product Panels */
.product-panels-container {
  position: relative;
  min-height: 480px;
}

.product-panel {
  display: none;
  animation: fade-in 0.5s ease forwards;
}

.product-panel.active {
  display: block;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.product-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: rgba(230, 92, 36, 0.1);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.product-copy h3 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.product-desc {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.bullet-item {
  display: flex;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--text);
}

.bullet-check {
  color: var(--primary);
  font-weight: 800;
}

/* Product Graphics & Demos */
.product-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* DARE Interactive Rules Demo */
.interactive-rules-demo {
  width: 100%;
  max-width: 380px;
  background: #2b1a0f;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-header {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.25rem;
  opacity: 0.8;
}

.demo-rule-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.demo-rule-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.demo-rule-item.passed {
  border-color: rgba(16, 185, 129, 0.2);
}

.demo-rule-item.failed {
  border-color: rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.02);
}

.rule-status {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.passed .rule-status {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.failed .rule-status {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.demo-result {
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  padding: 0.85rem;
  border-radius: 10px;
  font-size: 0.9rem;
}

.demo-result.blocked {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px dashed rgba(239, 68, 68, 0.3);
}

.status-indicator {
  animation: blink 1.5s infinite;
  display: inline-block;
  margin-right: 4px;
}

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

/* Cards Direct Mockup */
.portal-mockup {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.mockup-header {
  background: var(--alt);
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mockup-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.mockup-user {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
}

.mockup-body {
  padding: 1.25rem;
}

.mockup-nav {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
}

.mockup-nav span {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
}

.mockup-nav span.active {
  color: var(--primary);
  position: relative;
}

.mockup-nav span.active::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

.mockup-content h4 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.mockup-form-group {
  margin-bottom: 1rem;
}

.mockup-form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.mockup-input {
  background: var(--alt);
  border: 1px solid var(--border);
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
}

.mockup-btn {
  width: 100%;
  background: var(--text);
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: not-allowed;
  opacity: 0.9;
  margin-top: 0.5rem;
}

/* About Us & Stats */
.about-section {
  padding-bottom: 3.5rem;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
}

.stat-card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.stat-card .stat-number {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.stat-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Team Styles */
.team-wrapper {
  margin-top: 5.5rem;
  border-top: 1px solid var(--border);
  padding-top: 5.5rem;
}

.team-header {
  margin-bottom: 3.5rem;
}

.team-header h3 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-photo-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 4px solid var(--alt);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.team-card:hover .team-photo-container {
  transform: scale(1.05);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.team-role {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.team-card .btn {
  margin-top: auto;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--alt) 100%);
  padding: 6rem 0;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  background: #2b1a0f;
  color: #fff;
  padding: 4.5rem 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.cta-container::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--primary);
  filter: blur(120px);
  opacity: 0.15;
  top: -150px;
  right: -150px;
}

.cta-container h2 {
  font-size: clamp(2rem, 3.5vw + 0.5rem, 2.75rem);
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.cta-container p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  max-width: 55ch;
  margin: 0 auto 2.5rem;
}

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

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Footer Section */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0.5px;
}

.copyright {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
}

.footer-nav a:hover {
  color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .card-visual-container {
    height: 320px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .floating-card {
    width: 280px;
    height: 175px;
    padding: 1.25rem;
  }
  
  .card-number {
    font-size: 1.1rem;
    margin: 1rem 0;
  }
}

@media (max-width: 900px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .product-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .feature-bullets {
    align-items: flex-start;
    text-align: left;
  }
  
  .product-graphic {
    order: -1;
  }
}

@media (max-width: 600px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-nav {
    justify-content: center;
  }
}

/* === Hamburger Menu Functionality === */
.nav-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: .5rem;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1100;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.nav-toggle-box {
  display: inline-block;
  width: 28px;
  height: 20px;
  position: relative;
}

.nav-toggle-inner,
.nav-toggle-inner::before,
.nav-toggle-inner::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 28px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease, top .2s ease, bottom .2s ease;
}

.nav-toggle-inner {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle-inner::before { top: -8px; }
.nav-toggle-inner::after { bottom: -8px; }

/* When expanded, morph into an X */
.nav-toggle[aria-expanded="true"] .nav-toggle-inner {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-inner::before {
  top: 0;
  transform: rotate(45deg);
  background: #fff;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-inner::after {
  bottom: 0;
  transform: rotate(-45deg);
  background: #fff;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: #2b1a0f;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    z-index: 1050;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  }
  
  .site-nav.is-open {
    transform: translateX(0);
  }
  
  .site-nav .nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    width: 100%;
  }
  
  .site-nav .nav-link:hover, .site-nav .nav-link.active {
    color: #fff;
  }
  
  .site-nav .nav-link::after {
    background-color: #fff;
  }
  
  .site-nav .btn-nav {
    width: 100%;
    margin-top: 1rem;
  }
}
