/* ====================================
   attasec - Modern SaaS Landing Page
   ==================================== */

:root {
  /* Colors */
  --primary: #1f5a6a;
  --primary-light: #2a7a8f;
  --primary-dark: #133644;
  --accent: #3d9eb0;
  
  --black: #0a0a0a;
  --gray-900: #171717;
  --gray-700: #404040;
  --gray-600: #525252;
  --gray-500: #737373;
  --gray-400: #a3a3a3;
  --gray-300: #d4d4d4;
  --gray-200: #e5e5e5;
  --gray-100: #f5f5f5;
  --white: #FFFFFF;
  
  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-header: 'Victor Mono', monospace;
  
  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;
  
  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-header);
  font-weight: 200;
}

/* ====================================
   Navigation
   ==================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.nav.scrolled {
  padding: 12px 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--black);
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--gray-900);
  transform: translateY(-1px);
}

.nav-github {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  text-decoration: none;
  transition: all 0.2s ease;
  opacity: 0.7;
}

.nav-github:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: var(--space-md);
  flex-direction: column;
  gap: var(--space-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mobile-nav-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  padding: 8px 0;
  display: block;
}

.mobile-nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 14px 20px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius-sm);
}

/* ====================================
   Hero Section
   ==================================== */
.hero {
  min-height: 100vh;
  padding: 160px 24px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/bckg2.jpg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 700px;
  height: auto;
  padding: 60px 40px 80px;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 40px;
  pointer-events: none;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: var(--space-md);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.hero-audience {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.hero h1 .gradient {
  color: var(--primary);
}

.hero-text-box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 20px 24px;
  margin: var(--space-md) auto;
  max-width: 500px;
}

.hero-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: var(--space-sm);
}

.hero-text-box .hero-launch {
  margin-top: var(--space-sm);
  margin-bottom: 0;
}

.hero-io {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.hero-io p {
  margin-bottom: 4px;
}

.hero-io strong {
  color: var(--gray-700);
  font-weight: 600;
}

.hero-diff {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: var(--space-md);
  letter-spacing: 0.01em;
}

.hero-launch {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: var(--space-sm);
}

/* Waitlist Form */
.waitlist-form {
  max-width: 400px;
  margin: 0 auto;
}

.waitlist-form form {
  display: flex;
  gap: 12px;
}

.waitlist-form input {
  flex: 1;
  padding: 14px 18px;
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.waitlist-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 90, 106, 0.1);
}

.waitlist-form input::placeholder {
  color: var(--gray-400);
}

.waitlist-form button {
  padding: 14px 24px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.waitlist-form button:hover {
  background: var(--gray-900);
  transform: translateY(-1px);
}

.waitlist-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: var(--space-sm);
  padding: 12px 16px;
  font-size: 14px;
  text-align: center;
  border-radius: var(--radius-sm);
}

.privacy-notice {
  margin-top: var(--space-xs);
  font-size: 10px;
  color: var(--gray-400);
  text-align: center;
}

.privacy-notice a {
  color: var(--gray-400);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.privacy-notice a:hover {
  color: var(--primary);
}

.hero-github {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-md);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: all 0.2s ease;
}

