/* ═════════════════════════════════════════════════════════
   J3 OS — Premium Google-Sans Minimal Light Stylesheet
   (Clean Typography Edition - No Bold Font Weights)
   ═════════════════════════════════════════════════════════ */

/* ── Fonts & Variables ── */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,slnt,wdth,wght@8..144,-10..0,25..150,300..500&display=swap');

:root {
  --font-heading: 'Google Sans Flex', 'Google Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Google Sans Flex', 'Google Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Color Palette (Minimalist Light Mode) */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  
  --color-purple: #10b981;
  --color-cyan: #06b6d4;
  --color-indigo: #4f46e5;
  --color-blue: #3b82f6;
  --color-rose: #f43f5e;
  --color-emerald: #10b981;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(0, 0, 0, 0.05);
  --glass-border-hover: rgba(0, 0, 0, 0.1);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --container-width: 1200px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-purple);
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400; /* Clean normal weight */
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Background Grid Overlay */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(15, 23, 42, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.012) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center top;
  pointer-events: none;
  z-index: 1;
}

/* Ambient Cursor Follower Glow */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.025) 0%, rgba(6, 182, 212, 0.01) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 0.3s ease;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* Utility Containers */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.12);
  color: var(--color-purple);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #00c2ff 0%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Classy Section Divider Lines */
.classy-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.04) 50%, rgba(15, 23, 42, 0) 100%);
  margin: 0;
}

/* Pill Buttons */
.btn-primary, .btn-outline, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 400;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: #0f172a;
  color: #ffffff;
  border: 1px solid #0f172a;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
  padding: 0.75rem 1.6rem;
}

.btn-primary:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.18);
  background: #1e293b;
  border-color: #1e293b;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.75rem 1.6rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.btn-outline:hover {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-1.5px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: none;
  padding: 0.75rem 1.4rem;
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.025);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
}

/* Scroll reveal class */
.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.active {
  opacity: 1;
  transform: translateY(0);
}


/* ── Navbar ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
}

.logo-svg {
  display: inline-block;
  transition: transform 0.4s ease;
}

.nav-logo:hover .logo-svg {
  transform: scale(1.08) rotate(5deg);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 400;
}

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

/* Nav Item Dropdown Layout styling (full-width) */
.nav-item-dropdown {
  position: static;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.dropdown-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--text-secondary);
  transition: transform 0.25s ease;
}

.nav-item-dropdown:hover .dropdown-caret {
  transform: rotate(180deg);
  border-top-color: var(--text-primary);
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(12px);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2.2rem 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mega-dropdown.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-dropdown-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 4rem;
}

