﻿@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Sora:wght@400;500;600;700;800&display=swap");

:root {
  /* Brand colors - keeping exact background as requested */
  --bg: #063d45;
  --bg-deep: #041f24;
  --bg-mid: #052f35;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-elevated: rgba(255, 255, 255, 0.08);
  --surface-hover: rgba(255, 255, 255, 0.12);

  --accent: #1dd6c1;
  --accent-2: #4ef5e0;
  --accent-soft: #0fc5b0;
  --accent-glow: rgba(29, 214, 193, 0.25);

  --text: #f0fffe;
  --text-secondary: #c5e8e4;
  --muted: #8fb3af;
  --muted-2: #6b8c89;

  --border: rgba(240, 255, 254, 0.08);
  --border-strong: rgba(240, 255, 254, 0.12);

  --shadow: 0 4px 24px rgba(1, 8, 10, 0.3);
  --shadow-strong: 0 12px 48px rgba(1, 8, 10, 0.5);
  --shadow-premium: 0 24px 80px rgba(1, 8, 10, 0.6);

  --glass-bg: rgba(6, 61, 69, 0.6);
  --glass-border: rgba(240, 255, 254, 0.1);
}

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

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

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image:
          radial-gradient(1400px 900px at 15% -10%, rgba(29, 214, 193, 0.08), transparent 60%),
          radial-gradient(1200px 1000px at 90% 10%, rgba(14, 85, 96, 0.3), transparent 55%),
          radial-gradient(1000px 800px at 50% 100%, rgba(6, 50, 56, 0.25), transparent 65%);
  min-height: 100vh;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Sora", sans-serif;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site {
  position: relative;
  overflow: visible;
}

/* Premium animated background layers */
.bg-aurora {
  position: fixed;
  inset: -10%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  background:
          radial-gradient(800px 600px at 25% 20%, rgba(29, 214, 193, 0.12), transparent 50%),
          radial-gradient(700px 500px at 75% 30%, rgba(78, 245, 224, 0.08), transparent 50%),
          radial-gradient(900px 700px at 50% 80%, rgba(13, 85, 97, 0.15), transparent 55%);
  filter: blur(80px);
  /* animation: auroraShift 30s ease-in-out infinite; */
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' /%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Shell - consistent max-width container */
.shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* === NAVIGATION - FUTURISTIC DESIGN === */
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
  background: linear-gradient(180deg,
  rgba(6, 61, 69, 0.92) 0%,
  rgba(6, 61, 69, 0.85) 60%,
  rgba(6, 61, 69, 0) 100%);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-bottom: 1px solid rgba(29, 214, 193, 0.1);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

/* Brand - keep static */
.brand {
  display: flex;
  gap: 16px;
  align-items: center;
  position: relative;
}


.brand-mark {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg,
  rgba(29, 214, 193, 0.04),
  rgba(78, 245, 224, 0.02));
  border: 1px solid rgba(29, 214, 193, 0.12);
  box-shadow:
          0 0 8px rgba(29, 214, 193, 0.05),
          inset 0 1px 0 rgba(255, 255, 255, 0.08);
}


.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 3px rgba(29, 214, 193, 0.1));
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.3;
  display: block;
  text-shadow: none;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  display: block;
  line-height: 1.4;
  opacity: 0.95;
}

/* Futuristic nav links with morphing glass */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  border-radius: 20px;
  background: linear-gradient(135deg,
  rgba(255, 255, 255, 0.05),
  rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(29, 214, 193, 0.12);
  backdrop-filter: blur(20px) saturate(180%);
  position: relative;
  overflow: hidden;
  box-shadow:
          0 8px 32px rgba(1, 8, 10, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.08),
          0 0 8px rgba(29, 214, 193, 0.04);
}

