/* ============================================
   HELIUM TEAMS — DESIGN SYSTEM
   Palette: Cream base + pastel accents + black
   Fonts: Instrument Serif + Bricolage Grotesque
   ============================================ */

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE7D9;
  --cream-mid: #F9F5EF;
  --black: #0F0F0F;
  --black-soft: #1A1A1A;
  --gray-dark: #3A3A3A;
  --gray-mid: #6B6B6B;
  --gray-light: #A8A8A8;
  --gray-border: #E0D9CE;
  --pink: #F2C4CE;
  --pink-soft: #FAE8EC;
  --mint: #C4E8D8;
  --mint-soft: #E8F7F0;
  --lavender: #D4C4F0;
  --lavender-soft: #F0ECFC;
  --yellow: #F5E6A0;
  --yellow-soft: #FDF8E0;
  --teal: #A8D8D8;
  --white: #FFFFFF;

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Bricolage Grotesque', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ============ TYPOGRAPHY ============ */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gray-light);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--gray-mid);
}

.section-sub {
  font-size: 17px;
  color: var(--gray-mid);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  border: 2px solid var(--black);
}
.btn-primary:hover {
  background: var(--black-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gray-dark);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--gray-border);
  transition: all 0.25s ease;
}
.btn-secondary:hover {
  border-color: var(--gray-mid);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}
.btn-nav:hover {
  background: var(--black-soft);
  transform: translateY(-1px);
}

/* ============ ANIMATIONS ============ */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-card {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

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

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--gray-border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-orb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #F2C4CE, #D4C4F0, #A8D8D8, #C4E8D8, #F5E6A0, #F2C4CE);
  flex-shrink: 0;
}
.logo-orb.small { width: 20px; height: 20px; }
.logo-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}
.logo-slash { color: var(--gray-light); margin: 0 2px; font-weight: 400; }
.logo-teams { color: var(--gray-mid); font-weight: 400; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 120px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-bg-mesh {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 10% 10%, rgba(242,196,206,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(196,232,216,0.30) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(212,196,240,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(245,230,160,0.20) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content { padding-top: 20px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease 0.1s forwards;
}
.badge-new {
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}
.badge-label {
  font-size: 13px;
  color: var(--gray-mid);
  font-weight: 500;
}

.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}
.line-plain {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--black);
  display: block;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease forwards;
}
.line-plain.delay-1 { animation-delay: 0.2s; }
.line-plain.delay-2 { animation-delay: 0.3s; }

.line-gradient {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  display: block;
  background: linear-gradient(90deg, #E8748A 0%, #B07FD4 25%, #6BAED4 50%, #5BBFA0 75%, #C4A840 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.4s forwards;
}

.hero-sub {
  font-size: 17px;
  color: var(--gray-dark);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.5s forwards;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.6s forwards;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.7s forwards;
}
.trust-avatars {
  display: flex;
  align-items: center;
}
.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.av1 { background: var(--pink); }
.av2 { background: var(--lavender); }
.av3 { background: var(--mint); }
.av4 { background: var(--yellow); }
.trust-text {
  font-size: 13px;
  color: var(--gray-mid);
  font-weight: 500;
}

/* ============ HERO CARDS ============ */
.hero-cards {
  position: relative;
  height: 520px;
}

.hcard {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.8);
}

/* AIM Card */
.hcard-aim {
  width: 220px;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #FAE8EC 0%, #F2C4CE 100%);
  transform: rotate(-3deg);
  z-index: 2;
}
.hcard-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.hcard-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--black);
  flex-shrink: 0;
}
.hcard-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--black);
  text-transform: uppercase;
}
.aim-visual {
  position: relative;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.aim-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0,0,0,0.15);
}
.r1 { width: 90px; height: 90px; animation: spin 20s linear infinite; }
.r2 { width: 65px; height: 65px; animation: spin 15s linear infinite reverse; }
.r3 { width: 40px; height: 40px; animation: spin 10s linear infinite; }
.aim-core {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--black);
  z-index: 1;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}
.hcard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hcard-nodes { font-size: 11px; color: var(--gray-mid); font-weight: 500; }
.hcard-live { font-size: 11px; font-weight: 700; color: var(--black); }