.hero-github:hover {
  color: var(--black);
  border-color: var(--gray-400);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-github svg {
  flex-shrink: 0;
}

.form-message.success {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.form-message.hidden {
  display: none;
}

/* ====================================
   Stats Section
   ==================================== */
.stats-v2 {
  padding: var(--space-lg) 24px;
  background: var(--black);
}

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.stats-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.stat-card {
  text-align: center;
  padding: var(--space-sm);
}

.stat-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto var(--space-xs);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.stat-card h3 {
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.stat-card p {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.4;
}

/* ====================================
   Screenshot Section
   ==================================== */
.screenshot-section {
  padding: var(--space-2xl) 24px;
  background: var(--white);
}

.screenshot-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.screenshot-grid.reverse {
  direction: rtl;
}

.screenshot-grid.reverse > * {
  direction: ltr;
}

.screenshot-content {
  max-width: 480px;
}

.screenshot-content .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.screenshot-content h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.screenshot-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.highlight-text {
  background: linear-gradient(120deg, rgba(31, 90, 106, 0.15) 0%, rgba(31, 90, 106, 0.25) 100%);
  background-size: 100% 40%;
  background-repeat: no-repeat;
  background-position: 0 90%;
  padding: 0 4px;
  font-weight: 500;
  color: var(--black);
}

.highlight-text-dark {
  background: linear-gradient(120deg, rgba(31, 90, 106, 0.6) 0%, rgba(31, 90, 106, 0.8) 100%);
  background-size: 100% 40%;
  background-repeat: no-repeat;
  background-position: 0 90%;
  padding: 0 4px;
  font-weight: 500;
  color: var(--white);
}

.screenshot-content ul {
  list-style: none;
}

.screenshot-content li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.screenshot-content li svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.screenshot-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--gray-200);
}

.screenshot-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ====================================
   Animated Product Mockups
   ==================================== */
.demo-mockup {
  width: 100%;
  max-width: 500px;
}

.mockup-window {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.mockup-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.mockup-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

.mockup-body {
  padding: 20px;
  min-height: 280px;
}

/* Threat Dashboard Mockup */
.threat-chart {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.pie-chart {
  width: 80px;
  height: 80px;
  transform: rotate(-90deg);
}

.pie-chart circle {
  fill: none;
  stroke-width: 20;
  cx: 50;
  cy: 50;
  r: 40;
}

.pie-bg { stroke: var(--gray-200); }

.pie-critical {
  stroke: #ef4444;
  animation: pieGrow 1s ease-out forwards;
  stroke-dasharray: 0 251;
}

.pie-high {
  stroke: #f59e0b;
  animation: pieGrow 1s ease-out 0.2s forwards;
  stroke-dasharray: 0 251;
}

.pie-medium {
  stroke: #eab308;
  animation: pieGrow 1s ease-out 0.4s forwards;
  stroke-dasharray: 0 251;
}

@keyframes pieGrow {
  to { stroke-dasharray: var(--target, 50) 251; }
}

.pie-critical { --target: 25; }
.pie-high { --target: 100; }
.pie-medium { --target: 126; }

.chart-legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--gray-600);
}

.legend-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.critical { background: #ef4444; }
.dot.high { background: var(--primary); }
.dot.medium { background: var(--accent); }

/* Threat Cards */
.threat-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.threat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: translateX(-10px);
  animation: slideIn 0.4s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.threat-badge {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 4px;
  color: white;
}

.threat-badge.critical { background: var(--primary-dark); }
.threat-badge.high { background: var(--primary); }
.threat-badge.medium { background: var(--accent); }

.threat-name {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
}

.threat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--gray-500);
}

.threat-status .status-dot {
  width: 6px;
  height: 6px;
  background: #f59e0b;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.threat-status.resolved {
  color: #10b981;
}

.threat-status.resolved svg {
  width: 14px;
  height: 14px;
}

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

/* Architecture Diagram Mockup */
.arch-body {
  padding: 16px;
  min-height: 220px;
}

.arch-diagram {
  position: relative;
  width: 100%;
  height: 180px;
}

.arch-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.conn-line {
  stroke: var(--gray-300);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 1s ease-out forwards;
}

.conn-line:nth-child(2) { animation-delay: 0.1s; }
.conn-line:nth-child(3) { animation-delay: 0.2s; }
.conn-line:nth-child(4) { animation-delay: 0.3s; }
.conn-line:nth-child(5) { animation-delay: 0.4s; }

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

.flow-dot {
  fill: var(--primary);
  opacity: 0.8;
}

.arch-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: scale(0.8);
  animation: nodeAppear 0.4s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes nodeAppear {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.node-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.node-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gray-600);
}