.mega-left-panel {
  width: 32%;
  border-right: 1px solid rgba(15, 23, 42, 0.08);
  padding-right: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mega-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.mega-tagline {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.3;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.mega-right-links {
  width: 68%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.mega-link {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.mega-link:hover {
  background: rgba(15, 23, 42, 0.03);
}

.mega-link-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
}

.mega-link-desc {
  font-size: 0.7rem;
  color: #64748b;
  line-height: 1.3;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-hamburger {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--glass-border);
  flex-direction: column;
  padding: 1.5rem;
  gap: 1.2rem;
}

.nav-mobile a {
  font-size: 1.1rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  font-weight: 400;
}


/* ── Hero Section (Full-Screen WebGL Keynote Workspace) ── */
.hero {
  position: relative;
  height: calc(100vh - 80px);
  min-height: 550px;
  display: flex;
  align-items: stretch;
  padding: 0;
  z-index: 2;
  overflow: hidden;
  background-color: #ffffff;
}

/* Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
  animation: orbDrift 20s infinite alternate ease-in-out;
}

.hero-orb-1 {
  top: 15%;
  left: 10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(99,102,241,0.5) 0%, rgba(6,182,212,0.4) 50%, transparent 100%);
  animation-duration: 25s;
}

.hero-orb-2 {
  bottom: 10%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236,72,153,0.4) 0%, rgba(245,158,11,0.3) 60%, transparent 100%);
  animation-duration: 30s;
}

.hero-orb-3 {
  top: 25%;
  left: 50%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16,185,129,0.35) 0%, rgba(99,102,241,0.2) 70%, transparent 100%);
  animation-duration: 20s;
}

@keyframes orbDrift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.05); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

.world-map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.008) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.hero-container-wide {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  z-index: 2;
  position: relative;
}

.hero-top-header {
  text-align: center;
  max-width: 980px;
  margin: 60px auto 0.5rem auto;
}

.hero-title {
  font-size: 4.4rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 300;
  color: var(--text-primary);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 820px;
  margin: 1rem auto 0 auto;
  font-weight: 400;
}

.text-gradient {
  background: linear-gradient(135deg, #00c2ff 0%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  display: inline-block;
  padding-right: 0.08em;
}

.brand-gradient {
  background: linear-gradient(135deg, #00c2ff 0%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding-right: 0.08em;
}

.logo-text-wrapper {
  display: inline-flex;
  align-items: center;
  letter-spacing: -0.02em;
}

.hero-bottom-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-workflow-wide {
  width: 780px;
  height: 347px;
  position: relative;
  background: transparent;
  margin-top: -1.5rem;
}

.hero-workflow-wide canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Static wire lines */
.wire-base {
  stroke: rgba(15, 23, 42, 0.035);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
}

/* Animating glowing paths */
.wire-glow {
  stroke-width: 3.5;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 24 160;
  filter: drop-shadow(0 0 4px rgba(139, 92, 246, 0.15));
}

.wire-j3-meta {
  animation: flowWires 4s linear infinite;
}

.wire-j3-google {
  animation: flowWires 4.5s linear infinite;
}

.wire-meta-globe {
  animation: flowWires 3.6s linear infinite;
}

.wire-google-globe {
  animation: flowWires 4.2s linear infinite;
}

@keyframes flowWires {
  0% {
    stroke-dashoffset: 184;
  }
  100% {
    stroke-dashoffset: -184;
  }
}

/* Workflow HTML Nodes overlay */
.wf-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 5;
  cursor: default;
}

.node-icon-wrapper {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
  transition: var(--transition-smooth);
}

.wf-node:hover .node-icon-wrapper {
  transform: scale(1.08);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
}

.node-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: absolute;
  bottom: -32px;
  white-space: nowrap;
}

/* Node glowing properties */
.purple-glow {
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.15), 0 4px 10px rgba(0,0,0,0.02);
  border-color: rgba(34, 197, 94, 0.18);
}

.blue-glow {
  box-shadow: 0 0 15px rgba(0, 100, 224, 0.1), 0 4px 10px rgba(0,0,0,0.02);
  border-color: rgba(0, 100, 224, 0.12);
}

.multi-glow {
  box-shadow: 0 0 15px rgba(66, 133, 244, 0.08), 0 4px 10px rgba(0,0,0,0.02);
  border-color: rgba(66, 133, 244, 0.1);
}

.wf-logo {
  font-size: 3.2rem;
  color: var(--color-purple);
  line-height: 1;
}

/* Globe wrapper container inside node workflow grid */
.globe-canvas-wrapper {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 4;
  border-radius: 50%;
  overflow: hidden;
  background-image: url('earth.jpg');
  background-size: 104% 104%;
  background-position: center;
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
}

#heroCanvas {
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
}


/* ── Features Bento Grid ── */
.features-section {
  padding: 100px 0;
  position: relative;
  z-index: 3;
}

.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1.5rem;
}

.bento-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.12);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.bc-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.bento-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
}

