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

:root {
  --bg-void: #0e0a1a;
  --bg-deep: #130f1f;
  --bg-surface: #1a1528;
  --bg-raised: #221d32;
  --border: rgba(139, 108, 239, 0.12);
  --border-bright: rgba(139, 108, 239, 0.3);
  --text-bright: #f4f0ff;
  --text-primary: #e0dae8;
  --text-secondary: #9d93b0;
  --text-muted: #6b6080;
  --violet: #8b6cef;
  --violet-bright: #a78bfa;
  --violet-glow: rgba(139, 108, 239, 0.15);
  --gold: #f0a030;
  --gold-bright: #fbb040;
  --gold-glow: rgba(240, 160, 48, 0.2);
  --rose: #e87c8a;
  --green: #34d399;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.5;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: var(--sans); }

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

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}
@keyframes orbitSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== BUTTONS ========== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #1a0e00;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 24px var(--gold-glow), 0 1px 3px rgba(0,0,0,0.3);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}
.btn-gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--gold-glow), 0 2px 8px rgba(0,0,0,0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: transparent;
  color: var(--violet-bright);
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-bright);
  transition: all 0.3s var(--ease);
}
.btn-ghost:hover {
  border-color: var(--violet);
  background: var(--violet-glow);
  transform: translateY(-2px);
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(14, 10, 26, 0.6);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  animation: fadeIn 1s var(--ease);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { height: 36px; }
.nav-brand span { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--text-bright); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--violet);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text-bright); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .btn-ghost { padding: 10px 20px; font-size: 14px; }
.nav-actions .btn-gold { padding: 10px 24px; font-size: 14px; }

