:root {
  --bg: #09080e;
  --bg-subtle: #110f1a;
  --panel: rgba(22, 19, 34, 0.75);
  --panel-card: rgba(26, 22, 40, 0.65);
  --panel-hover: rgba(36, 30, 56, 0.85);
  
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.14);
  --border-amber: rgba(245, 158, 11, 0.35);
  --border-emerald: rgba(52, 211, 153, 0.35);
  
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --amber-dark: #d97706;
  --amber-glow: rgba(245, 158, 11, 0.22);
  
  --emerald: #10b981;
  --emerald-light: #34d399;
  --emerald-glow: rgba(16, 185, 129, 0.2);

  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --purple-glow: rgba(139, 92, 246, 0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;
  
  --max-width: 1140px;
  --transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Ambient Lighting & Circuit Grid */
.bg-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  -webkit-filter: blur(100px);
  opacity: 0.55;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.glow-1 {
  top: -8%;
  left: 12%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22), transparent 70%);
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.glow-2 {
  top: 30%;
  right: -5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent 70%);
  animation: floatOrb 22s ease-in-out infinite alternate-reverse;
}

.glow-3 {
  bottom: 8%;
  left: 10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.14), transparent 70%);
  animation: floatOrb 25s ease-in-out infinite alternate;
}

@keyframes floatOrb {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(25px) scale(1.06); }
  100% { transform: translateY(-20px) scale(0.96); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 40%, transparent 85%);
}

/* Typography Helpers */
h1, h2, h3, h4, .font-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #ffffff;
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Header & Floating Navigation */
.site-header {
  position: sticky;
  top: 1rem;
  z-index: 50;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.25rem;
  background: rgba(15, 13, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.nav-wrap:hover {
  border-color: var(--border-light);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.brand-logo-wrap {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--amber), var(--emerald-light));
  box-shadow: 0 0 10px var(--amber-glow);
  flex-shrink: 0;
}

.brand-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  padding: 0.45rem 1.05rem;
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(245, 158, 11, 0.06));
  border: 1px solid var(--border-amber);
  color: var(--amber-light);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #09080e;
  box-shadow: 0 0 16px var(--amber-glow);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  padding: 2.5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--border-emerald);
  color: var(--emerald-light);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 20%, var(--amber-light) 65%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: 2rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.94rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #09080e;
  box-shadow: 0 4px 18px var(--amber-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  color: var(--text-dim);
  font-weight: 500;
}

.feature-pill svg {
  color: var(--amber);
}

/* Showcase App Mockup Card */
.showcase-container {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}

.showcase-card {
  background: linear-gradient(165deg, rgba(30, 26, 44, 0.9), rgba(16, 14, 25, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--amber), var(--emerald-light), transparent);
}

.device-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.74rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.device-app-bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}

.app-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, var(--amber), var(--emerald-light));
  box-shadow: 0 4px 14px var(--amber-glow);
  flex-shrink: 0;
}

.app-icon {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.app-meta h3 {
  font-size: 1.1rem;
  margin-bottom: 0.1rem;
}

.app-meta p {
  font-size: 0.78rem;
  color: var(--amber-light);
  font-weight: 500;
}

/* Mockup Widget Cards */
.mockup-widgets {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.widget-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.8rem 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.widget-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateX(2px);
}

.widget-left {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.widget-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: rgba(245, 158, 11, 0.12);
  color: var(--amber);
  flex-shrink: 0;
}

.widget-icon.emerald {
  background: rgba(16, 185, 129, 0.12);
  color: var(--emerald-light);
}

.widget-icon.purple {
  background: rgba(139, 92, 246, 0.12);
  color: var(--purple-light);
}

.widget-info h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.widget-info span {
  font-size: 0.72rem;
  color: var(--text-dim);
  display: block;
}

.widget-status {
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  white-space: nowrap;
}

.status-active {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-light);
}

.status-due {
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber-light);
}

