/* ===================================
   BRAGBOOQ LANDING PAGE STYLES
   Fun, Warm, Inviting Design
   =================================== */

/* CSS Variables */
:root {
  /* Primary Colors - Warm & Bright */
  --yellow: #FFD93D;
  --yellow-light: #FFF3B0;
  --orange: #FF8C42;
  --coral: #FF6B6B;
  --coral-light: #FFE5E5;
  --sky-blue: #4ECDC4;
  --sky-blue-light: #B8F0EC;
  --purple: #9B5DE5;
  --purple-light: #E8D5F9;

  /* Neutrals */
  --white: #FFFFFF;
  --cream: #FFF9F0;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #FFF9F0 0%, #FFE5E5 50%, #E8D5F9 100%);
  --gradient-warm: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  --gradient-coral: linear-gradient(135deg, var(--coral) 0%, var(--orange) 100%);
  --gradient-cool: linear-gradient(135deg, var(--sky-blue) 0%, var(--purple) 100%);
  --gradient-card: linear-gradient(145deg, var(--white) 0%, var(--cream) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 40px rgba(255, 217, 61, 0.3);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --container-width: 1200px;
  --section-padding: 120px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===================================
   BASE STYLES
   =================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

/* ===================================
   SPARKLES BACKGROUND
   =================================== */

.sparkles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0;
  animation: sparkle 3s infinite;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1) rotate(180deg);
  }
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-base);
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
}

.logo-icon {
  font-size: 28px;
  animation: bounce 2s infinite;
}

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

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  color: var(--gray-600);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-warm);
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.nav-links a:hover {
  color: var(--gray-900);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  background: var(--gray-900);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.nav-cta:hover {
  background: var(--gray-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gray-900);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-arrow {
  transition: var(--transition-base);
}

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

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 0;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 200px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease forwards;
}

.badge-sparkle {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.highlight {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-cta {
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero-note {
  margin-top: 12px;
  font-size: 14px;
  color: var(--gray-500);
}

.trust-logos {
  margin-top: 48px;
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

.trust-text {
  font-size: 13px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 16px;
}

.logos {
  display: flex;
  gap: 32px;
}

.logo-placeholder {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-400);
  padding: 8px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
}

/* Hero Visual - Floating Cards */
.hero-visual {
  position: relative;
  height: 600px;
  animation: fadeIn 0.8s ease 0.3s forwards;
  opacity: 0;
}

.floating-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.brag-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 16px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
  cursor: default;
  max-width: 340px;
}

.brag-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.card-1 {
  top: 5%;
  right: 10%;
  animation: float1 6s ease-in-out infinite;
}

.card-2 {
  top: 30%;
  left: 0;
  animation: float2 7s ease-in-out infinite;
}

.card-3 {
  bottom: 25%;
  right: 5%;
  animation: float3 5s ease-in-out infinite;
}

.card-4 {
  bottom: 5%;
  left: 10%;
  animation: float4 8s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-20px) rotate(0deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-25px) rotate(-1deg); }
}

@keyframes float4 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(0deg); }
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.card-icon.github {
  background: var(--gray-900);
  color: var(--white);
}

.card-icon.jira {
  background: #0052CC;
  color: var(--white);
}

.card-icon.slack {
  background: linear-gradient(135deg, #E01E5A 0%, #ECB22E 25%, #2EB67D 50%, #36C5F0 75%);
  color: var(--white);
}

.card-icon.ai {
  background: var(--gradient-warm);
  font-size: 24px;
}

.card-content {
  flex: 1;
  min-width: 0;
}

.card-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  margin: 6px 0;
  line-height: 1.4;
}

.card-meta {
  font-size: 12px;
  color: var(--gray-400);
}

/* Floating Icons */
.floating-icon {
  position: absolute;
  font-size: 32px;
  animation: floatIcon 4s ease-in-out infinite;
}