.bento-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 400;
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-medium {
  grid-column: span 1;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-small {
  grid-column: span 1;
  grid-row: span 1;
}

.bc-visual {
  margin-top: 1.5rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DNA Graphic Visual */
.dna-viz {
  position: relative;
  width: 100%;
  height: 150px;
  background: #f8fafc;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 12px;
  overflow: hidden;
}

.dna-node {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  transition: var(--transition-fast);
}

.dna-node:hover {
  transform: scale(1.1);
  border-color: var(--color-purple);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.12);
}

.dna-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Bid Meter Visual */
.bid-meter {
  background: rgba(0,0,0,0.015);
  border: 1px solid rgba(0,0,0,0.03);
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1.2rem;
}

.bm-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.bm-bar-bg {
  height: 8px;
  background: rgba(0,0,0,0.03);
  border-radius: 10px;
  margin-bottom: 0.4rem;
  overflow: hidden;
}

.bm-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #00c2ff, #22c55e);
  border-radius: 10px;
}

.bm-value {
  font-size: 0.8rem;
  font-weight: 500;
  color: #22c55e;
}

/* Prediction gauge */
.prediction-gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1.2rem;
}

.gauge-svg {
  width: 110px;
  height: 65px;
}

.gauge-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.4rem;
  font-weight: 500;
}

/* Attribution list */
.attr-pills {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.2rem;
  width: 100%;
}

.attr-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.015);
  border: 1px solid rgba(0,0,0,0.03);
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
  font-size: 0.85rem;
}

.ap-platform-svg {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ap-platform-svg.organic {
  border-radius: 4px;
  background: #e2e8f0;
  color: var(--text-secondary);
  font-size: 0.7rem;
  font-weight: 500;
}

.ap-pct {
  font-weight: 500;
  color: var(--text-primary);
}


/* ── Pricing Section ── */
.pricing-section {
  padding: 100px 0;
  position: relative;
  z-index: 3;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.price-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-smooth);
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 0, 0, 0.12);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.03);
}

.price-card.featured {
  border-color: var(--color-purple);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.08);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.01) 0%, transparent 100%), var(--glass-bg);
}

.pc-popular {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.72rem;
  background: var(--color-purple);
  color: #fff;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pc-plan {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.pc-price {
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.pc-currency {
  font-size: 1.8rem;
  font-weight: 400;
  vertical-align: super;
  margin-right: 0.15rem;
}

.pc-amount {
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 1;
}

.pc-per {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pc-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2.2rem;
}

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-bottom: 2.8rem;
  text-align: left;
}

.pc-features li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pc-features li strong {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
}

.pc-features li .feat-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  line-height: 1.4;
}

