/* ========================================
   Taunrix AI — Global Styles
   ======================================== */

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

:root {
  --graphite: #0D0D0D;
  --graphite-80: rgba(13, 13, 13, 0.8);
  --graphite-60: rgba(13, 13, 13, 0.6);
  --graphite-20: rgba(13, 13, 13, 0.2);
  --graphite-05: rgba(13, 13, 13, 0.05);
  --sand: #E8D9A8;
  --sand-light: #f3ecda;
  --peach: #F1B087;
  --peach-light: #f8d4bc;
  --mist: #C9D6B5;
  --mist-light: #dce6d0;
  --sky: #DCE6C8;
  --white: #FFFFFF;
  --off-white: #FAFAF7;
  --gradient-brand: linear-gradient(120deg, #C9D6B5, #E8D9A8, #F1B087);
  --gradient-brand-reverse: linear-gradient(300deg, #C9D6B5, #E8D9A8, #F1B087);
  --gradient-hero: linear-gradient(135deg, #dce6d0 0%, #E8D9A8 40%, #F1B087 100%);
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(13, 13, 13, 0.06);
  --shadow-md: 0 8px 32px rgba(13, 13, 13, 0.08);
  --shadow-lg: 0 16px 48px rgba(13, 13, 13, 0.12);
  --shadow-card: 0 4px 24px rgba(13, 13, 13, 0.06);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--graphite);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  font-weight: 400;
  line-height: 1.7;
}

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-muted { color: var(--graphite-60); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--graphite-60);
  margin-bottom: 16px;
}

.section-label .label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--peach);
}

.section-heading {
  margin-bottom: 20px;
}

.section-desc {
  color: var(--graphite-60);
  max-width: 600px;
  font-size: 1.0625rem;
}

.highlight {
  background: linear-gradient(120deg, var(--peach-light), var(--sand));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--graphite);
  color: var(--white);
}

.btn-primary:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--graphite);
  border: 1px solid var(--graphite-20);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--white);
  border-color: var(--graphite);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--peach);
  color: var(--graphite);
}

.btn-accent:hover {
  background: #e9a070;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--graphite);
  border: 2px solid var(--graphite);
}

.btn-outline:hover {
  background: var(--graphite);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 10px 24px;
}

.btn-lg {
  font-size: 1rem;
  padding: 18px 40px;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   Header
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--graphite-05);
}

.header.scrolled .header-inner {
  padding: 14px 0;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo img {
  height: 32px;
  width: auto;
}

.header-logo span {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--graphite);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--graphite-80);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--peach);
  transition: var(--transition);
}

.header-nav a:hover {
  color: var(--graphite);
}

.header-nav a:hover::after {
  width: 100%;
}

.header-cta .btn {
  padding: 10px 28px;
  font-size: 0.8125rem;
}

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

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--graphite);
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--off-white);
  z-index: 999;
  padding: 100px 24px 40px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--graphite);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: 140px 0 100px;
}

.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb:nth-child(1) {
  width: 500px;
  height: 500px;
  background: var(--peach);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-orb:nth-child(2) {
  width: 400px;
  height: 400px;
  background: var(--mist);
  bottom: -15%;
  left: -10%;
  animation-delay: -4s;
}

.hero-orb:nth-child(3) {
  width: 300px;
  height: 300px;
  background: var(--sand);
  top: 30%;
  left: 40%;
  animation-delay: -8s;
}

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

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

/* Hero Graphic */
.hero-graphic {
  position: relative;
  z-index: 2;
  height: 520px;
}

.hero-rings-bg {
  position: absolute;
  inset: -40px;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  pointer-events: none;
  animation: slowSpin 60s linear infinite;
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(13,13,13,0.08), 0 1px 3px rgba(13,13,13,0.04);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.hero-card:hover {
  transform: translateY(-4px);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px 0;
}

.hero-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.hero-card-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--graphite-60);
  margin-left: 4px;
}

/* Main chart card */
.hero-card-main {
  top: 30px;
  left: 20px;
  right: 20px;
  animation: floatUp 0.9s ease-out both;
}

.hero-card-body {
  padding: 16px 20px 20px;
}

.hero-card-metric {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-metric-value {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--graphite);
}

.hero-metric-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #3a9e6e;
}

.hero-chart {
  width: 100%;
  height: 100px;
  display: block;
}

.chart-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 2s ease-out 0.5s forwards;
}

.chart-area {
  opacity: 0;
  animation: fadeIn 1s ease-out 1.5s forwards;
}

