/* ============================================
   RIKODE.COM — Landing Page Styles
   ============================================ */

/* ── CSS Custom Properties ── */
:root {
  /* Colors */
  --c-bg: #0a0a0f;
  --c-bg-2: #0f0f1a;
  --c-bg-card: rgba(255, 255, 255, 0.03);
  --c-bg-card-hover: rgba(255, 255, 255, 0.06);
  --c-border: rgba(255, 255, 255, 0.07);
  --c-border-hover: rgba(255, 255, 255, 0.15);
  --c-text: #e2e8f0;
  --c-text-muted: rgba(226, 232, 240, 0.5);
  --c-text-dim: rgba(226, 232, 240, 0.3);
  --c-cyan: #00d4ff;
  --c-purple: #7c3aed;
  --c-pink: #ec4899;
  --c-amber: #f59e0b;
  --c-green: #10b981;

  /* Gradients */
  --g-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  --g-glow: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.15) 0%, transparent 70%);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  /* Typography */
  --font-sans: 'Inter', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Border radius */
  --r-sm: 0.5rem;
  --r-md: 0.75rem;
  --r-lg: 1rem;
  --r-xl: 1.5rem;
  --r-2xl: 2rem;

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

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

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .container { padding: 0 var(--space-sm); }
}

/* ── Cursor ── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--c-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.05s, width 0.2s, height 0.2s, opacity 0.2s;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.3s, height 0.3s, opacity 0.3s;
}

@media (pointer: coarse) {
  .cursor, .cursor-follower { display: none; }
}

/* ── Typography Utilities ── */
.gradient-text {
  background: var(--g-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-cyan);
  padding: 0.35rem 0.9rem;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--t-base);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--g-primary);
  color: #fff;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border-hover);
}

.btn-ghost:hover {
  background: var(--c-bg-card-hover);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--t-slow), backdrop-filter var(--t-slow), box-shadow var(--t-slow);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--c-border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

/* Logo */
.logo {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.1em;
}

.logo-bracket {
  color: var(--c-cyan);
  opacity: 0.7;
}

.logo-text {
  background: var(--g-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text-muted);
  text-decoration: none;
  transition: color var(--t-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--g-primary);
  transform: scaleX(0);
  transition: transform var(--t-base);
}

.nav-link:hover {
  color: var(--c-text);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  transition: all var(--t-base);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-base);
    z-index: 999;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav-link { font-size: 1.5rem; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4rem;
}

/* Grid background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  bottom: 50px;
  left: -100px;
  animation-delay: -3s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
  top: 40%;
  left: 40%;
  animation-delay: -5s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 700px;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-cyan);
  margin-bottom: var(--space-lg);
  animation: fadeInDown 0.8s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--c-cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* Hero Title */
.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
  animation: fadeInDown 0.8s ease 0.1s both;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--c-text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-subtitle strong {
  color: var(--c-text);
  font-weight: 600;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
  animation: fadeInDown 0.8s ease 0.3s both;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  animation: fadeInDown 0.8s ease 0.4s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-mono);
  background: var(--g-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--c-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--c-border);
}

/* Floating code snippets */
.code-float {
  position: absolute;
  background: rgba(15, 15, 26, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  pointer-events: none;
  animation: floatOrb 6s ease-in-out infinite;
  z-index: 1;
}

.code-float-1 {
  right: 2%;
  top: 20%;
  animation-delay: -1s;
  max-width: 300px;
}

.code-float-2 {
  right: 8%;
  bottom: 20%;
  animation-delay: -4s;
  max-width: 260px;
}

.code-float pre { white-space: pre-wrap; }
.code-float .kw { color: #7c3aed; }
.code-float .var { color: #00d4ff; }
.code-float .str { color: #10b981; }
.code-float .comment { color: rgba(255,255,255,0.35); font-style: italic; }
.code-float .num { color: var(--c-amber); }

@media (max-width: 960px) {
  .code-float { display: none; }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  width: 1.5px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(0,212,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
  padding: var(--space-3xl) 0;
  background: var(--c-bg-2);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border-hover), transparent);
}

.products::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border-hover), transparent);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

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

/* Product Card */
.product-card {
  position: relative;
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border);
  background: var(--c-bg-card);
  transition: all var(--t-slow);
  overflow: hidden;
  cursor: default;
}

.product-card:hover {
  border-color: var(--c-border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.product-card--featured {
  border-color: rgba(0, 212, 255, 0.2);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.04) 0%, rgba(124, 58, 237, 0.04) 100%);
}

.product-card--featured:hover {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.1);
}

.product-card-inner {
  padding: 1.75rem;
  position: relative;
  z-index: 1;
}

/* Card Glow */
.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--glow-color), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-slow);
  pointer-events: none;
}

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

/* Featured ribbon */
.featured-ribbon {
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: var(--g-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 2.5rem;
  transform: rotate(35deg);
  letter-spacing: 0.05em;
}

/* Product Header */
.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.product-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  background: var(--icon-bg);
  color: var(--icon-color);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Badges */
.product-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.product-badge--dev {
  color: var(--c-amber);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.product-badge--live {
  color: var(--c-green);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.live-pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--c-green);
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50% { box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
}

/* Product Content */
.product-name {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
  font-family: var(--font-mono);
}

.product-tagline {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: var(--space-sm);
}

.product-desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-md);
}

.product-features li {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.product-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-cyan);
  font-size: 0.8rem;
}

/* Product Footer */
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid var(--c-border);
  padding-top: var(--space-md);
  flex-wrap: wrap;
}