.arch-node span {
  font-size: 10px;
  font-weight: 500;
  color: var(--gray-600);
}

.arch-node.user { left: 15%; top: 8%; }
.arch-node.api { right: 15%; top: 8%; }
.arch-node.service { left: 50%; top: 35%; transform: translateX(-50%); }
.arch-node.service { animation-name: nodeAppearCenter; }
.arch-node.db { left: 15%; top: 72%; }
.arch-node.external { right: 15%; top: 72%; }

@keyframes nodeAppearCenter {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

.arch-node.service {
  transform: translateX(-50%) scale(0.8);
}

.threat-indicator {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: #ef4444;
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 1.5s infinite;
}

/* ====================================
   Detailed Threat Dashboard Mockup
   ==================================== */
.threats-body {
  padding: 16px;
}

.mockup-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  opacity: 0;
  animation: slideIn 0.4s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

.toolbar-text {
  font-size: 11px;
  color: var(--gray-500);
}

.toolbar-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.toolbar-btn svg {
  width: 12px;
  height: 12px;
}

.toolbar-btn.ai-btn {
  background: var(--primary);
  color: white;
}

.threat-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.threat-card-detailed {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px;
  opacity: 0;
  transform: translateY(10px);
  animation: slideUp 0.4s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tcd-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.tcd-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
}

.tcd-desc {
  font-size: 10px;
  color: var(--gray-500);
  line-height: 1.4;
  margin-bottom: 10px;
}

.tcd-mitigations {
  padding-top: 8px;
  border-top: 1px solid var(--gray-200);
}

.mitigation-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray-400);
  display: block;
  margin-bottom: 6px;
}

.mitigation-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--gray-600);
}

.ai-tag {
  font-size: 8px;
  font-weight: 600;
  padding: 2px 4px;
  background: rgba(31, 90, 106, 0.1);
  color: var(--primary);
  border-radius: 3px;
}

/* ====================================
   Detailed Architecture Mockup
   ==================================== */
.actors-section {
  margin-bottom: 16px;
  opacity: 0;
  animation: slideIn 0.4s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

.actors-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.actors-header span:first-child {
  font-size: 11px;
  font-weight: 600;
  color: var(--black);
}

.actors-count {
  font-size: 9px;
  color: var(--gray-400);
}

.actors-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.actor-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  background: var(--gray-100);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 500;
  color: var(--gray-600);
  opacity: 0;
  transform: scale(0.9);
  animation: chipAppear 0.3s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

.actor-chip svg {
  width: 12px;
  height: 12px;
  color: var(--primary);
}

@keyframes chipAppear {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Architecture Diagram - Flexbox Grid */
.arch-body-v2 {
  padding: 16px;
}

.arch-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.arch-arrow {
  font-size: 16px;
  color: var(--gray-400);
  font-weight: 300;
}

.arch-branch-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.arch-node-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: scale(0.8);
  animation: nodeAppear 0.4s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

.node-box {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.2s ease;
}

.node-box svg {
  width: 22px;
  height: 22px;
  color: var(--gray-600);
}

.node-box.has-threat {
  border-color: var(--primary);
}

.node-box.has-threat svg {
  color: var(--primary);
}

.node-threat {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 16px;
  height: 16px;
  background: #ef4444;
  color: white;
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 1.5s infinite;
}

.arch-node-v2 > span {
  font-size: 10px;
  font-weight: 500;
  color: var(--gray-600);
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 900px) {
  .demo-mockup {
    max-width: 100%;
  }
  
  .mockup-body {
    min-height: 240px;
  }
  
  .arch-body {
    min-height: 200px;
  }
  
  .actors-row {
    flex-wrap: wrap;
  }
  
  .arch-component {
    min-width: 70px;
    padding: 6px;
  }
  
  .comp-header {
    font-size: 8px;
  }
}

@media (max-width: 480px) {
  .demo-mockup {
    transform: scale(0.85);
    transform-origin: top center;
    margin-bottom: -40px;
  }
  
  .arch-horizontal {
    gap: 4px;
  }
  
  .arch-node-v2 {
    transform: scale(0.8);
  }
  
  .arch-node-v2 > span {
    font-size: 8px;
  }
  
  .node-box {
    width: 36px;
    height: 36px;
  }
  
  .node-box svg {
    width: 18px;
    height: 18px;
  }
  
  .arch-arrow {
    font-size: 10px;
    margin: 0 2px;
  }
  
  .actors-row {
    gap: 4px;
  }
  
  .actor-chip {
    padding: 4px 8px;
    font-size: 9px;
  }
  
  .actor-chip svg {
    width: 10px;
    height: 10px;
  }
}

/* ====================================
   Features Section
   ==================================== */
.features {
  padding: var(--space-2xl) 24px;
  background: var(--gray-100);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Features V3 - Awwwards Style */
.features-v3 {
  padding: var(--space-2xl) 24px;
  background: var(--gray-100);
}

.features-v3-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features-v3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 20px;
}

.feat-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), 
              box-shadow 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
}