/* Holographic border animation */
.nav-links::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg,
  rgba(29, 214, 193, 0.15),
  rgba(78, 245, 224, 0.1),
  rgba(29, 214, 193, 0.05),
  transparent);
  -webkit-mask:
          linear-gradient(#fff 0 0) content-box,
          linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.nav-links:hover::before {
  opacity: 0.5;
  /* animation: borderRotate 3s linear infinite; */
}

/* Enhanced active indicator with subtle definition */
.nav-indicator {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: var(--nav-indicator-left, 8px);
  width: var(--nav-indicator-width, 0);
  border-radius: 14px;
  background: linear-gradient(135deg,
  rgba(29, 214, 193, 0.12),
  rgba(78, 245, 224, 0.08));
  border: 1px solid rgba(29, 214, 193, 0.2);
  box-shadow:
          0 0 12px rgba(29, 214, 193, 0.15),
          0 2px 6px rgba(29, 214, 193, 0.1),
          inset 0 1px 0 rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition:
          left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
          width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
          opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

/* Additional subtle glow layer */
.nav-indicator::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: radial-gradient(ellipse at center,
  rgba(29, 214, 193, 0.12),
  transparent 70%);
  filter: blur(6px);
  opacity: 0.5;
}

.nav-links.has-indicator .nav-indicator {
  opacity: 1;
}

.nav-links a {
  position: relative;
  z-index: 1;
  padding: 12px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-shadow: none;
}

.nav-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: radial-gradient(circle at center,
  rgba(29, 214, 193, 0.04),
  transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nav-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
  text-shadow: none;
}

.nav-links a:hover::before {
  opacity: 1;
}

.nav-links a.is-active {
  color: var(--text);
  text-shadow: none;
}

.nav-links a:active {
  transform: translateY(0) scale(0.98);
}

/* Futuristic animations */

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


/* === HERO SECTION === */
.hero {
  padding: 140px 0 100px;
  position: relative;
  z-index: 2;
}

.hero > .shell {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy h1 {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-copy > p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
  justify-content: center;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg-deep);
  border: none;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(29, 214, 193, 0.35);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  background: var(--surface-elevated);
  border-color: rgba(29, 214, 193, 0.3);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.stat-card {
  padding: 28px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(24px);
  transition: all 0.3s ease;
  text-align: center;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stat-value {
  font-family: "Sora", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

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

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  padding: 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(24px);
  text-align: left;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

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

/* === SECTIONS === */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

/* Capabilities section - enhanced with subtle background */
#capabilities {
  position: relative;
  overflow: hidden;
}

#capabilities::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle,
  rgba(29, 214, 193, 0.06) 0%,
  rgba(78, 245, 224, 0.03) 30%,
  transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.7;
  animation: capabilitiesGlow 8s ease-in-out infinite;
}

@keyframes capabilitiesGlow {
  0%, 100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.1);
  }
}

