/* ============================================
   NEXIA — AI Insurance Platform
   Design: Dark futuristic, app-like, tech-forward
   ============================================ */

:root {
  --primary: #0D0D1A;
  --surface: #111127;
  --surface-2: #1a1a2e;
  --surface-3: #2a2a3e;
  --text: #e4e4e7;
  --text-dim: #71717a;
  --accent-1: #6366F1;
  --accent-2: #06B6D4;
  --gradient: linear-gradient(135deg, #6366F1, #06B6D4);
  --gradient-h: linear-gradient(90deg, #6366F1, #06B6D4);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-en: 'Sora', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: 80px;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.sp-only { display: none; }
@media (max-width: 768px) { .sp-only { display: inline; } }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(13, 13, 26, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
  padding: 10px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.02em;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s;
  font-family: var(--font-jp);
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  background: var(--gradient) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 500 !important;
  font-size: 13px !important;
  transition: opacity 0.3s, transform 0.3s !important;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 5px;
  transition: var(--transition);
}

.nav-toggle span:first-child { top: 11px; }
.nav-toggle span:last-child { top: 19px; }

.nav-toggle.active span:first-child {
  transform: rotate(45deg);
  top: 15px;
}

.nav-toggle.active span:last-child {
  transform: rotate(-45deg);
  top: 15px;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(13, 13, 26, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid var(--surface-3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 18px; }
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #6366F1 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #06B6D4 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #6366F1 0%, transparent 70%);
  top: 50%;
  left: 40%;
  opacity: 0.2;
  animation: orbFloat 14s ease-in-out infinite 2s;
}

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

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-2);
  font-family: var(--font-jp);
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #06B6D4;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
  font-family: var(--font-jp);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-sub strong {
  color: var(--accent-2);
  font-weight: 600;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
  font-family: var(--font-jp);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  padding: 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--surface-3);
  transition: var(--transition);
  font-family: var(--font-jp);
}

.btn-ghost:hover {
  color: #fff;
  border-color: rgba(99, 102, 241, 0.4);
  background: rgba(99, 102, 241, 0.05);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  text-align: left;
}

.stat-num {
  display: block;
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-unit {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-2);
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--surface-3);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mock {
  position: relative;
  width: 280px;
}

.phone-frame {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(99, 102, 241, 0.15));
  position: relative;
  z-index: 2;
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  z-index: 1;
}

/* Float cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--surface-3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  z-index: 3;
  animation: floatCard 4s ease-in-out infinite;
}

.float-card-1 {
  top: 25%;
  right: -40px;
  animation-delay: 0s;
}

.float-card-2 {
  bottom: 20%;
  left: -30px;
  animation-delay: 2s;
}

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

.fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fc-icon-check {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.fc-icon-ai {
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
}

.fc-title {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.fc-sub {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  font-family: var(--font-en);
}

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

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gradient);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

.scroll-indicator span {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ─── Tagline Section ─── */
.tagline-section {
  padding: 140px 0;
  position: relative;
}

.tagline-heading {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-bottom: 64px;
  letter-spacing: -0.03em;
}

.tagline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.tagline-card {
  background: var(--surface);
  border: 1px solid var(--surface-3);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.tagline-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-4px);
}

.tc-number {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.tc-icon {
  margin-bottom: 20px;
}

.tagline-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.tc-time {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.tc-highlight .tc-time {
  font-size: 48px;
}

.tagline-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
}

.tc-highlight {
  border-color: rgba(99, 102, 241, 0.3);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(6, 182, 212, 0.05));
}

.tc-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── How Section ─── */
.how-section {
  padding: 140px 0;
  position: relative;
}

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

.section-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent-2);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 500px;
  margin: 0 auto;
}

.how-pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.pipe-step {
  background: var(--surface);
  border: 1px solid var(--surface-3);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}

.pipe-step:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-4px);
}

.pipe-visual {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.pipe-circle {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.pipe-circle-active {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(6, 182, 212, 0.15));
  border-color: rgba(6, 182, 212, 0.3);
}

.pipe-step:hover .pipe-circle {
  border-color: rgba(6, 182, 212, 0.4);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(6, 182, 212, 0.12));
}

.pipe-num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.pipe-connector {
  margin-bottom: 20px;
  overflow: hidden;
}

.pipe-step h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.pipe-step p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 20px;
}

.pipe-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  background: var(--surface-2);
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}

.pipe-tag-accent {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(6, 182, 212, 0.15));
  color: var(--accent-2);
}