.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 90, 106, 0.05) 0%, rgba(31, 90, 106, 0) 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

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

/* Large card - spans 2 rows */
.feat-large {
  grid-row: span 2;
}

/* Wide card - spans 2 columns */
.feat-wide {
  grid-column: span 2;
}

.feat-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.feat-icon-box {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}

.feat-icon-box svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.feat-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.feat-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  position: relative;
  z-index: 1;
  flex: 1;
}


@media (max-width: 900px) {
  .features-v3-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feat-large {
    grid-row: span 1;
  }
  
  .feat-wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .features-v3-grid {
    grid-template-columns: 1fr;
  }
  
  .feat-large,
  .feat-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .feat-card {
    padding: 24px;
  }
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.section-header .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.section-header p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--gray-300);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600);
}

/* ====================================
   How It Works Section
   ==================================== */
.how-it-works {
  padding: var(--space-2xl) 24px;
  background: var(--white);
}

.how-it-works-inner {
  max-width: 800px;
  margin: 0 auto;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.step-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Highlight Box */
.highlight-box {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-xl);
}

.highlight-box p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

.highlight-box strong {
  color: var(--black);
  font-weight: 600;
}

.highlight-box .emphasis {
  font-weight: 700;
  color: var(--primary);
}

/* ====================================
   How It Works V2 - Two Column
   ==================================== */
.how-it-works-v2 {
  padding: var(--space-2xl) 24px;
  background: url('images/winter.jpg') center center / cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-it-works-v2-inner {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 40px;
  padding: 60px 50px;
  position: relative;
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: stretch;
  margin-top: var(--space-xl);
}

.steps-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Timeline in the middle */
.timeline-center {
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--gray-300), var(--primary));
  position: relative;
}

.timeline-center::before,
.timeline-center::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
}

.timeline-center::before { top: 0; }
.timeline-center::after { bottom: 0; }

.step-row {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100px;
  flex-shrink: 0;
}

.steps-left {
  text-align: right;
}

.steps-left .step-row {
  flex-direction: row-reverse;
}

.timeline-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.step-text {
  flex: 1;
  max-width: 220px;
}

.steps-left .step-text {
  text-align: right;
  margin-left: auto;
}

.timeline-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}

.step-text h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.step-text p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Mockups Column */
.mockups-column {
  display: flex;
  padding-left: 40px;
}

.mockups-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 180px;
}

.mockups-stack .mockup-mini {
  height: 100px;
  flex-shrink: 0;
}

/* Mini Mockups */
.mockup-mini {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.mini-header {
  height: 6px;
  background: var(--gray-100);
  border-radius: 4px;
  margin-bottom: 8px;
}

/* Upload Mockup */
.mini-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px;
  border: 2px dashed var(--gray-300);
  border-radius: 6px;
  margin-bottom: 8px;
}