.section-header {
  max-width: 720px;
  margin-bottom: 64px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-header.section-subhead {
  margin-top: 72px;
}

/* Strip section - clean without animation */
.strip {
  padding: 52px 0;
  background: linear-gradient(90deg,
  rgba(255, 255, 255, 0.04) 0%,
  rgba(255, 255, 255, 0.06) 50%,
  rgba(255, 255, 255, 0.04) 100%);
  border-top: 1px solid rgba(29, 214, 193, 0.12);
  border-bottom: 1px solid rgba(29, 214, 193, 0.12);
  backdrop-filter: blur(16px);
  position: relative;
}

.strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.strip-title {
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.strip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.strip-list span {
  position: relative;
  padding-left: 24px;
  transition: color 0.25s ease;
}

.strip-list span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.strip-list span:hover {
  color: var(--text);
}

/* Cards grid - enhanced for capabilities section */
.cap-grid,
.trust-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* Capabilities cards - premium enhanced */
.cap-card {
  padding: 36px;
  background: linear-gradient(135deg,
  rgba(6, 61, 69, 0.5),
  rgba(255, 255, 255, 0.03));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(24px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow:
          0 8px 24px rgba(1, 8, 10, 0.25),
          inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Animated gradient shine on hover */
.cap-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
  transparent 0%,
  rgba(29, 214, 193, 0.08) 50%,
  transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Accent top border that glows on hover */
.cap-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
  var(--accent) 0%,
  var(--accent-2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cap-card:hover {
  background: linear-gradient(135deg,
  rgba(6, 61, 69, 0.6),
  rgba(255, 255, 255, 0.05));
  border-color: rgba(29, 214, 193, 0.3);
  transform: translateY(-8px) scale(1.02);
  box-shadow:
          0 16px 48px rgba(1, 8, 10, 0.4),
          0 0 0 1px rgba(29, 214, 193, 0.2),
          inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

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

.cap-card:hover::after {
  opacity: 1;
}

.cap-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
  letter-spacing: -0.02em;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* Icon placeholder effect */
.cap-card h3::before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg,
  rgba(29, 214, 193, 0.15),
  rgba(78, 245, 224, 0.08));
  border: 1px solid rgba(29, 214, 193, 0.25);
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(29, 214, 193, 0.15);
}

.cap-card:hover h3::before {
  background: linear-gradient(135deg,
  rgba(29, 214, 193, 0.25),
  rgba(78, 245, 224, 0.15));
  border-color: rgba(29, 214, 193, 0.4);
  box-shadow: 0 6px 16px rgba(29, 214, 193, 0.25);
  transform: scale(1.1);
}

.cap-card p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* Staggered animation for cap cards */
.cap-card:nth-child(1) {
  animation-delay: 0.1s;
}

.cap-card:nth-child(2) {
  animation-delay: 0.2s;
}

.cap-card:nth-child(3) {
  animation-delay: 0.3s;
}

.cap-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Trust cards - keep simpler */
.trust-card {
  padding: 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(24px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
  transparent 0%,
  rgba(29, 214, 193, 0.03) 50%,
  transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-strong);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

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

.trust-card .trust-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

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

/* FAQ Section - Vertical Accordion Style */
#faq {
  position: relative;
}

.faq-list {
  max-width: 900px;
  max-height: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 12px;

  /* Custom scrollbar styling */
  scrollbar-width: thin;
  scrollbar-color: rgba(29, 214, 193, 0.3) rgba(255, 255, 255, 0.05);
}

.faq-list::-webkit-scrollbar {
  width: 8px;
}

.faq-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.faq-list::-webkit-scrollbar-thumb {
  background: rgba(29, 214, 193, 0.3);
  border-radius: 4px;
  transition: background 0.3s ease;
}

.faq-list::-webkit-scrollbar-thumb:hover {
  background: rgba(29, 214, 193, 0.5);
}

.faq-item {
  flex-shrink: 0;
  background: linear-gradient(135deg,
  rgba(6, 61, 69, 0.4),
  rgba(255, 255, 255, 0.02));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(24px);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item:hover {
  border-color: rgba(29, 214, 193, 0.2);
}

.faq-item.is-open {
  background: linear-gradient(135deg,
  rgba(6, 61, 69, 0.5),
  rgba(255, 255, 255, 0.03));
  border-color: rgba(29, 214, 193, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question span {
  font-family: "Sora", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question span {
  color: var(--accent-2);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--accent);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0.7;
}

.faq-item:hover .faq-icon {
  opacity: 1;
  color: var(--accent-2);
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  opacity: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
  padding 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0 32px;
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
  padding: 0 32px 28px 32px;
}

.faq-answer p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

/* Responsive FAQ styles for mobile devices */
@media (max-width: 768px) {
  .cap-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .faq-list {
    gap: 12px;
    max-height: 500px;
    padding-right: 8px;
  }

  .faq-question {
    padding: 20px 24px;
    gap: 16px;
  }

  .faq-question span {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 24px;
  }

  .faq-item.is-open .faq-answer {
    padding: 0 24px 20px 24px;
  }

  .faq-answer p {
    font-size: 0.9375rem;
  }
}

/* Split section - Experience enhanced */
#experience {
  position: relative;
  background: linear-gradient(180deg,
  transparent 0%,
  rgba(255, 255, 255, 0.02) 50%,
  transparent 100%);
}

#experience::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
  rgba(29, 214, 193, 0.04) 0%,
  transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.6;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

#how-it-works .split-grid {
  align-items: stretch;
}

.split-copy h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.split-copy p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}

.split-list {
  list-style: none;
  padding: 0;
}

.split-list li {
  position: relative;
  padding: 16px 16px 16px 48px;
  margin-bottom: 12px;
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(240, 255, 254, 0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.split-list li::before {
  content: "→";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2em;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.split-list li:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(29, 214, 193, 0.15);
  transform: translateX(4px);
  color: var(--text);
}

.split-list li:hover::before {
  transform: translateY(-50%) translateX(4px);
  color: var(--accent-2);
}

.split-card {
  padding: 44px;
  background: linear-gradient(135deg,
  rgba(6, 61, 69, 0.5),
  rgba(255, 255, 255, 0.03));
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  backdrop-filter: blur(32px);
  box-shadow:
          0 12px 40px rgba(1, 8, 10, 0.35),
          inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

#how-it-works .split-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.split-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
  transparent 0%,
  var(--accent) 50%,
  transparent 100%);
  opacity: 0.4;
}

.split-card:hover {
  transform: translateY(-4px);
  box-shadow:
          0 16px 56px rgba(1, 8, 10, 0.45),
          0 0 0 1px rgba(29, 214, 193, 0.15),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.split-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
  color: var(--text);
  position: relative;
  padding-bottom: 16px;
}

.split-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}

.split-metrics {
  display: grid;
  gap: 28px;
  margin-bottom: 36px;
}

.split-metrics > div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(240, 255, 254, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.split-metrics > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.split-metrics > div:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(29, 214, 193, 0.15);
  transform: translateX(6px);
}

.split-metrics > div:hover::before {
  opacity: 1;
}

.split-value {
  font-family: "Sora", sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  display: inline-block;
  transition: all 0.3s ease;
}

.split-metrics > div:hover .split-value {
  color: var(--accent-2);
  transform: scale(1.05);
}

.split-label {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
}

.split-foot {
  padding-top: 28px;
  border-top: 1px solid rgba(240, 255, 254, 0.1);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
}

/* Timeline (Flow section) */
.timeline {
  display: grid;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  padding: 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(24px);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(8px);
  box-shadow: var(--shadow);
}

.timeline-step {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bg-deep);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.timeline-item h3 {
  font-size: 1.375rem;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.flow-note {
  max-width: 900px;
  margin: 48px auto 0;
  padding: 24px 32px;
  background: rgba(29, 214, 193, 0.08);
  border: 1px solid rgba(29, 214, 193, 0.2);
  border-radius: 16px;
  font-size: 0.9375rem;
  color: var(--accent-2);
  line-height: 1.7;
  text-align: center;
}

/* Gallery section - horizontal scroll layout */
#gallery {
  position: relative;
}

#gallery .shell {
  position: relative;
  z-index: 1;
}

#gallery .section-header {
  margin-bottom: 64px;
}

/* Horizontal scroll container */
.gallery {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0 40px 0;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(29, 214, 193, 0.3) rgba(255, 255, 255, 0.05);
}

.gallery::-webkit-scrollbar {
  height: 8px;
}

.gallery::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.gallery::-webkit-scrollbar-thumb {
  background: rgba(29, 214, 193, 0.3);
  border-radius: 4px;
}

.gallery::-webkit-scrollbar-thumb:hover {
  background: rgba(29, 214, 193, 0.5);
}

/* Image groups without card container */
.gallery > div {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  scroll-snap-align: start;
  width: auto;
}

.gallery > div:hover {
  transform: none;
}

.gallery > div > img {
  width: 320px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: filter 0.3s ease;
  cursor: pointer;
  border-radius: 12px;
  background: transparent;
  padding: 0 20px 0 0;
  border: none;
  box-shadow: none;
}

.gallery > div:hover > img {
  filter: brightness(1.03);
}

.web-gallery > div > img {
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
}

.gallery > div .image-caption {
  padding: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.gallery > div:hover .image-caption {
  color: var(--accent-2);
}

.gallery > div .image-description {
  padding: 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.gallery > div:hover .image-description {
  opacity: 1;
}

/* Reduce width of reveal items once visible */
.gallery .reveal-on-scroll.is-visible {
  width: clamp(260px, 26vw, 320px);
}

/* Download section */
.download {
  padding: 100px 0 120px;
  position: relative;
}

.download .section-header {
  margin-bottom: 40px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: 360px;
  height: 108px;
  padding: 18px 22px;
  background: linear-gradient(180deg, rgba(6, 61, 69, 0.58), rgba(3, 22, 25, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(1, 8, 10, 0.28);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.store-badge-link:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 14px 26px rgba(1, 8, 10, 0.38));
  border-color: rgba(29, 214, 193, 0.3);
}

.store-cta-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-cta-icon svg {
  width: 100%;
  height: 100%;
}

.store-cta-copy {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.store-cta-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #d8e8e6;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.store-cta-title {
  font-family: "Sora", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffffff;
}

.download-support {
  margin-top: 22px;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--muted);
}

/* Footer */
.footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent 0%, rgba(4, 31, 36, 0.5) 100%);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
  transparent 0%,
  rgba(29, 214, 193, 0.3) 50%,
  transparent 100%);
}

/* Footer Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

/* Footer Brand Column */
.footer-brand .brand-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.footer-brand .brand-subtitle {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(29, 214, 193, 0.1);
  border: 1px solid rgba(29, 214, 193, 0.2);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Footer Columns */
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer-menu a:hover {
  color: var(--accent-2);
  transform: translateX(4px);
}

/* Social Media Icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
  background: rgba(29, 214, 193, 0.1);
  border-color: rgba(29, 214, 193, 0.3);
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(240, 255, 254, 0.05);
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}

.footer-partners {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-partners a {
  color: var(--text-secondary);
  font-weight: 600;
  transition: color 0.25s ease;
}

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

.footer-disclaimer {
  font-size: 0.8125rem;
  color: var(--muted-2);
  line-height: 1.7;
  margin: 0;
  max-width: 100%;
}

/* Reveal on scroll animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
  transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll offset for sticky nav */
section[id],
header[id] {
  scroll-margin-top: 120px;
}

/* Animations */
@keyframes auroraShift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  33% {
    transform: translate(2%, -3%) scale(1.05);
    opacity: 0.5;
  }
  66% {
    transform: translate(-3%, 2%) scale(0.95);
    opacity: 0.7;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .shell {
    padding: 0 24px;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .hero {
    padding: 100px 0 80px;
  }

  .section {
    padding: 80px 0;
  }

  .gallery {
    gap: 22px;
  }

  .gallery > div {
    flex: 0 0 280px;
    width: 280px;
  }
}

@media (max-width: 768px) {
  .nav-row {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px;
    padding: 6px;
  }

  .nav-links a {
    padding: 10px 14px;
    font-size: 0.875rem;
  }

  .hero {
    padding: 100px 0 80px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

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

  .btn-primary,
  .btn-ghost {
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-header.section-subhead {
    margin-top: 56px;
  }

  .cap-grid,
  .trust-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .timeline-step {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .store-badge-link {
    width: 100%;
    max-width: 420px;
    height: 100px;
    padding: 16px 20px;
  }

  .store-cta-title {
    font-size: 1.4rem;
  }

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

  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-partners {
    flex-wrap: wrap;
  }

  .shell {
    padding: 0 20px;
  }

  .gallery {
    gap: 18px;
  }

  .gallery > div {
    flex: 0 0 260px;
    width: 260px;
  }

  .gallery > div > img {
    padding: 16px 20px 16px 0;
  }
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 1.75rem;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .nav-links a {
    padding: 8px 12px;
    font-size: 0.8125rem;
  }

  .gallery {
    gap: 16px;
  }
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

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

  .bg-aurora {
    animation: none !important;
  }
}