/* ========== SECTION UTILS ========== */
.section { padding: 120px 0; position: relative; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--violet-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--violet-bright);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(160deg, #fff 20%, var(--violet-bright) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
body.oracleflow-home .hero {
  background: transparent;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { animation: fadeUp 1s var(--ease) 0.3s both; }
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 24px;
  background: linear-gradient(160deg, #ffffff 10%, #e0d0ff 50%, var(--violet-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  -webkit-text-fill-color: var(--violet-bright);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.social-proof { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.avatar-stack { display: flex; }
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: #fff;
  border: 2px solid var(--bg-void);
  margin-left: -8px;
  transition: transform 0.3s var(--ease);
}
.avatar:first-child { margin-left: 0; }
.avatar:hover { transform: scale(1.15) translateY(-2px); z-index: 2; }
.avatar-l { background: linear-gradient(135deg, var(--violet), #6c4fcf); }
.avatar-r { background: linear-gradient(135deg, var(--rose), #c95a6a); }
.avatar-c { background: linear-gradient(135deg, var(--gold), #d08020); }
.avatar-e { background: linear-gradient(135deg, var(--green), #20a070); }
.social-proof-text { font-size: 14px; color: var(--text-secondary); }

.trust-badges { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
  padding: 8px 16px;
  background: rgba(139, 108, 239, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}
.trust-badge svg { width: 15px; height: 15px; color: var(--violet-bright); flex-shrink: 0; }

/* Media gallery */
.hero-media { animation: fadeUp 1s var(--ease) 0.6s both; position: relative; }
.media-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-deep);
  aspect-ratio: 16/10;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 80px rgba(139, 108, 239, 0.08);
}
.media-main video, .media-main img { width: 100%; height: 100%; object-fit: cover; }
.media-thumbs { display: flex; gap: 10px; margin-top: 14px; }
.media-thumb {
  width: 68px; height: 48px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  opacity: 0.45;
  position: relative;
}
.media-thumb.active { border-color: var(--violet); opacity: 1; box-shadow: 0 0 16px rgba(139,108,239,0.3); }
.media-thumb:hover { opacity: 0.8; transform: scale(1.05); }
.media-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ========== WHAT YOU GET ========== */
.get-section {
  background: var(--bg-deep);
  position: relative;
}
.get-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  opacity: 0.3;
}
.get-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
  margin-bottom: 44px;
}
.get-card {
  background: linear-gradient(170deg, var(--bg-surface) 0%, var(--bg-raised) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.get-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(139,108,239,0.04) 0%, transparent 60%);
  transition: opacity 0.4s;
  opacity: 0;
}
.get-card:hover::before { opacity: 1; }
.get-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-bright);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(139,108,239,0.08);
}
.get-badge {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 22px; font-weight: 700; color: #fff;
  margin-bottom: 24px;
}
.get-badge-gold { background: linear-gradient(135deg, var(--gold), #d08020); box-shadow: 0 4px 16px var(--gold-glow); }
.get-badge-violet { background: linear-gradient(135deg, var(--violet), #6c4fcf); box-shadow: 0 4px 16px var(--violet-glow); }
.get-card h3 {
  font-family: var(--serif); font-size: 26px; font-weight: 600;
  color: var(--text-bright); margin-bottom: 20px;
}
.get-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.get-card li {
  font-size: 15px; color: var(--text-secondary);
  padding-left: 28px; position: relative; line-height: 1.5;
}
.get-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 12px; height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--violet-glow), var(--violet));
  opacity: 0.5;
}
.get-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== HOW IT WORKS ========== */
.steps-section { position: relative; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
  position: relative;
}
/* Connecting line */
.steps-line {
  position: absolute;
  top: 68px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--violet-bright), var(--violet), transparent);
  opacity: 0.25;
  z-index: 0;
}
.step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s var(--ease);
  position: relative;
  z-index: 1;
}
.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--violet);
  box-shadow: 0 20px 60px rgba(139,108,239,0.12), 0 0 1px var(--violet);
}
.step-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--violet-glow);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s;
}
.step-card:hover .step-icon { background: rgba(139,108,239,0.25); }
.step-icon svg { width: 26px; height: 26px; color: var(--violet-bright); }
.step-card h3 {
  font-family: var(--serif); font-size: 24px; font-weight: 600;
  color: var(--text-bright); margin-bottom: 12px;
}
.step-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* ========== WHO USES ========== */
.who-section { background: var(--bg-deep); }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  margin-top: 52px;
}
.who-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.who-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-bright);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.who-card.tall { grid-row: span 2; }
.who-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.who-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.who-icon svg { width: 24px; height: 24px; }
.who-icon-violet { background: var(--violet-glow); color: var(--violet-bright); }
.who-icon-gold { background: var(--gold-glow); color: var(--gold); }
.who-icon-rose { background: rgba(232, 124, 138, 0.15); color: var(--rose); }
.who-icon-green { background: rgba(52, 211, 153, 0.15); color: var(--green); }
.who-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--text-bright); }
.who-card > p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 20px; }
.who-quote {
  font-style: italic; font-size: 14px; color: var(--text-muted);
  padding: 16px;
  background: rgba(139,108,239,0.05);
  border-radius: 12px;
  border-left: 3px solid var(--violet);
  line-height: 1.65;
  margin-top: auto;
}
.who-quote-author {
  font-style: normal; display: block; margin-top: 10px;
  color: var(--violet-bright); font-family: var(--serif); font-size: 15px; font-weight: 600;
}