/* Tech bar */
.tech-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border: 1px solid var(--surface-3);
  border-radius: var(--radius);
  overflow: hidden;
}

.tech-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--surface-3);
}

.tech-item:last-child { border-right: none; }

.tech-val {
  display: block;
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.tech-label {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
}

/* ─── Reviews ─── */
.reviews-section {
  padding: 140px 0;
}

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

.review-card {
  background: var(--surface);
  border: 1px solid var(--surface-3);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}

.review-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-4px);
}

.review-card-featured {
  border-color: rgba(6, 182, 212, 0.3);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.04), rgba(6, 182, 212, 0.04));
}

.review-stars { margin-bottom: 20px; }

.review-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
}

.review-text em {
  font-style: normal;
  color: var(--accent-2);
  font-weight: 500;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, hsl(var(--hue, 250), 60%, 50%), hsl(calc(var(--hue, 250) + 40), 60%, 50%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.review-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.review-date {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
}

.review-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 0 0 8px 8px;
}

/* ─── Founder ─── */
.founder-section {
  padding: 140px 0;
}

.founder-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
}

.founder-frame {
  position: relative;
}

.founder-abstract {
  width: 100%;
  height: auto;
  border-radius: 24px;
  overflow: hidden;
}

.founder-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  margin-top: 16px;
}

.founder-role {
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--accent-2);
  margin-bottom: 32px;
}

.founder-quote {
  font-size: 16px;
  line-height: 2;
  color: var(--text);
  border-left: 2px solid;
  border-image: var(--gradient) 1;
  padding-left: 24px;
  margin-bottom: 40px;
}

.founder-quote em {
  font-style: normal;
  color: var(--accent-2);
  font-weight: 500;
}

.founder-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ft-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 14px 0;
  border-left: 1px solid var(--surface-3);
  padding-left: 20px;
  position: relative;
}

.ft-item::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--surface-3);
}

.ft-item-current::before {
  background: var(--accent-2);
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
}

.ft-year {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-2);
  flex-shrink: 0;
  width: 40px;
}

.ft-event {
  font-size: 14px;
  color: var(--text-dim);
}

.ft-item-current .ft-event { color: var(--text); }

/* ─── CTA ─── */
.cta-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #6366F1 0%, transparent 70%);
  top: -200px;
  left: -100px;
  opacity: 0.25;
}

.cta-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #06B6D4 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  opacity: 0.2;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-content > p {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-form-wrap {
  margin-bottom: 32px;
}

.cta-input-group {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--surface-3);
  border-radius: 100px;
  padding: 6px;
  transition: border-color 0.3s;
}

.cta-input-group:focus-within {
  border-color: rgba(99, 102, 241, 0.5);
}

.cta-input-icon {
  display: flex;
  align-items: center;
  padding-left: 16px;
}

.cta-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 15px;
  padding: 12px;
  font-family: var(--font-jp);
}

.cta-input::placeholder {
  color: var(--text-dim);
}

.cta-submit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  font-family: var(--font-jp);
  white-space: nowrap;
}

.cta-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-dim);
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--surface-3);
  padding: 60px 0 32px;
}

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

.footer-brand {
  max-width: 260px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 12px;
}

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

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}

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

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

.footer-info p,
.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

/* ─── Animations ─── */
[data-anim] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-anim="fade-left"] {
  transform: translateX(40px);
}

[data-anim="fade-right"] {
  transform: translateX(-40px);
}

[data-anim].visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text { order: 1; }
  .hero-visual { order: 0; margin-bottom: 20px; }

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

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

  .founder-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .founder-frame {
    max-width: 320px;
    margin: 0 auto;
  }
}

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

  .how-pipeline {
    grid-template-columns: 1fr;
  }

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

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

  .tech-item:nth-child(2) { border-right: none; }

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

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .phone-mock { width: 220px; }

  .float-card { display: none; }

  .cta-input-group {
    flex-direction: column;
    border-radius: var(--radius);
    gap: 0;
  }

  .cta-input-icon { display: none; }

  .cta-input {
    padding: 16px;
    text-align: center;
  }

  .cta-submit {
    border-radius: var(--radius-sm);
    justify-content: center;
    width: 100%;
    padding: 14px;
  }

  .footer-top {
    flex-direction: column;
  }

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

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

  .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; }
  .tagline-section,
  .how-section,
  .reviews-section,
  .founder-section,
  .cta-section {
    padding: 80px 0;
  }
}