.icon-1 { top: 15%; left: 20%; animation-delay: 0s; }
.icon-2 { top: 50%; right: 0; animation-delay: 1s; }
.icon-3 { bottom: 40%; left: 5%; animation-delay: 2s; }
.icon-4 { bottom: 15%; right: 25%; animation-delay: 0.5s; }

@keyframes floatIcon {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.1); }
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: auto;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ===================================
   HOW IT WORKS SECTION
   =================================== */

.how-it-works {
  padding: var(--section-padding) 0;
  background: var(--cream);
}

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

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--white);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.8);
}

.highlight-light {
  color: var(--yellow);
}

/* Steps */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition-base);
  opacity: 0;
  transform: translateY(30px);
}

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

.step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gradient-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.step-icon {
  margin-bottom: 24px;
}

.icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon-wrapper .connect-icon,
.icon-wrapper .magic-icon,
.icon-wrapper .shine-icon {
  font-size: 48px;
  transition: var(--transition-base);
}

.step:hover .connect-icon,
.step:hover .magic-icon,
.step:hover .shine-icon {
  transform: scale(1.1);
}

.tool-icons {
  position: absolute;
  bottom: -10px;
  display: flex;
  gap: 4px;
}

.mini-icon {
  width: 28px;
  height: 28px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  animation: pulse 2s infinite;
}

.mini-icon svg {
  width: 14px;
  height: 14px;
}

.github-mini { color: var(--gray-900); animation-delay: 0s; }
.jira-mini { color: #0052CC; animation-delay: 0.2s; }
.slack-mini { color: #E01E5A; animation-delay: 0.4s; }

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

.magic-particles span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: magicParticle 2s infinite;
}

.magic-particles span:nth-child(1) { top: 10px; left: 20px; animation-delay: 0s; }
.magic-particles span:nth-child(2) { top: 20px; right: 15px; animation-delay: 0.5s; }
.magic-particles span:nth-child(3) { bottom: 15px; left: 30px; animation-delay: 1s; }

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

.shine-rays {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 217, 61, 0.3) 0%, transparent 70%);
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

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

/* Step Connectors */
.step-connector {
  display: flex;
  align-items: center;
  padding-top: 80px;
  width: 80px;
}

.connector-line {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
  position: relative;
}

.connector-line::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--gray-200);
}

/* ===================================
   DEMO SECTION
   =================================== */

.demo-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.demo-container {
  display: grid;
  gap: 60px;
}

.demo-window {
  background: var(--gray-900);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.window-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--gray-800);
  border-bottom: 1px solid var(--gray-700);
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.window-dots span:nth-child(1) { background: #FF5F57; }
.window-dots span:nth-child(2) { background: #FFBD2E; }
.window-dots span:nth-child(3) { background: #28CA41; }

.window-title {
  flex: 1;
  text-align: center;
  color: var(--gray-400);
  font-size: 13px;
}

.window-content {
  display: grid;
  grid-template-columns: 200px 1fr;
}

.demo-sidebar {
  background: var(--gray-800);
  padding: 20px;
  border-right: 1px solid var(--gray-700);
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: var(--gray-400);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-base);
}

.sidebar-item:hover {
  background: var(--gray-700);
  color: var(--white);
}

.sidebar-item.active {
  background: var(--gradient-warm);
  color: var(--gray-900);
}

.sidebar-icon {
  font-size: 18px;
}

.demo-feed {
  background: var(--white);
  padding: 24px;
}

.feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}

.feed-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
}

.feed-filters {
  display: flex;
  gap: 8px;
}

.filter-btn {
  padding: 6px 14px;
  background: var(--gray-100);
  border: none;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition-base);
}

.filter-btn:hover {
  background: var(--gray-200);
}

.filter-btn.active {
  background: var(--gray-900);
  color: var(--white);
}

.feed-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feed-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
}

.feed-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.feed-item:hover {
  background: var(--cream);
  transform: translateX(4px);
}

.feed-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.feed-item-icon.github {
  background: var(--gray-900);
  color: var(--white);
}