.chart-dot {
  opacity: 0;
  animation: popIn 0.4s ease-out forwards;
}
.chart-dot-1 { animation-delay: 1.2s; }
.chart-dot-2 { animation-delay: 1.6s; }
.chart-dot-3 { animation-delay: 2s; }

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes popIn {
  0% { opacity: 0; r: 0; }
  60% { r: 6; }
  100% { opacity: 1; r: 4; }
}

/* Agent status card */
.hero-card-agents {
  bottom: 100px;
  left: 0;
  width: 220px;
  padding-bottom: 16px;
  animation: floatUp 0.9s ease-out 0.3s both;
}

.hero-agent-status {
  margin-left: auto;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #3a9e6e;
  background: rgba(58,158,110,0.1);
  padding: 2px 10px;
  border-radius: 100px;
}

.hero-agents-list {
  padding: 12px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-agent-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--graphite-80);
}

.hero-agent-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-agent-name {
  flex: 1;
}

.hero-agent-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3a9e6e;
  animation: pulse 2s ease-in-out infinite;
}

.hero-agent-row:nth-child(2) .hero-agent-pulse { animation-delay: 0.6s; }
.hero-agent-row:nth-child(3) .hero-agent-pulse { animation-delay: 1.2s; }

/* Alert card */
.hero-card-alert {
  bottom: 20px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  animation: floatUp 0.9s ease-out 0.6s both;
}

.hero-alert-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--peach-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-alert-text {
  display: flex;
  flex-direction: column;
}

.hero-alert-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--graphite);
}

.hero-alert-desc {
  font-size: 0.6875rem;
  color: var(--graphite-60);
  margin-top: 2px;
}

/* Insight card */
.hero-card-insight {
  top: 260px;
  right: 10px;
  width: 200px;
  padding: 16px 20px;
  animation: floatUp 0.9s ease-out 0.9s both;
}

.hero-insight-bar {
  width: 100%;
  height: 6px;
  background: var(--graphite-05);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.hero-insight-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--mist), var(--peach));
  border-radius: 3px;
  animation: fillBar 1.5s ease-out 1.2s both;
}

@keyframes fillBar {
  from { width: 0; }
}

.hero-insight-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--graphite-60);
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 32px;
}

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

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

.hero h1 {
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.1875rem;
  line-height: 1.7;
  color: var(--graphite-80);
  margin-bottom: 40px;
  max-width: 580px;
}

/* (hero-decoration removed — replaced by hero-graphic) */

/* ========================================
   Section: Built For Decision Makers
   ======================================== */

.section-audience {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
}

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

.audience-header .section-desc {
  margin: 0 auto;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--graphite-05);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: var(--transition);
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.audience-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.audience-card:nth-child(1) .audience-card-icon { background: var(--sand-light); }
.audience-card:nth-child(2) .audience-card-icon { background: var(--mist-light); }
.audience-card:nth-child(3) .audience-card-icon { background: var(--peach-light); }
.audience-card:nth-child(4) .audience-card-icon { background: var(--sky); }

.audience-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--graphite);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-card h3 {
  margin-bottom: 12px;
}

.audience-card p {
  color: var(--graphite-60);
  font-size: 0.9375rem;
}

.audience-cta {
  text-align: center;
}

/* ========================================
   Section: What AI Agents Do (Split)
   ======================================== */

.section-agents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.agents-left {
  background: var(--graphite);
  color: var(--white);
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.agents-left-decor {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
}

.agents-left-decor::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 50%;
}

.agents-left .section-label {
  color: rgba(255,255,255,0.5);
}

.agents-left .section-label .label-dot {
  background: var(--peach);
}

.agents-left h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.agents-left p {
  color: rgba(255,255,255,0.6);
  font-size: 1.0625rem;
  max-width: 420px;
}

.agents-right {
  background: var(--sand-light);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.agent-capability {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}

.agent-capability:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.capability-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--peach);
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--peach);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.capability-content h4 {
  margin-bottom: 4px;
  font-weight: 600;
}

.capability-content p {
  font-size: 0.875rem;
  color: var(--graphite-60);
  line-height: 1.5;
}

/* ========================================
   Section: How It Works
   ======================================== */

.section-how {
  padding: 120px 0;
  background: var(--sky);
  position: relative;
}

.how-header {
  text-align: center;
  margin-bottom: 80px;
}

.how-header .section-desc {
  margin: 0 auto;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-bottom: 60px;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--graphite-20), var(--graphite), var(--graphite-20));
  z-index: 0;
}

.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: var(--transition);
}

.step-number svg {
  width: 36px;
  height: 36px;
  stroke: var(--graphite);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.how-step:hover .step-number {
  background: var(--graphite);
  transform: scale(1.08);
}

.how-step:hover .step-number svg {
  stroke: var(--white);
}

.step-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--graphite-60);
  margin-bottom: 8px;
}