.mini-upload svg {
  width: 16px;
  height: 16px;
  color: var(--gray-400);
  margin-bottom: 2px;
}

.mini-upload span {
  font-size: 10px;
  color: var(--gray-500);
}

.mini-boxes {
  display: flex;
  gap: 8px;
}

.mini-box {
  flex: 1;
  height: 18px;
  background: var(--primary);
  border-radius: 4px;
  opacity: 0;
  animation: boxAppear 0.5s ease-out forwards;
}

.box-animate-1 { animation-delay: 0.2s; }
.box-animate-2 { animation-delay: 0.4s; }
.box-animate-3 { animation-delay: 0.6s; }

@keyframes boxAppear {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 0.7; transform: scale(1); }
}

/* Threats Mockup */
.mini-scan {
  height: 40px;
  background: var(--gray-50);
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  animation: scanMove 2s ease-in-out infinite;
}

@keyframes scanMove {
  0%, 100% { top: 0; }
  50% { top: 100%; }
}

.mini-threat-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mini-threat {
  height: 20px;
  background: var(--gray-100);
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding-left: 8px;
  opacity: 0;
  animation: threatSlide 0.4s ease-out forwards;
}

.threat-animate-1 { animation-delay: 0.3s; }
.threat-animate-2 { animation-delay: 0.5s; }
.threat-animate-3 { animation-delay: 0.7s; }

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