/* Workflow Card */
.hcard-workflow {
  width: 260px;
  top: 80px;
  right: 0;
  z-index: 3;
  transform: rotate(1.5deg);
}
.hcard-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.wf-icon {
  width: 32px; height: 32px;
  background: #1A1A1A;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.wf-title-block { flex: 1; }
.wf-title { font-size: 13px; font-weight: 700; color: var(--black); line-height: 1.3; }
.wf-meta { font-size: 11px; color: var(--gray-light); margin-top: 2px; }
.badge-live {
  background: #D4F0E0;
  color: #1A7A4A;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.wf-tasks { display: flex; flex-direction: column; gap: 8px; }
.wf-task {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--gray-dark);
}
.wf-check {
  width: 16px; height: 16px;
  background: #D4F0E0;
  color: #1A7A4A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}
.wf-dot-run {
  width: 16px; height: 16px;
  background: #FFF0D4;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.wf-dot-run::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: #E8A020;
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}
.wf-dot-q {
  width: 16px; height: 16px;
  background: var(--gray-border);
  border-radius: 50%;
  flex-shrink: 0;
}
.wf-time {
  margin-left: auto;
  font-size: 10px;
  color: var(--gray-light);
  font-weight: 500;
}

/* Prompt Card */
.hcard-prompt {
  width: 230px;
  bottom: 40px;
  right: 20px;
  background: linear-gradient(135deg, #FDF8E0 0%, #F5E6A0 100%);
  transform: rotate(-2deg);
  z-index: 4;
}
.prompt-tag {
  font-size: 10px;
  font-weight: 600;
  color: #B07820;
  background: rgba(176,120,32,0.12);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 10px;
}
.prompt-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}
.prompt-desc {
  font-size: 11px;
  color: var(--gray-mid);
  line-height: 1.5;
  margin-bottom: 14px;
}
.prompt-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.prompt-author {
  font-size: 11px;
  color: var(--gray-mid);
  font-weight: 500;
}
.prompt-uses {
  font-size: 11px;
  color: var(--gray-mid);
  font-weight: 600;
  background: rgba(0,0,0,0.06);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

/* Audit Card */
.hcard-audit {
  width: 210px;
  bottom: 0;
  left: 20px;
  z-index: 2;
  transform: rotate(2deg);
}
.audit-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.audit-shield { font-size: 14px; }
.audit-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
}
.audit-log {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.audit-log li {
  font-size: 11px;
  color: var(--gray-mid);
  line-height: 1.4;
}
.audit-time {
  font-weight: 700;
  color: var(--black);
  margin-right: 6px;
  font-size: 10px;
}

/* ============ FEATURE STRIP ============ */
.strip-wrap {
  background: var(--cream-dark);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  overflow: hidden;
  padding: 14px 0;
}
.strip-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: scrollStrip 30s linear infinite;
  width: max-content;
}
.strip-track span {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-mid);
  letter-spacing: 0.02em;
}
.strip-sep {
  color: var(--pink) !important;
  font-size: 8px !important;
}

/* ============ BENEFITS ============ */
.benefits {
  padding: 120px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.bc-large {
  grid-column: span 2;
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.bc-large h3 { color: var(--white); }
.bc-large p { color: rgba(255,255,255,0.65); }
.bc-accent {
  background: linear-gradient(135deg, var(--lavender-soft) 0%, var(--lavender) 100%);
  border-color: var(--lavender);
}
.bc-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.2;
}
.benefit-card p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.7;
}

/* ============ FEATURES ============ */
.features {
  padding: 120px 0;
  background: var(--cream-mid);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}
.features-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feat-large {
  grid-column: span 2;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(135deg, #F0ECFC 0%, #D4C4F0 100%);
  border-color: var(--lavender);
}
.feat-accent {
  background: linear-gradient(135deg, var(--mint-soft) 0%, var(--mint) 100%);
  border-color: var(--mint);
}
.feat-icon-wrap {
  font-size: 32px;
  flex-shrink: 0;
  margin-bottom: 16px;
}
.feat-large .feat-icon-wrap { margin-bottom: 0; }
.feat-content { flex: 1; }
.feat-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.25;
}
.feat-card p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.7;
}
.feat-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray-light);
  text-transform: uppercase;
  background: var(--cream);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-border);
}

/* ============ INDUSTRIES ============ */
.industries {
  padding: 120px 0;
}
.industry-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.ind-tab {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-mid);
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ind-tab:hover {
  border-color: var(--gray-mid);
  color: var(--black);
}
.ind-tab.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.industry-panels { position: relative; }
.ind-panel {
  display: none;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  gap: 32px;
  align-items: flex-start;
  animation: fadeIn 0.4s ease;
}
.ind-panel.active { display: flex; }
.ind-panel-icon {
  font-size: 48px;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ind-panel-content { flex: 1; }
.ind-panel-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
}
.ind-panel-content p {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}
.ind-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: flex-end;
  flex-direction: column;
}
.ind-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-dark);
  background: var(--cream);
  border: 1px solid var(--gray-border);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ============ SECURITY ============ */
.security {
  padding: 120px 0;
  background: var(--black);
}
.security .section-label { color: rgba(255,255,255,0.3); }
.security .section-title { color: var(--white); }
.security .section-title em { color: rgba(255,255,255,0.4); }
.security .section-sub { color: rgba(255,255,255,0.5); }

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sec-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.sec-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.sec-card-wide {
  grid-column: span 2;
  background: rgba(242,196,206,0.08);
  border-color: rgba(242,196,206,0.15);
}
.sec-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 20px;
}
.sec-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}
.sec-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.compliance-badges {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.compliance-badges span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

/* ============ CTA FINAL ============ */
.cta-final {
  padding: 140px 0;
  background: linear-gradient(135deg, #1A0A2E 0%, #0F0F1A 50%, #0A1A0F 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(212,196,240,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(196,232,216,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.cta-final h2 em {
  font-style: italic;
  background: linear-gradient(90deg, #F2C4CE, #D4C4F0, #A8D8D8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-final p {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
}
.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,255,255,0.15);
}
.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.25s ease;
}
.btn-cta-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ============ KEYFRAMES ============ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes scrollStrip {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 60px;
  }
  .hero-cards {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .bc-large { grid-column: span 2; }
  .features-layout { grid-template-columns: repeat(2, 1fr); }
  .feat-large { grid-column: span 2; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .sec-card-wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 100px 24px 60px; }
  .container { padding: 0 24px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .bc-large { grid-column: span 1; }
  .features-layout { grid-template-columns: 1fr; }
  .feat-large { grid-column: span 1; flex-direction: column; }
  .security-grid { grid-template-columns: 1fr; }
  .sec-card-wide { grid-column: span 1; }
  .ind-panel { flex-direction: column; padding: 32px; }
  .ind-tags { flex-direction: row; align-self: flex-start; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hcard-workflow { right: -10px; }
  .hcard-prompt { right: 0; }
}

@media (max-width: 480px) {
  .hero-cards { height: 320px; }
  .hcard-aim { width: 180px; }
  .hcard-workflow { width: 210px; }
  .hcard-prompt { width: 190px; }
  .hcard-audit { width: 170px; }
  .industry-tabs { gap: 6px; }
  .ind-tab { font-size: 12px; padding: 6px 14px; }
}