.how-step h3 {
  margin-bottom: 12px;
}

.how-step p {
  color: var(--graphite-60);
  font-size: 0.9375rem;
  max-width: 300px;
  margin: 0 auto;
}

.how-cta {
  text-align: center;
}

/* ========================================
   Section: Real Impact (Scenario)
   ======================================== */

.section-scenario {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
}

.scenario-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.scenario-problem {
  background: var(--graphite);
  color: var(--white);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scenario-problem .scenario-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--peach);
  margin-bottom: 24px;
}

.scenario-problem h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.scenario-problem p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
}

.scenario-problem .scenario-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scenario-problem .scenario-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
}

.scenario-list-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(241, 176, 135, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.scenario-list-icon svg {
  width: 10px;
  height: 10px;
  stroke: var(--peach);
  fill: none;
  stroke-width: 2;
}

.scenario-solution {
  background: linear-gradient(160deg, var(--sand-light), var(--peach-light));
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scenario-solution .scenario-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--graphite);
  margin-bottom: 24px;
}

.scenario-solution h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.scenario-solution p {
  color: var(--graphite-80);
  font-size: 1rem;
  line-height: 1.7;
}

.scenario-result {
  margin-top: 28px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.scenario-result h4 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--graphite-60);
  margin-bottom: 12px;
}

.scenario-result p {
  font-size: 0.9375rem;
  color: var(--graphite);
  font-weight: 500;
}

/* ========================================
   Section: Why Taunrix AI (Value)
   ======================================== */

.section-value {
  padding: 120px 0;
  background: var(--sand-light);
}

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

.value-header .section-desc {
  margin: 0 auto;
}

.value-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
  margin-bottom: 48px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--graphite-05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-card.featured {
  grid-column: span 2;
  background: var(--graphite);
  color: var(--white);
  border: none;
}

.value-card.featured h3 {
  color: var(--white);
  font-size: 1.75rem;
}

.value-card.featured p {
  color: rgba(255,255,255,0.6);
  font-size: 1.0625rem;
}

.value-card.featured .value-icon {
  background: rgba(255,255,255,0.1);
}

.value-card.featured .value-icon svg {
  stroke: var(--peach);
}

.value-card.accent {
  background: linear-gradient(160deg, var(--peach-light), var(--peach));
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--graphite-05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--graphite);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  color: var(--graphite-60);
  font-size: 0.9375rem;
}

.value-cta {
  text-align: center;
}

/* ========================================
   Section: Stats Band
   ======================================== */

.section-stats {
  padding: 80px 0;
  background: var(--gradient-brand);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--graphite-80);
}

/* ========================================
   Section: Contact
   ======================================== */

.section-contact {
  padding: 120px 0;
  background: var(--mist-light);
  position: relative;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--graphite-60);
  font-size: 1.0625rem;
  margin-bottom: 32px;
  max-width: 440px;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--graphite);
  fill: none;
  stroke-width: 1.5;
}

.contact-feature span {
  font-weight: 500;
  font-size: 0.9375rem;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--graphite);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  padding: 14px 18px;
  border: 1.5px solid var(--graphite-20);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  color: var(--graphite);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--graphite);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(13,13,13,0.06);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
}

/* ========================================
   Footer
   ======================================== */

.footer {
  background: var(--graphite);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-brand-logo img {
  height: 28px;
  filter: invert(1);
}

.footer-brand-logo span {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

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

.footer-col a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

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

.footer-bottom-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.7);
}

/* ========================================
   Page Styles (subpages)
   ======================================== */

.page-hero {
  padding: 160px 0 80px;
  background: var(--gradient-hero);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--graphite-80);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: 80px 0;
  background: var(--off-white);
}

.page-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 1.75rem;
}

.page-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.page-content p {
  color: var(--graphite-80);
  margin-bottom: 16px;
}

.page-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
  list-style: disc;
}

.page-content ul li {
  color: var(--graphite-80);
  margin-bottom: 8px;
}

/* ========================================
   Blog Styles
   ======================================== */

.blog-articles {
  padding: 80px 0;
  background: var(--off-white);
}

.blog-article {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--graphite-05);
}

.blog-article:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.blog-article-header {
  margin-bottom: 32px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.blog-tag {
  display: inline-flex;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  background: var(--sand-light);
  color: var(--graphite-80);
}

.blog-date {
  font-size: 0.8125rem;
  color: var(--graphite-60);
}

.blog-article h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  margin-top: 0;
}

.blog-article-lead {
  font-size: 1.125rem;
  color: var(--graphite-80);
  line-height: 1.7;
  margin-bottom: 32px;
}