.dot-red, .dot-orange, .dot-yellow {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-orange { background: #f59e0b; }
.dot-yellow { background: #eab308; }

/* Mitigate Mockup */
.mini-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: checkAppear 0.4s ease-out forwards;
}

.check-animate-1 { animation-delay: 0.2s; }
.check-animate-2 { animation-delay: 0.4s; }
.check-animate-3 { animation-delay: 0.6s; }

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

.check-box {
  width: 14px;
  height: 14px;
  border: 2px solid var(--gray-300);
  border-radius: 3px;
}

.check-box.checked {
  background: var(--primary);
  border-color: var(--primary);
}

.check-line {
  height: 8px;
  flex: 1;
  background: var(--gray-200);
  border-radius: 4px;
}

.check-line.short {
  width: 60%;
  flex: none;
}

/* Export Mockup */
.mini-doc {
  position: relative;
}

.doc-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.doc-line {
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
}

.doc-line.short {
  width: 70%;
}

.doc-export {
  display: flex;
  justify-content: center;
  animation: bounce 1s ease-in-out infinite;
}

.doc-export svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

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

@media (max-width: 768px) {
  .how-it-works-v2-inner {
    padding: 40px 24px;
    border-radius: 24px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .timeline-center {
    display: none;
  }
  
  .steps-left {
    text-align: left;
  }
  
  .steps-left .step-row {
    flex-direction: row;
  }
  
  .steps-left .step-text {
    text-align: left;
  }
  
  .mockups-column {
    display: none;
  }
  
  .step-row {
    height: auto;
    min-height: 80px;
  }
}

/* ====================================
   Statement Section
   ==================================== */
.statement {
  padding: var(--space-xl) 24px;
  background: var(--black);
  text-align: center;
}

.statement-content {
  max-width: 700px;
  margin: 0 auto;
}

.statement h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.statement p {
  font-size: 17px;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ====================================
   Use Cases Section - Accordion Style
   ==================================== */
.use-cases {
  padding: var(--space-2xl) 24px;
  background: var(--white);
}

.use-cases-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cases-list {
  display: flex;
  flex-direction: column;
}

.case-item {
  border: 1px solid var(--gray-200);
  margin-bottom: -1px;
}

.case-item:first-child {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.case-item:last-child {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.case-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-md);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: left;
}

.case-header:hover {
  background: var(--gray-100);
}

.case-title {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.case-num {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

.case-title h3 {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.case-icon {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.case-item.open .case-icon {
  transform: rotate(45deg);
}

.case-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.case-item.open .case-body {
  max-height: 400px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
}

.case-col h4 {
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.case-col p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .case-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  .case-item.open .case-body {
    max-height: 600px;
  }
}

/* ====================================
   Works With Section
   ==================================== */
.works-with {
  padding: var(--space-xl) 24px;
  background: var(--gray-100);
}

.works-with-inner {
  max-width: 700px;
  margin: 0 auto;
}

.works-with-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.works-with-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
              box-shadow 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.works-with-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.works-with-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--black);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.works-with-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.tmdd-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 90, 106, 0.3);
  transition: border-color 0.2s ease;
}

.tmdd-link:hover {
  border-color: var(--primary);
}

.works-with-card h3 {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.works-with-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.works-with-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.works-with-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
}

@media (max-width: 600px) {
  .works-with-grid {
    grid-template-columns: 1fr;
  }
  
  .works-with-card {
    padding: 24px 20px;
  }
}

/* ====================================
   CTA Section
   ==================================== */
.cta-section {
  padding: var(--space-2xl) 24px;
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.cta-inner p {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
}

.cta-form {
  max-width: 400px;
  margin: 0 auto;
}

.cta-form .privacy-notice {
  font-size: 10px;
  margin-bottom: 0;
}

.cta-form form {
  display: flex;
  gap: 12px;
}

.cta-form input {
  flex: 1;
  padding: 14px 18px;
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.cta-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 90, 106, 0.1);
}

.cta-form button {
  padding: 14px 24px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cta-form button:hover {
  background: var(--gray-900);
  transform: translateY(-1px);
}

/* ====================================
   Footer
   ==================================== */
.footer {
  padding: var(--space-lg) 24px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}

.footer-tagline {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 4px;
}

.footer-right {
  text-align: right;
}

.footer-link {
  font-size: 13px;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-copy {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ====================================
   Responsive
   ==================================== */
@media (max-width: 900px) {
  .screenshot-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .screenshot-grid.reverse {
    direction: ltr;
  }
  
  .screenshot-image {
    order: -1;
  }
  
  .screenshot-content {
    max-width: 100%;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid-v2 {
    gap: var(--space-sm);
  }
  
  .stat-card {
    padding: var(--space-xs);
  }
  
  .stat-icon {
    width: 32px;
    height: 32px;
  }
  
  .stat-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .stat-card h3 {
    font-size: 20px;
  }
  
  .stat-card p {
    font-size: 10px;
  }
  
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .nav-cta {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-inner {
    position: relative;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .waitlist-form form,
  .cta-form form {
    flex-direction: column;
  }
  
  .waitlist-form button,
  .cta-form button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  :root {
    --space-lg: 40px;
    --space-xl: 64px;
    --space-2xl: 80px;
  }
  
  .hero {
    padding-top: 120px;
    min-height: auto;
    padding-bottom: var(--space-xl);
  }
  
  .hero {
    padding: 100px 24px 60px;
    align-items: center;
  }
  
  .hero::before {
    display: none;
  }
  
  .hero-inner {
    max-width: 340px;
    padding-top: 0;
  }
  
  .hero-text-box {
    padding: 16px 20px;
    border-radius: 14px;
  }
  
  .hero h1 {
    font-size: 28px;
    line-height: 1.2;
  }
  
  .hero-sub {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .hero-badge {
    font-size: 10px;
    padding: 5px 10px;
  }
  
  .hero-launch {
    font-size: 12px;
  }
  
  .waitlist-form {
    max-width: 280px;
    margin: 0 auto;
  }
  
  .waitlist-form input {
    font-size: 14px;
    padding: 12px 16px;
  }
  
  .waitlist-form button {
    font-size: 14px;
    padding: 12px 20px;
  }
  
  .waitlist-form input {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .waitlist-form button {
    padding: 10px 16px;
    font-size: 13px;
  }
  
  .step-item {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .footer-inner {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}