.pc-perfect {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.pc-perfect strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.price-card .btn-primary {
  width: 100%;
}


/* ── Footer ── */
.footer {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding: 6rem 0 3rem 0;
  position: relative;
  z-index: 3;
}

.footer-top-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.ftl-left {
  width: 40%;
}

.ftl-tagline {
  font-family: var(--font-body);
  font-size: 1.65rem;
  font-weight: 400;
  color: #0f172a;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.ftl-right {
  width: 48%;
  display: flex;
  gap: 6rem;
}

.ftl-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.ftl-col a {
  text-decoration: none;
  font-size: 0.92rem;
  color: #64748b;
  font-weight: 500;
  transition: color 0.2s ease;
}

.ftl-col a:hover {
  color: #0f172a;
}

.footer-giant-logo-container {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  margin-bottom: 2rem;
}

.footer-giant-logo {
  font-family: var(--font-heading);
  font-size: 11.5vw;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: #0f172a;
  padding-bottom: 1rem;
  user-select: none;
}

.footer-bottom-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fbl-right {
  display: flex;
  gap: 2rem;
}

.fbl-right a {
  text-decoration: none;
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 500;
  transition: color 0.2s ease;
}

.fbl-right a:hover {
  color: #0f172a;
}


/* ── Cinematic Zero-Gravity Floating & Pulsing Animations ── */
@keyframes float1 {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  50% { transform: translateY(-40px) scale(1.05) rotate(5deg); }
  100% { transform: translateY(0) scale(1) rotate(0deg); }
}
@keyframes float2 {
  0% { transform: translateY(0) scale(1.02) rotate(0deg); }
  50% { transform: translateY(-30px) scale(0.98) rotate(-8deg); }
  100% { transform: translateY(0) scale(1.02) rotate(0deg); }
}
@keyframes float3 {
  0% { transform: translateY(0) scale(0.97) rotate(0deg); }
  50% { transform: translateY(-50px) scale(1.03) rotate(12deg); }
  100% { transform: translateY(0) scale(0.97) rotate(0deg); }
}
@keyframes pulseOuter {
  0% { transform: scale(0.95); opacity: 0.2; }
  50% { transform: scale(1.05); opacity: 0.6; }
  100% { transform: scale(0.95); opacity: 0.2; }
}
@keyframes pulseButton {
  0% { box-shadow: 0 10px 25px rgba(0,194,255,0.25); }
  50% { box-shadow: 0 10px 35px rgba(0,194,255,0.45); transform: scale(1.02); }
  100% { box-shadow: 0 10px 25px rgba(0,194,255,0.25); }
}

/* ── Responsive Styling (Media Queries) ── */
@media (max-width: 1100px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .features-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bento-large {
    grid-column: span 2;
  }
  
  .bento-medium {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .hero-container-wide {
    padding-top: 80px;
  }
  
  .hero-workflow-wide {
    width: 900px;
    height: 400px;
    transform: scale(0.53);
    transform-origin: top center;
    margin-top: 1.5rem;
    margin-bottom: -188px;
    overflow: visible;
  }
  
  #heroCanvas {
    transform: none !important;
    width: 900px;
    height: 400px;
  }
  
  .wf-node {
    /* Retain only absolute layout translate; scaling is handled by parent */
    transform: translate(-50%, -50%) !important;
  }
}

@media (max-width: 600px) {
  .hero-workflow-wide {
    transform: scale(0.35);
    transform-origin: top center;
    margin-top: 1rem;
    margin-bottom: -260px;
  }
}

@media (max-width: 860px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .footer-top-layout {
    flex-direction: column;
    gap: 3rem;
  }
  
  .ftl-left, .ftl-right {
    width: 100% !important;
  }
  
  .ftl-right {
    gap: 3.5rem;
  }
  
  .footer-giant-logo {
    font-size: 15vw !important;
    padding-bottom: 0.5rem;
  }
  
  .footer-bottom-layout {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
  }

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

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  
  .nav-hamburger {
    display: flex;
  }
  
  .nav-mobile.active {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .hero-cta .btn-lg {
    width: 100%;
  }
  
  .features-bento {
    grid-template-columns: 1fr;
  }
  
  .bento-large {
    grid-column: span 1;
  }
}

/* ── SCROLLYTELLING TARGETING SECTION (LINEAR TIMELINE PATH) ── */
.scrolly-linear-section {
  padding: 8rem 0;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.linear-container {
  display: flex;
  flex-direction: column;
  gap: 12rem;
  position: relative;
}

/* Vertical Track in Center */
.linear-track {
  position: absolute;
  left: 50%;
  top: 2rem;
  bottom: 2rem;
  width: 4px;
  background: rgba(15, 23, 42, 0.04);
  transform: translateX(-50%);
  z-index: 1;
}

/* Moving and Rotating Green Person */
.moving-person {
  position: absolute;
  left: 50%;
  top: 0%; /* updated by js */
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #22c55e;
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.35), inset 0 0 10px rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) rotate(0deg);
  z-index: 10;
  pointer-events: none;
  transition: transform 0.15s linear, top 0.15s cubic-bezier(0.1, 0.8, 0.2, 1);
}

/* Milestones along the track */
.linear-milestone {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  opacity: 0.15;
  transform: scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.linear-milestone.active {
  opacity: 1;
  transform: scale(1);
}

/* Milestone Columns */
.lm-visual {
  width: 42%;
  display: flex;
  justify-content: center;
}

.lm-text {
  width: 42%;
}

/* Visual Cards inside Milestones */
.visual-card-linear {
  width: 100%;
  max-width: 380px;
  height: 220px;
  background: #090d16;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.2rem 1.5rem;
  box-sizing: border-box;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.vcl-header {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
  width: 100%;
}

/* Milestone 1: Behavioral Console logs */
.console-body {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: monospace;
}

.log-line {
  font-size: 0.72rem;
  display: flex;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: translateY(3px);
  animation: logSlideInLinear 0.3s ease forwards;
}

.log-time {
  color: #00c2ff;
}

.log-line.highlight {
  color: #22c55e;
  font-weight: bold;
}

.linear-milestone.active #consoleLogs .log-line:nth-child(1) { animation-delay: 0.1s; }
.linear-milestone.active #consoleLogs .log-line:nth-child(2) { animation-delay: 0.3s; }
.linear-milestone.active #consoleLogs .log-line:nth-child(3) { animation-delay: 0.5s; }

@keyframes logSlideInLinear {
  to { opacity: 1; transform: translateY(0); }
}

/* Milestone 2: Intent Calibration Gauge */
.intent-gauge-container-linear {
  position: relative;
  width: 170px;
  height: 170px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intent-gauge-svg-linear {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.gauge-fill-linear {
  transition: stroke-dashoffset 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.linear-milestone.active #gaugeCircle {
  stroke-dashoffset: 25 !important; /* 94% circular fill */
}

.gauge-center-text-linear {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gauge-val-linear {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #ffffff;
}

.gauge-lbl-linear {
  font-size: 0.55rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Milestone 3: Radar Sweep Map */
.radar-screen-linear {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.95) 100%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.radar-sweep-conic {
  position: absolute;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg, rgba(34, 197, 94, 0.12) 0%, transparent 50%, transparent 100%);
  border-radius: 50%;
  animation: rotateSweepConic 4s infinite linear;
  transform-origin: center;
}

@keyframes rotateSweepConic {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.radar-grid-circle {
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.02);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radar-grid-circle.rgc1 { width: 50%; height: 50%; }
.radar-grid-circle.rgc2 { width: 90%; height: 90%; }

.radar-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #00c2ff;
  border-radius: 50%;
  box-shadow: 0 0 6px #00c2ff;
  opacity: 0;
  animation: dotFadeLinear 3s infinite ease-out;
}

.radar-dot.dot1 { top: 20%; left: 35%; animation-delay: 0.5s; }
.radar-dot.dot2 { top: 65%; left: 70%; animation-delay: 1.8s; }

@keyframes dotFadeLinear {
  0%, 100% { opacity: 0; }
  40% { opacity: 1; }
  80% { opacity: 0; }
}

.radar-info-box-linear {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.8rem;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .linear-track {
    left: 2rem;
    transform: none;
  }
  
  .moving-person {
    left: 2rem !important;
    width: 48px;
    height: 48px;
  }
  
  .linear-container {
    gap: 6rem;
  }
  
  .linear-milestone {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 5rem;
    gap: 2.2rem;
  }

  .lm-visual, .lm-text {
    width: 100% !important;
  }
}

/* Milestone Typography Styles */
.step-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #22c55e;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}

.step-title {
  font-size: 2.0rem;
  font-weight: 600;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #00c2ff 0%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.25;
  margin-bottom: 1.0rem;
  letter-spacing: -0.02em;
  display: inline-block;
  padding-right: 0.08em;
}

.step-desc {
  font-size: 1.0rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
}

@media (max-width: 600px) {
  .section-title {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
  }
  .step-title {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
  }
  .hero-title {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
  }
  .container {
    padding: 0 1.2rem !important;
  }
  .linear-track {
    left: 1.2rem !important;
  }
  .moving-person {
    left: 1.2rem !important;
  }
  .linear-milestone {
    padding-left: 3.2rem !important;
  }
}

/* ── Use Cases Explorer Section ── */
.use-cases-explorer-section {
  padding: 8rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.explorer-wrapper {
  display: flex;
  gap: 5rem;
  align-items: center;
  min-height: 520px;
  position: relative;
}

/* Sidebar Tab list (Antigravity pill style) */
.explorer-sidebar {
  width: 240px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 10;
}

.explorer-tab {
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(15, 23, 42, 0.04);
  border-radius: 30px;
  padding: 0.9rem 1.6rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  box-sizing: border-box;
}

.explorer-tab .tab-icon {
  font-size: 1.1rem;
  opacity: 0.7;
}

.explorer-tab:hover {
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
}

.explorer-tab.active {
  background: #ffffff;
  border: 1.5px solid #0f172a;
  color: #0f172a;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  font-weight: 600;
}

/* Center Stage Content Area */
.explorer-content-stage {
  flex: 1;
  height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: radial-gradient(circle at center, #ffffff 0%, rgba(248, 250, 252, 0.4) 100%);
  border: 1px solid rgba(15, 23, 42, 0.02);
  padding: 3rem;
  box-sizing: border-box;
  overflow: hidden;
}

/* Particle Rings Background Graphics (Google Antigravity-style) */
.particle-rings-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-ring {
  position: absolute;
  border: 1px dashed rgba(0, 194, 255, 0.16);
  border-radius: 50%;
  animation: rotateRingParticles 45s infinite linear;
}

.p-ring.pr1 {
  width: 320px;
  height: 320px;
  top: 10%;
  border-color: rgba(0, 194, 255, 0.12);
  animation-duration: 40s;
}

.p-ring.pr2 {
  width: 280px;
  height: 280px;
  bottom: 8%;
  left: 10%;
  border-color: rgba(34, 197, 94, 0.12);
  animation-duration: 50s;
  animation-direction: reverse;
}

.p-ring.pr3 {
  width: 290px;
  height: 290px;
  bottom: 8%;
  right: 10%;
  border-color: rgba(0, 194, 255, 0.12);
  animation-duration: 45s;
}

@keyframes rotateRingParticles {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Use Case Content Cards */
.use-case-card {
  position: absolute;
  max-width: 580px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: scale(0.95) translateY(10px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
}

.use-case-card.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.case-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.case-desc {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 2rem;
}

.btn-case-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  color: #ffffff;
  padding: 0.75rem 1.8rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08);
}

.btn-case-explore:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.mega-overview-btn:hover {
  background: #1e293b !important;
}

/* Explorer Responsive adjustments */
@media (max-width: 960px) {
  .explorer-wrapper {
    flex-direction: column;
    gap: 3rem;
  }
  .explorer-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .explorer-tab {
    width: auto;
  }
  .explorer-content-stage {
    width: 100%;
    height: 420px;
    padding: 2rem;
  }
  .case-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 600px) {
  .explorer-tab {
    padding: 0.7rem 1.2rem;
    font-size: 0.82rem;
  }
  .explorer-content-stage {
    height: 380px;
  }
  .case-title {
    font-size: 2.0rem;
  }
  .case-desc {
    font-size: 0.95rem;
  }
}

/* Deep-Dive Case Details View Styles */
.case-overview {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.3s ease;
}

.case-detail-deepdive {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  width: 100%;
  text-align: left;
  box-sizing: border-box;
}

.use-case-card.explored {
  max-width: 960px !important;
}

.use-case-card.explored .case-overview {
  display: none;
}

.use-case-card.explored .case-detail-deepdive {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.btn-back-overview {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 1.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
}

.btn-back-overview:hover {
  color: #0f172a;
}

.detail-why {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.detail-subtitle {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.detail-col h5 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.6rem;
}

.detail-col p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
}

/* Adjust explorer content stage height dynamically when explored */
.explorer-content-stage {
  transition: min-height 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

.explorer-content-stage.explored-active {
  height: auto !important;
  min-height: 520px;
  align-items: flex-start;
  padding: 4rem 3.5rem;
}

/* Deep-dive details responsive rules */
@media (max-width: 860px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .detail-why {
    font-size: 1.7rem;
  }
  .detail-subtitle {
    font-size: 0.98rem;
    margin-bottom: 1.8rem;
  }
  .explorer-content-stage.explored-active {
    padding: 3rem 2rem;
  }
}

/* ── Talk to Team Form Styles ── */
.talk-container {
  display: flex;
  gap: 5rem;
  padding: 120px 0 80px 0;
  align-items: center;
  min-height: calc(100vh - 200px);
}

.talk-left {
  width: 45%;
}

.talk-right {
  width: 55%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 3.5rem;
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.02);
  box-sizing: border-box;
}

.talk-left h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.talk-left p {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: #64748b;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}

.talk-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.talk-bullet-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.tbi-icon {
  font-size: 1.2rem;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.08);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tbi-content h5 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.tbi-content p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.45;
}

.talk-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.talk-form-group label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #0f172a;
  letter-spacing: 0.05em;
}

.talk-form-group input, 
.talk-form-group select, 
.talk-form-group textarea {
  background: rgba(15, 23, 42, 0.01);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: #0f172a;
  outline: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.talk-form-group input::placeholder,
.talk-form-group textarea::placeholder {
  color: rgba(15, 23, 42, 0.35);
}

.talk-form-group input:focus, 
.talk-form-group select:focus, 
.talk-form-group textarea:focus {
  border-color: #00c2ff;
  box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.1);
  background: #ffffff;
}

.form-submit-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08);
}

/* Success State Box */
.success-msg-box {
  text-align: center;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.success-icon {
  width: 54px;
  height: 54px;
  background: rgba(34, 197, 94, 0.08);
  color: #22c55e;
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.success-msg-box h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #0f172a;
}

.success-msg-box p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
}

/* Form Responsive adjustments */
@media (max-width: 960px) {
  .talk-container {
    flex-direction: column;
    gap: 4rem;
    padding: 100px 0 60px 0;
  }
  .talk-left, .talk-right {
    width: 100%;
  }
  .talk-left {
    text-align: center;
  }
  .talk-bullets {
    align-items: center;
  }
  .talk-bullet-item {
    max-width: 480px;
    text-align: left;
  }
}

/* ── Fullscreen Background Storytelling Presentation Styles ── */
.hero-presentation-wrapper {
  width: 100%;
  height: 100vh;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-presentation-container {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  box-sizing: border-box;
  position: relative;
  z-index: 5;
}

.hero-story-left-col {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}

.hero-story-sentence {
  font-family: 'Google Sans Flex', 'Inter', sans-serif;
  font-size: 3.8rem;
  font-weight: 500;
  color: #0f172a;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

#story-keyword {
  font-weight: 700;
  color: #64748b;
  display: inline-block;
  transition: all 0.3s ease;
}

#story-arrow {
  color: #ef4444;
  margin-left: 8px;
  font-weight: 700;
  display: inline-block;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s ease;
}

.hero-story-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-story-ctas .btn-primary {
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.hero-story-ctas .btn-secondary {
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.08);
  background: #ffffff;
  color: #0f172a;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 900px) {
  .hero-presentation-wrapper {
    height: auto;
    min-height: 100vh;
    padding: 80px 0 60px 0;
  }
  
  .hero-presentation-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 2rem 1.5rem;
  }

  .hero-story-left-col {
    width: 100%;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .hero-story-sentence {
    font-size: 2.8rem;
    text-align: center;
  }

  .hero-story-ctas {
    justify-content: center;
    width: 100%;
  }

  #storytellerChassis {
    width: 100% !important;
    max-width: 380px;
    height: 320px !important;
  }
}

/* Pipeline Responsive Scaling */
#pipelineCanvas {
  max-width: 380px;
  width: 100%;
  height: auto;
  aspect-ratio: 380 / 420;
}

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

@keyframes waveMove {
  from { transform: translateX(0); }
  to { transform: translateX(-140px); }
}

/* Responsive spacing for giant typography banner */
.giant-banner-container {
  margin-top: 0 !important;
}
@media (min-width: 768px) {
  .giant-banner-container {
    margin-top: -2.5rem !important;
  }
}