.status-sync {
  background: rgba(139, 92, 246, 0.15);
  color: var(--purple-light);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  padding: 0.45rem 0.85rem;
  background: rgba(18, 15, 27, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  font-size: 0.76rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
  animation: floatBadge 6s ease-in-out infinite alternate;
}

.badge-top-right {
  top: -10px;
  right: -10px;
}

.badge-bottom-left {
  bottom: -12px;
  left: -12px;
  animation-delay: -3s;
}

@keyframes floatBadge {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-7px); }
}

/* Sections General */
.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.02rem;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.08), transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--border-amber);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
}

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

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-amber);
  color: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
}

.card-icon.emerald {
  background: rgba(16, 185, 129, 0.12);
  border-color: var(--border-emerald);
  color: var(--emerald-light);
}

.card-icon.purple {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--purple-light);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

/* Pipeline / In The Lab Section */
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.pipeline-card {
  background: linear-gradient(170deg, rgba(25, 21, 38, 0.8), rgba(15, 13, 23, 0.9));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

.pipeline-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-light);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.pipeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.stage-pill {
  font-size: 0.74rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.stage-dev {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--border-emerald);
  color: var(--emerald-light);
}

.pipeline-title {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.pipeline-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.pipeline-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.pipeline-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.pipeline-feature-item svg {
  color: var(--emerald-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tech-tag {
  font-size: 0.74rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Contact / Studio CTA Section */
.contact-card {
  background: linear-gradient(145deg, rgba(28, 24, 42, 0.92), rgba(15, 13, 23, 0.96));
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(245, 158, 11, 0.08);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.contact-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

.contact-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 48ch;
  margin: 0 auto 2.25rem;
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #09080e;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.94rem;
  cursor: pointer;
  box-shadow: 0 4px 18px var(--amber-glow);
  transition: var(--transition);
}

.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.45);
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(18, 15, 27, 0.95);
  border: 1px solid var(--border-emerald);
  color: var(--emerald-light);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Site Footer */
.site-footer {
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-logo {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

.footer-copy {
  color: var(--text-dim);
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  color: var(--text-dim);
  font-size: 0.86rem;
}

.footer-link:hover {
  color: var(--text);
}

/* Privacy Policy Page */
.privacy-wrap {
  padding: 2rem 0 5rem;
}

.privacy-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  max-width: 860px;
  margin: 0 auto;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.privacy-header {
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-header h1 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.privacy-meta {
  color: var(--text-dim);
  font-size: 0.86rem;
  font-family: 'JetBrains Mono', monospace;
}

/* Quick Jump / TOC */
.privacy-toc {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.privacy-toc h3 {
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
  margin-bottom: 1rem;
}

.toc-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
  list-style: none;
}

.toc-link {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.toc-link:hover {
  color: var(--amber-light);
  transform: translateX(2px);
}

.privacy-section {
  margin-bottom: 2.5rem;
  scroll-margin-top: 5rem;
}

.privacy-section h2 {
  font-size: 1.35rem;
  color: var(--amber-light);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber);
  border: 1px solid var(--border-amber);
}

.privacy-section p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 0.95rem;
}

.privacy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
}

.privacy-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
}

.privacy-list-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 9px;
  flex-shrink: 0;
}

.privacy-list-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.privacy-list-text strong {
  color: var(--text);
  font-weight: 600;
}

.privacy-callout {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.03));
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
}

.privacy-callout p {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Responsive Breakpoints */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .cards-grid,
  .pipeline-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
  
  .hero {
    padding-top: 1.5rem;
  }
  
  .toc-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.1rem;
  }
  
  .contact-card {
    padding: 2.5rem 1.25rem;
  }
  
  .privacy-card {
    padding: 2rem 1.25rem;
    border-radius: var(--radius-lg);
  }
  
  .privacy-header h1 {
    font-size: 1.85rem;
  }
  
  .footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  .floating-badge {
    display: none;
  }
}