.feed-item-icon.jira {
  background: #0052CC;
  color: var(--white);
}

.feed-item-icon.kudos {
  background: var(--gradient-warm);
  font-size: 22px;
}

.feed-item-content {
  flex: 1;
  min-width: 0;
}

.feed-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.feed-item-type {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feed-item-date {
  font-size: 12px;
  color: var(--gray-400);
}

.feed-item-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.feed-item-ai {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
  padding: 10px 14px;
  background: var(--yellow-light);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--yellow);
  margin-bottom: 10px;
}

.ai-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  margin-right: 6px;
}

.feed-item-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--gray-400);
}

.feed-item-edit {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  transition: var(--transition-base);
}

.feed-item:hover .feed-item-edit {
  opacity: 1;
}

.feed-item-edit:hover {
  transform: scale(1.2);
}

/* Demo Features */
.demo-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.demo-feature {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.demo-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.demo-feature-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.demo-feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

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

/* ===================================
   TRANSFORMATION DEMO
   =================================== */

.transformation-demo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 80px;
  transition: var(--transition-base);
}

.transformation-demo:hover .transform-arrow {
  transform: scale(1.05);
}

.transform-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
}

.raw-panel {
  background: var(--gray-50);
  border-color: var(--gray-200);
  position: relative;
  overflow: hidden;
}

.brag-panel {
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  border-color: var(--yellow);
  box-shadow: var(--shadow-glow);
  animation: glowPulse 3s ease-in-out infinite, borderGlow 4s linear infinite;
  position: relative;
  overflow: hidden;
}

@keyframes borderGlow {
  0%, 100% {
    border-color: var(--yellow);
  }
  25% {
    border-color: var(--orange);
  }
  50% {
    border-color: var(--coral);
  }
  75% {
    border-color: var(--orange);
  }
}

.brag-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 217, 61, 0.1) 0%, transparent 70%);
  animation: shimmer 4s linear infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 217, 61, 0.3), 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 217, 61, 0.5), 0 4px 20px rgba(0, 0, 0, 0.08);
  }
}

@keyframes shimmer {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}

.panel-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
}

.highlight-label {
  color: var(--orange);
}

.source-icons {
  display: flex;
  gap: 8px;
}

.source-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.source-icon svg {
  width: 14px;
  height: 14px;
}

.github-src {
  background: var(--gray-900);
  color: var(--white);
}

.jira-src {
  background: #0052CC;
  color: var(--white);
}

.slack-src {
  background: #E01E5A;
  color: var(--white);
}

.ai-powered-badge {
  padding: 4px 12px;
  background: var(--gradient-warm);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-900);
}

/* Raw Items */
.raw-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.raw-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition-base);
  animation: slideInLeft 0.5s ease forwards;
  opacity: 0;
  cursor: pointer;
}

.raw-item:nth-child(1) { animation-delay: 0.1s; }
.raw-item:nth-child(2) { animation-delay: 0.3s; }
.raw-item:nth-child(3) { animation-delay: 0.5s; }

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

.raw-item:hover {
  border-color: var(--orange);
  transform: translateX(8px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.raw-item:hover .raw-icon {
  transform: scale(1.1);
}

/* Cycling highlight glow effect on raw items */
.raw-item::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-md);
  background: transparent;
  border: 2px solid transparent;
  opacity: 0;
  animation: notificationGlow 6s ease-in-out infinite;
  pointer-events: none;
}

.raw-item:nth-child(1)::after { animation-delay: 0s; }
.raw-item:nth-child(2)::after { animation-delay: 2s; }
.raw-item:nth-child(3)::after { animation-delay: 4s; }

@keyframes notificationGlow {
  0%, 100% {
    opacity: 0;
    border-color: transparent;
  }
  5% {
    opacity: 1;
    border-color: var(--coral);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.4);
  }
  10%, 25% {
    opacity: 1;
    border-color: var(--yellow);
    box-shadow: 0 0 10px rgba(255, 217, 61, 0.3);
  }
  30% {
    opacity: 0;
    border-color: transparent;
    box-shadow: none;
  }
}

