/* ============================
   ORACLE LANDING PAGE
   Dark theme, coral & gold accents
   Space Grotesk + physics UX
   ============================ */

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(212, 167, 106, 0.15);

  --text-primary: #f5f5f5;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;

  --coral: #e8835d;
  --coral-light: #f0a080;
  --gold: #d4a76a;
  --gold-light: #e8c898;
  --green: #4ade80;

  --gradient-accent: linear-gradient(135deg, var(--coral) 0%, var(--gold) 100%);
  --gradient-accent-soft: linear-gradient(135deg, rgba(232, 131, 93, 0.15) 0%, rgba(212, 167, 106, 0.15) 100%);
  --gradient-cta: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 50%, var(--gold) 100%);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Space Grotesk', 'Inter', -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --container: 1200px;
  --section-gap: 140px;

  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

::selection {
  background: rgba(232, 131, 93, 0.3);
  color: var(--text-primary);
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

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

/* ============ CUSTOM CURSOR GLOW ============ */

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 131, 93, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  will-change: transform;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.4s var(--smooth), backdrop-filter 0.4s, padding 0.4s var(--smooth);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 0;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform 0.4s var(--spring);
}

.nav-brand:hover .nav-logo {
  transform: rotate(-8deg) scale(1.1);
}

.nav-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-accent);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

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

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--smooth);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s var(--spring), opacity 0.4s;
}

.mobile-menu.open a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }

.nav-active {
  color: var(--text-primary) !important;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all 0.4s var(--spring);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  will-change: transform;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
  background: var(--gradient-accent);
  color: #000;
  border-radius: var(--radius-sm);
}

.btn-sm:hover {
  opacity: 0.9;
  transform: translateY(-1px) scale(1.02);
}

.btn-primary {
  padding: 14px 28px;
  background: var(--gradient-cta);
  color: #0a0a0a;
  font-weight: 600;
  box-shadow: 0 0 30px rgba(232, 131, 93, 0.2), 0 0 60px rgba(212, 167, 106, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out-expo);
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 50px rgba(232, 131, 93, 0.4), 0 0 100px rgba(212, 167, 106, 0.2);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-ghost {
  padding: 14px 28px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px) scale(1.02);
}

.btn-ghost:active {
  transform: translateY(-1px) scale(0.98);
}

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

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--green);
  margin-bottom: 28px;
  font-weight: 500;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-sub strong {
  color: var(--text-primary);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.orb-container {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 800px;
  will-change: transform;
}

.orb {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--coral), var(--gold) 70%, transparent 100%);
  opacity: 0.12;
  filter: blur(60px);
  animation: orb-breathe 6s ease-in-out infinite;
}

@keyframes orb-breathe {
  0%, 100% { transform: scale(1); opacity: 0.12; }
  50% { transform: scale(1.15); opacity: 0.18; }
}

.orb-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(212, 167, 106, 0.12);
  animation: ring-spin 25s linear infinite;
}

.orb-ring::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold), 0 0 24px rgba(212, 167, 106, 0.3);
}

.orb-ring-2 {
  width: 360px;
  height: 360px;
  border-color: rgba(232, 131, 93, 0.08);
  animation-duration: 35s;
  animation-direction: reverse;
}

.orb-ring-2::after {
  background: var(--coral);
  box-shadow: 0 0 12px var(--coral), 0 0 24px rgba(232, 131, 93, 0.3);
}

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

.hero-logo-float {
  width: 120px;
  height: 120px;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(212, 167, 106, 0.3));
  transition: transform 0.3s var(--spring);
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(1deg); }
  50% { transform: translateY(-14px) rotate(0deg); }
  75% { transform: translateY(-6px) rotate(-1deg); }
}

/* ============ SECTION HEADERS ============ */

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

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--coral);
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-desc {
  margin-top: 16px;
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ VALUES ============ */

.values {
  position: relative;
  z-index: 1;
  padding: var(--section-gap) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
  will-change: transform;
  perspective: 600px;
}

.value-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(212, 167, 106, 0.05);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gradient-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--coral);
  transition: transform 0.5s var(--spring);
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(-5deg);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============ SHOWCASE ============ */

.showcase {
  position: relative;
  z-index: 1;
  padding: var(--section-gap) 0;
  background: var(--bg-secondary);
}

.showcase-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 80px;
}

.showcase-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase-item-reverse {
  grid-template-columns: 1fr 1.2fr;
}

.showcase-item-reverse .showcase-screen {
  order: 2;
}

.showcase-item-reverse .showcase-info {
  order: 1;
}

.showcase-screen {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  will-change: transform;
  transition: box-shadow 0.4s;
}

.showcase-screen:hover {
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 167, 106, 0.06);
}

.showcase-screen img {
  width: 100%;
  display: block;
  border-radius: var(--radius-xl);
  transition: transform 0.6s var(--ease-out-expo);
}

.showcase-screen:hover img {
  transform: scale(1.02);
}