/* ========== FEATURES BENTO ========== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.bento-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s var(--ease);
  overflow: hidden;
  position: relative;
}
.bento-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.bento-card:hover::after { opacity: 0.5; }
.bento-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-bright);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.bento-card h3 {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  color: var(--text-bright); margin-bottom: 10px;
}
.bento-card > p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.bento-visual {
  height: 170px;
  background: var(--bg-raised);
  border-radius: 12px;
  overflow: hidden;
}
.bento-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ========== FOUNDER ========== */
.founder-section { background: var(--bg-deep); }
.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  margin-top: 52px;
  align-items: center;
}
.founder-visual-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.founder-visual {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-surface);
}
.founder-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-name {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
  color: var(--text-bright);
  text-align: center;
}
.founder-text h3 {
  font-family: var(--serif); font-size: 30px; font-weight: 400;
  color: var(--text-bright); margin-bottom: 28px; line-height: 1.3;
  background: linear-gradient(135deg, var(--text-bright), var(--violet-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.founder-points { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.founder-points li {
  font-size: 16px; color: var(--text-secondary);
  padding-left: 36px; position: relative; line-height: 1.6;
}
.founder-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--violet);
  background: var(--violet-glow);
}

/* ========== TESTIMONIALS ========== */
.testimonials-screenshots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
  margin-bottom: 40px;
}
.testimonial-screenshot {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}
.testimonial-screenshot:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.testimonial-screenshot img { width: 100%; height: auto; }
.testimonials-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.quote-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all 0.4s var(--ease);
}
.quote-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-bright);
}
.quote-mark {
  font-family: var(--serif); font-size: 80px;
  color: var(--violet); opacity: 0.15;
  line-height: 1; position: absolute;
  top: 12px; left: 24px;
}
.quote-card blockquote {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.75; margin-bottom: 18px;
  position: relative; z-index: 1;
}
.quote-author {
  font-family: var(--serif); font-size: 17px;
  color: var(--violet-bright); font-weight: 600;
}

/* ========== FAQ ========== */
.faq-section { background: var(--bg-deep); }
.faq-list {
  max-width: 720px;
  margin: 52px auto 0;
  display: flex; flex-direction: column; gap: 14px;
}
.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq-item:hover { border-color: var(--border-bright); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  background: none;
  color: var(--text-bright);
  font-size: 16px; font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.faq-question:hover { color: var(--violet-bright); }
.faq-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--violet-glow);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.faq-icon svg { width: 14px; height: 14px; color: var(--violet-bright); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--violet); }
.faq-item.open .faq-icon svg { color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 15px; color: var(--text-secondary); line-height: 1.75;
}

/* ========== FINAL CTA ========== */
.final-cta { padding: 120px 0; }
.final-cta-card {
  background: linear-gradient(170deg, var(--bg-surface) 0%, var(--bg-raised) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-card::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(139,108,239,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite;
}
.final-cta-card::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -120px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(240,160,48,0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out 2s infinite;
}
.final-cta-card .section-title { margin-bottom: 16px; }
.final-cta-card .section-title em { -webkit-text-fill-color: var(--violet-bright); font-style: italic; }
.final-cta-card .section-sub { margin: 0 auto 40px; text-align: center; }
.final-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 28px; }
.footer-brand span { font-family: var(--serif); font-size: 20px; color: var(--text-bright); font-weight: 600; }
.footer-tagline { font-size: 14px; color: var(--text-muted); font-style: italic; font-family: var(--serif); font-size: 16px; }
.footer-col h4 {
  font-family: var(--serif); font-size: 16px;
  color: var(--text-bright); font-weight: 600; margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--sans); font-size: 12px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--text-secondary); transition: color 0.3s; }
.footer-col a:hover { color: var(--violet-bright); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: var(--text-muted); transition: color 0.3s; }
.footer-legal a:hover { color: var(--violet-bright); }

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: auto; padding: 120px 0 60px; }
  .get-cards { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-line { display: none; }
  .who-grid { grid-template-columns: 1fr; }
  .who-card.tall { grid-row: span 1; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .testimonials-screenshots { grid-template-columns: 1fr; }
  .testimonials-quotes { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .container { padding: 0 16px; }
  .hero { padding-top: 100px; }
  body.oracleflow-home .hero { background: transparent; }
  .hero-headline { font-size: 34px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-gold, .hero-ctas .btn-ghost { width: 100%; justify-content: center; }
  .trust-badges { flex-direction: column; gap: 10px; }
  .bento-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .final-cta-card { padding: 48px 24px; }
  .final-ctas { flex-direction: column; }
  .final-ctas .btn-gold, .final-ctas .btn-ghost { width: 100%; justify-content: center; }
  .get-ctas { flex-direction: column; align-items: stretch; }
}