.raw-item {
  position: relative;
}

.raw-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.raw-icon svg {
  width: 16px;
  height: 16px;
}

.github-raw .raw-icon {
  background: var(--gray-100);
  color: var(--gray-700);
}

.jira-raw .raw-icon {
  background: #E6F0FF;
  color: #0052CC;
}

.slack-raw .raw-icon {
  background: #FCE7EB;
  color: #E01E5A;
}

.raw-content {
  flex: 1;
  min-width: 0;
}

.raw-content code {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  color: var(--gray-700);
  font-family: monospace;
  margin-bottom: 4px;
}

.raw-detail {
  display: block;
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.4;
  margin-bottom: 4px;
}

.raw-meta {
  font-size: 11px;
  color: var(--gray-400);
}

/* Transform Arrow */
.transform-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  position: relative;
  transition: var(--transition-base);
}

.arrow-line {
  width: 3px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gray-300), var(--yellow), var(--orange));
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
}

.arrow-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--white), transparent);
  animation: flowDown 2s infinite;
}

@keyframes flowDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

.arrow-icon {
  font-size: 40px;
  margin: 16px 0;
  filter: drop-shadow(0 0 10px rgba(255, 217, 61, 0.5));
}

@keyframes magicPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 0 10px rgba(255, 217, 61, 0.5));
  }
  50% {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 20px rgba(255, 140, 66, 0.8));
  }
}

.arrow-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

/* Floating particles around arrow */
.transform-arrow::before,
.transform-arrow::after {
  content: '✦';
  position: absolute;
  font-size: 12px;
  color: var(--yellow);
  animation: floatParticle 3s infinite;
}

.transform-arrow::before {
  left: -10px;
  top: 30%;
  animation-delay: 0s;
}

.transform-arrow::after {
  right: -10px;
  top: 60%;
  animation-delay: 1.5s;
}

@keyframes floatParticle {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-10px) scale(1);
  }
}

/* Additional sparkle particles */
.transform-arrow .sparkle-particle {
  position: absolute;
  font-size: 10px;
  animation: sparkleFloat 2.5s infinite;
}

.transform-arrow .sparkle-particle:nth-child(1) {
  left: -15px;
  top: 20%;
  animation-delay: 0.2s;
}

.transform-arrow .sparkle-particle:nth-child(2) {
  right: -15px;
  top: 40%;
  animation-delay: 0.8s;
}

.transform-arrow .sparkle-particle:nth-child(3) {
  left: -8px;
  bottom: 30%;
  animation-delay: 1.4s;
}

@keyframes sparkleFloat {
  0%, 100% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(180deg);
  }
}

/* Polished Brag */
.polished-brag {
  animation: fadeInUp 0.6s ease 0.7s forwards;
  opacity: 0;
  position: relative;
  z-index: 1;
}

.polished-brag:hover {
  transform: translateY(-4px);
}

.brag-title {
  animation: typeIn 0.8s ease 1s forwards;
  background: linear-gradient(90deg, var(--gray-900) 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
}

@keyframes typeIn {
  to {
    background-position: 0 0;
  }
}

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

.brag-category {
  padding: 4px 12px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brag-date {
  font-size: 12px;
  color: var(--gray-500);
}

.brag-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
}

.brag-summary {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 16px;
}

.brag-summary strong {
  color: var(--gray-900);
  font-weight: 600;
}

.brag-evidence {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.evidence-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--white);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  animation: popIn 0.3s ease forwards;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-base);
}

.evidence-tag:nth-child(1) { animation-delay: 1.2s; }
.evidence-tag:nth-child(2) { animation-delay: 1.4s; }
.evidence-tag:nth-child(3) { animation-delay: 1.6s; }

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