.screen-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 80px rgba(212, 167, 106, 0.06);
  pointer-events: none;
}

.showcase-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.showcase-info p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Feature cards grid */

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
  will-change: transform;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(212, 167, 106, 0.04);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gradient-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  transition: transform 0.5s var(--spring);
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(-5deg);
}

.feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============ PRIVACY FLOW ============ */

.privacy-flow {
  position: relative;
  z-index: 1;
  padding: var(--section-gap) 0;
}

.flow-steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.flow-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--smooth);
}

.flow-step:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateX(8px);
}

.flow-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.flow-step:hover .flow-number {
  opacity: 1;
}

.flow-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.flow-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.flow-connector {
  width: 2px;
  height: 40px;
  margin: 0 auto;
  background: linear-gradient(to bottom, var(--border-glow), transparent);
}

/* ============ COLLECTIVE ============ */

.collective {
  position: relative;
  z-index: 1;
  padding: var(--section-gap) 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.collective-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.collective-visual {
  position: relative;
  height: 400px;
}

.constellation {
  position: absolute;
  inset: 0;
}

.star {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-light);
  animation: star-twinkle 3s ease-in-out infinite;
  animation-delay: var(--delay);
}

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

.collective-text .section-tag {
  display: block;
  text-align: left;
}

.collective-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.collective-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.collective-highlight {
  color: var(--gold) !important;
  font-weight: 500;
  font-style: italic;
}

/* ============ MANIFESTO ============ */

.manifesto {
  position: relative;
  z-index: 1;
  padding: var(--section-gap) 0;
}

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

.manifesto-quote {
  margin-bottom: 48px;
}

.manifesto-quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  color: var(--text-primary);
  opacity: 0.9;
  letter-spacing: -0.02em;
}

.manifesto-quote cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
}

.manifesto-divider {
  width: 60px;
  height: 2px;
  background: var(--gradient-accent);
  margin: 0 auto 48px;
  border-radius: 2px;
}

.manifesto-text p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.manifesto-text em {
  color: var(--coral-light);
  font-style: italic;
}

/* ============ TECH STACK ============ */

.tech {
  position: relative;
  z-index: 1;
  padding: var(--section-gap) 0;
  background: var(--bg-secondary);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tech-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all 0.4s var(--smooth);
}

.tech-item:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.tech-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.tech-value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.tech-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ============ FINAL CTA ============ */

.final-cta {
  position: relative;
  z-index: 1;
  padding: var(--section-gap) 0;
}

.cta-inner {
  text-align: center;
  padding: 80px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232, 131, 93, 0.06), transparent 70%);
  pointer-events: none;
}

.cta-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 28px;
  filter: drop-shadow(0 0 20px rgba(212, 167, 106, 0.25));
  animation: float 6s ease-in-out infinite;
}

.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.cta-inner p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

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

.footer {
  position: relative;
  z-index: 1;
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 600;
}

.footer-col a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.2s, transform 0.3s var(--spring);
  display: inline-block;
}

.footer-col a:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

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

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-privacy-note a {
  color: var(--coral);
  text-decoration: none;
}

.footer-privacy-note a:hover {
  text-decoration: underline;
}

/* ============ REVEAL ANIMATIONS ============ */

[data-reveal] {
  opacity: 0;
  will-change: transform, opacity;
}

[data-reveal="fade-up"] {
  transform: translateY(40px);
}

[data-reveal="fade-down"] {
  transform: translateY(-30px);
}

[data-reveal="slide-right"] {
  transform: translateX(-60px);
}

[data-reveal="slide-left"] {
  transform: translateX(60px);
}

[data-reveal="scale"] {
  transform: scale(0.9);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
  transition: opacity 0.8s var(--ease-out-expo), transform 1s var(--spring);
}

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

@media (max-width: 1024px) {
  :root {
    --section-gap: 100px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding-top: 100px;
  }

  .hero-content {
    max-width: 100%;
  }

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

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

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

  .orb-container {
    width: 280px;
    height: 280px;
  }

  .orb-ring {
    width: 220px;
    height: 220px;
  }

  .orb-ring-2 {
    width: 270px;
    height: 270px;
  }

  .hero-logo-float {
    width: 90px;
    height: 90px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .showcase-item,
  .showcase-item-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .showcase-item-reverse .showcase-screen {
    order: 0;
  }

  .showcase-item-reverse .showcase-info {
    order: 0;
  }

  .feature-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .collective-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .collective-text .section-tag {
    text-align: center;
  }

  .collective-visual {
    height: 250px;
    order: -1;
  }

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

  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 40px;
    flex-wrap: wrap;
  }

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

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

  .cursor-glow {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-ghost {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    padding: 60px 24px;
  }

  .footer-links {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-trust {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .flow-step {
    flex-direction: column;
    gap: 16px;
  }

  .flow-number {
    font-size: 2rem;
  }
}

/* ============ REDUCED MOTION ============ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .cursor-glow {
    display: none;
  }

  html {
    scroll-behavior: auto;
  }
}