.blog-article h3 {
  margin-top: 36px;
  margin-bottom: 14px;
  font-size: 1.375rem;
}

.blog-article p {
  color: var(--graphite-80);
  margin-bottom: 18px;
  line-height: 1.75;
}

.blog-article blockquote {
  border-left: 3px solid var(--peach);
  padding: 20px 28px;
  margin: 28px 0;
  background: var(--sand-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.blog-article blockquote p {
  font-style: italic;
  color: var(--graphite);
  font-size: 1.0625rem;
  margin-bottom: 0;
}

/* ========================================
   Pricing Styles
   ======================================== */

.pricing-section {
  padding: 80px 0 120px;
  background: var(--off-white);
}

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

.pricing-card {
  background: var(--white);
  border: 1px solid var(--graphite-05);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  background: var(--graphite);
  color: var(--white);
  border: none;
  position: relative;
}

.pricing-card.popular .pricing-label,
.pricing-card.popular .pricing-features li {
  color: rgba(255,255,255,0.7);
}

.pricing-card.popular .pricing-price {
  color: var(--white);
}

.pricing-card.popular .btn-primary {
  background: var(--peach);
  color: var(--graphite);
}

.pricing-card.popular .btn-primary:hover {
  background: #e9a070;
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--peach);
  color: var(--graphite);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-tier {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--graphite-60);
}

.pricing-label {
  font-size: 0.875rem;
  color: var(--graphite-60);
  margin-bottom: 32px;
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  list-style: none;
  padding: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--graphite-80);
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  stroke: var(--peach);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

/* ========================================
   Careers Styles
   ======================================== */

.careers-section {
  padding: 80px 0;
  background: var(--off-white);
}

.careers-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.careers-intro p {
  color: var(--graphite-60);
  font-size: 1.0625rem;
  margin-top: 16px;
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.career-card {
  background: var(--white);
  border: 1px solid var(--graphite-05);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}

.career-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.career-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.career-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.career-tag {
  display: inline-flex;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 100px;
  background: var(--sand-light);
  color: var(--graphite-80);
}

.career-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.career-card p {
  color: var(--graphite-60);
  font-size: 0.9375rem;
  margin-bottom: 20px;
}

.career-card .btn {
  font-size: 0.8125rem;
  padding: 10px 24px;
}

/* ========================================
   Form Section (used on careers/pricing)
   ======================================== */

.form-section {
  padding: 100px 0;
  background: var(--mist-light);
}

.form-section-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.form-section-inner h2 {
  margin-bottom: 12px;
}

.form-section-inner > p {
  color: var(--graphite-60);
  margin-bottom: 40px;
  font-size: 1.0625rem;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  text-align: left;
}

/* ========================================
   Animations & Scroll Reveal
   ======================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-graphic {
    height: 420px;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-card-main {
    left: 10px;
    right: 10px;
  }

  .hero-card-agents {
    left: -10px;
    bottom: 80px;
    width: 200px;
  }

  .hero-card-alert {
    right: -10px;
    bottom: 10px;
  }

  .hero-card-insight {
    right: 0;
    top: 240px;
  }

  .section-agents {
    grid-template-columns: 1fr;
  }

  .agents-left {
    padding: 80px 40px;
  }

  .agents-right {
    padding: 40px;
  }

  .scenario-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .value-bento {
    grid-template-columns: 1fr 1fr;
  }

  .value-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: flex; }

  .hero { padding: 120px 0 80px; min-height: auto; }
  .hero h1 { font-size: 2.25rem; }

  .hero-graphic {
    height: 380px;
    max-width: 360px;
  }

  .hero-card-agents { width: 180px; }
  .hero-card-insight { width: 170px; }
  .hero-card-alert { padding: 12px 14px; }

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

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

  .how-steps::before { display: none; }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .value-bento {
    grid-template-columns: 1fr;
  }

  .value-card.featured {
    grid-column: span 1;
  }

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

  .contact-form-card {
    padding: 32px;
  }

  .scenario-problem,
  .scenario-solution {
    padding: 40px 32px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-badge { font-size: 0.75rem; }
  .btn { padding: 12px 24px; font-size: 0.875rem; }
  .btn-lg { padding: 14px 32px; }
  .stat-number { font-size: 2.25rem; }
  .form-card { padding: 28px; }
  .contact-form-card { padding: 24px; }

  .hero-graphic { height: 340px; max-width: 320px; }
  .hero-card-agents { display: none; }
  .hero-card-insight { width: 160px; font-size: 0.625rem; top: 220px; }
  .hero-metric-value { font-size: 1.5rem; }
}