.evidence-tag:hover {
  background: var(--gray-900);
  color: var(--white);
  border-color: var(--gray-900);
  transform: scale(1.05);
}

.evidence-tag svg {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  transition: var(--transition-base);
}

.evidence-tag:hover svg {
  opacity: 1;
}

/* Brag Action Buttons */
.brag-actions {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--gray-300);
}

.actions-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.action-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition-base);
  animation: buttonPopIn 0.4s ease forwards;
  opacity: 0;
  transform: translateY(10px);
  position: relative;
  overflow: hidden;
}

.action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gray-200);
  transition: var(--transition-base);
}

/* Individual button colors */
.action-btn:nth-child(1)::before { background: var(--sky-blue); }
.action-btn:nth-child(2)::before { background: var(--purple); }
.action-btn:nth-child(3)::before { background: var(--coral); }
.action-btn:nth-child(4)::before { background: var(--orange); }

.action-btn:nth-child(1) { animation-delay: 1.8s; }
.action-btn:nth-child(2) { animation-delay: 2s; }
.action-btn:nth-child(3) { animation-delay: 2.2s; }
.action-btn:nth-child(4) { animation-delay: 2.4s; }

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

.action-btn:hover {
  border-color: var(--gray-200);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.action-btn:nth-child(1):hover { background: rgba(78, 205, 196, 0.1); border-color: var(--sky-blue); }
.action-btn:nth-child(2):hover { background: rgba(155, 93, 229, 0.1); border-color: var(--purple); }
.action-btn:nth-child(3):hover { background: rgba(255, 107, 107, 0.1); border-color: var(--coral); }
.action-btn:nth-child(4):hover { background: rgba(255, 140, 66, 0.1); border-color: var(--orange); }

.action-btn:hover::before {
  width: 6px;
}

.action-btn:active {
  transform: scale(0.98) translateX(4px);
}

.action-icon {
  font-size: 18px;
  transition: var(--transition-base);
  flex-shrink: 0;
}

.action-btn:hover .action-icon {
  transform: scale(1.15);
}

/* Use Cases Section */
.use-cases {
  text-align: center;
}

.use-cases-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 32px;
}

.use-case-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.use-case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 2px solid var(--gray-100);
  transition: var(--transition-base);
  cursor: pointer;
}

.use-case-card:hover {
  border-color: var(--yellow);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.use-case-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.use-case-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.use-case-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 16px;
}

.use-case-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  transition: var(--transition-base);
}

.use-case-card:hover .use-case-cta {
  color: var(--coral);
}