.product-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tech-tag {
  font-size: 0.7rem;
  font-weight: 500;
  font-family: var(--font-mono);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text-muted);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--c-border);
  transition: all var(--t-base);
  white-space: nowrap;
}

.product-link:hover {
  color: var(--c-text);
  border-color: var(--c-border-hover);
  background: var(--c-bg-card-hover);
}

.product-link--featured {
  background: var(--g-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.product-link--featured:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.35);
  color: #fff;
  border-color: transparent;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

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

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* About Content */
.about-content .section-tag { margin-bottom: var(--space-sm); }

.about-text {
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.about-text em { color: var(--c-cyan); font-style: normal; font-weight: 500; }

.about-values {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.value-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  border-radius: var(--r-lg);
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  transition: all var(--t-base);
}

.value-item:hover {
  border-color: var(--c-border-hover);
  background: var(--c-bg-card-hover);
}

.value-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.value-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.value-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

/* About Visual */
.about-visual {
  position: relative;
}

.visual-card {
  background: rgba(15, 15, 26, 0.9);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.visual-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--c-border);
  background: rgba(255, 255, 255, 0.02);
}

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

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

.visual-title {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--c-text-muted);
  margin-left: auto;
  margin-right: auto;
}

.visual-code {
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.8;
  white-space: pre;
  overflow-x: auto;
}

.visual-code .kw { color: #7c3aed; }
.visual-code .var { color: #00d4ff; }
.visual-code .str { color: #10b981; }
.visual-code .num { color: var(--c-amber); }

/* Mini Cards */
.mini-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(15, 15, 26, 0.95);
  border: 1px solid var(--c-border-hover);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  animation: floatOrb 5s ease-in-out infinite;
}

.mini-card-1 { bottom: -1.5rem; left: -2rem; animation-delay: 0s; }
.mini-card-2 { top: -1.5rem; left: 30%; animation-delay: -2s; }
.mini-card-3 { top: 40%; right: -2rem; animation-delay: -4s; }

@media (max-width: 768px) {
  .mini-card { display: none; }
  .about-visual { margin-top: var(--space-xl); }
}

/* ============================================
   TECHNOLOGY SECTION
   ============================================ */
.technology {
  padding: var(--space-3xl) 0;
  background: var(--c-bg-2);
  position: relative;
}

.technology::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border-hover), transparent);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 1rem;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.25rem 0.75rem;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  transition: all var(--t-base);
  text-align: center;
  cursor: default;
}

.tech-item:hover {
  border-color: var(--c-border-hover);
  background: var(--c-bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tech-logo {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-mono);
  line-height: 1;
}

.tech-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-text-muted);
}

/* ============================================
   STATUS / ROADMAP SECTION
   ============================================ */
.status-section {
  padding: var(--space-3xl) 0;
}

.status-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.status-timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--c-cyan), rgba(124, 58, 237, 0.3), transparent);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: 14px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid;
}

.timeline-dot--live {
  background: var(--c-green);
  border-color: var(--c-green);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
  animation: livePulse 2s infinite;
}

.timeline-dot--dev {
  background: var(--c-amber);
  border-color: var(--c-amber);
}

.timeline-dot--soon {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--c-border-hover);
}

.timeline-content {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  transition: all var(--t-base);
}

.timeline-content:hover {
  border-color: var(--c-border-hover);
  background: var(--c-bg-card-hover);
}

.timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}

.timeline-badge--live {
  color: var(--c-green);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.timeline-badge--dev {
  color: var(--c-amber);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.timeline-badge--soon {
  color: var(--c-text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-border);
}

.timeline-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.timeline-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-cyan);
  text-decoration: none;
  transition: color var(--t-fast);
}

.timeline-link:hover { color: #fff; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: var(--space-3xl) 0;
  background: var(--c-bg-2);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border-hover), transparent);
}

.contact-card {
  position: relative;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  border-radius: var(--r-2xl);
  border: 1px solid rgba(0, 212, 255, 0.12);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.04) 0%, rgba(124, 58, 237, 0.06) 100%);
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.contact-orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  top: -80px;
  right: -60px;
}

.contact-orb-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  bottom: -60px;
  left: -40px;
}

.contact-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.contact-subtitle {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.contact-links {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--t-base);
}

.contact-btn--primary {
  background: var(--g-primary);
  color: #fff;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.contact-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.4);
}

.contact-btn--ghost {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border-hover);
}

.contact-btn--ghost:hover {
  background: var(--c-bg-card-hover);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: var(--space-2xl) 0 var(--space-xl);
  border-top: 1px solid var(--c-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
}

.footer-brand .logo {
  margin-bottom: var(--space-sm);
  display: inline-flex;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--c-text-dim);
  line-height: 1.6;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--c-text-dim);
  text-decoration: none;
  transition: color var(--t-fast);
}

.footer-links a:hover { color: var(--c-text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--c-border);
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.footer-copy, .footer-made {
  font-size: 0.82rem;
  color: var(--c-text-dim);
}

.heart { display: inline-block; animation: heartbeat 1.5s ease-in-out infinite; }

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

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

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

/* Scroll animation classes */
[data-animate] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-up"] { transform: translateY(30px); }
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

.product-card, .tech-item, .timeline-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.product-card.is-visible,
.tech-item.is-visible,
.timeline-item.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 255, 0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(0, 212, 255, 0.5); }

/* ============================================
   SELECTION
   ============================================ */
::selection {
  background: rgba(0, 212, 255, 0.2);
  color: var(--c-text);
}

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