/* Responsive for transformation demo */
@media (max-width: 1024px) {
  .transformation-demo {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .transform-arrow {
    flex-direction: row;
    padding: 0 20px;
  }

  .arrow-line {
    width: 60px;
    height: 2px;
  }

  .arrow-label {
    writing-mode: horizontal-tb;
    transform: none;
  }

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

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

@media (max-width: 480px) {
  .action-buttons {
    grid-template-columns: 1fr;
  }

  .action-btn {
    padding: 14px 16px;
  }
}

@media (max-width: 640px) {
  .use-case-cards {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   COMING SOON SECTION
   =================================== */

.coming-soon {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.coming-soon::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 217, 61, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.future-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.future-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.future-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.future-card-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.future-card-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 6px 14px;
  background: var(--gradient-warm);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-900);
}

.future-card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.future-card-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}

.future-card-preview {
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-lg);
}

.wrapped-preview {
  text-align: center;
}

.wrapped-stat {
  display: block;
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wrapped-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.slack-preview {
  text-align: center;
}

.slack-msg {
  display: inline-block;
  padding: 12px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  font-size: 14px;
  color: var(--gray-800);
}

.interview-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.star-badge {
  padding: 8px 16px;
  background: var(--sky-blue);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.star-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.portfolio-preview {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.portfolio-mini-card {
  width: 60px;
  height: 80px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--orange) 100%);
  border-radius: var(--radius-md);
  opacity: 0.8;
}

.portfolio-mini-card:nth-child(2) {
  background: linear-gradient(135deg, var(--sky-blue) 0%, var(--purple) 100%);
  transform: translateY(-8px);
}

/* ===================================
   WAITLIST SECTION
   =================================== */

.waitlist {
  padding: var(--section-padding) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.waitlist-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.waitlist-visual {
  position: relative;
}

.waitlist-illustration {
  position: relative;
  height: 400px;
}

.illustration-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
}

.illustration-card span {
  font-size: 28px;
}

.illustration-card p {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
}

.card-a {
  top: 20%;
  left: 10%;
  animation: floatCard 5s ease-in-out infinite;
}

.card-b {
  top: 45%;
  right: 15%;
  animation: floatCard 6s ease-in-out infinite 1s;
}

.card-c {
  bottom: 15%;
  left: 25%;
  animation: floatCard 4s ease-in-out infinite 0.5s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

.illustration-sparkles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  display: flex;
  gap: 20px;
}

.illustration-sparkles span {
  animation: twinkle 2s infinite;
}

.illustration-sparkles span:nth-child(2) { animation-delay: 0.5s; }
.illustration-sparkles span:nth-child(3) { animation-delay: 1s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.waitlist-form-container {
  max-width: 480px;
}

.waitlist-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.waitlist-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 32px;
}

.waitlist-form {
  margin-bottom: 32px;
}

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

.form-group input {
  flex: 1;
  padding: 16px 24px;
  font-family: var(--font-family);
  font-size: 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  outline: none;
  transition: var(--transition-base);
}

.form-group input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.1);
}

.form-group .btn {
  flex-shrink: 0;
}

.form-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray-500);
}

.btn-loading {
  display: none;
}

.btn.loading .btn-text {
  display: none;
}

.btn.loading .btn-loading {
  display: block;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Waitlist Success */
.waitlist-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.waitlist-success.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.success-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.waitlist-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.waitlist-success p {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.share-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.share-btn {
  padding: 12px 24px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-base);
}

.share-btn.twitter {
  background: #1DA1F2;
  color: var(--white);
}

.share-btn.linkedin {
  background: #0A66C2;
  color: var(--white);
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Waitlist Stats */
.waitlist-stats {
  display: flex;
  gap: 48px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
}

.stat-label {
  font-size: 14px;
  color: var(--gray-500);
}

/* Confetti Container */
.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1001;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  opacity: 0;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
  padding: 80px 0 40px;
  background: var(--gray-900);
  color: var(--white);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-tagline {
  color: var(--gray-400);
  font-size: 15px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column a {
  display: block;
  color: var(--gray-400);
  font-size: 15px;
  margin-bottom: 12px;
  transition: var(--transition-base);
}

.footer-column a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--gray-500);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--gray-400);
  transition: var(--transition-base);
}

.social-link:hover {
  background: var(--gradient-warm);
  transform: translateY(-4px);
}

.social-link:hover svg {
  fill: var(--gray-900);
}

/* Minimal Footer Variant */
.footer.footer-minimal {
  padding: 40px 0;
  background: var(--gray-900);
}

.footer-minimal .container {
  text-align: center;
}

.footer-copyright {
  font-size: 14px;
  color: var(--gray-400);
  margin: 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    height: 400px;
    display: none;
  }

  .hero-title {
    font-size: 48px;
  }

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

  .step-connector {
    display: none;
  }

  .step {
    max-width: 100%;
  }

  .window-content {
    grid-template-columns: 1fr;
  }

  .demo-sidebar {
    display: none;
  }

  .demo-features {
    grid-template-columns: 1fr;
  }

  .future-features {
    grid-template-columns: 1fr;
  }

  .waitlist-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .waitlist-visual {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .section-title {
    font-size: 32px;
  }

  .form-group {
    flex-direction: column;
  }

  .form-group .btn {
    width: 100%;
  }

  .waitlist-stats {
    justify-content: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .waitlist-title {
    font-size: 28px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
