﻿/* ===== 1. CSS VARIABLES / ROOT ===== */
:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-elevated: #1A1A1A;
  --bg-glass: rgba(255,255,255,0.03);
  --accent-primary: #F97316;
  --accent-secondary: #FB923C;
  --accent-glow: rgba(249,115,22,0.15);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.68);
  --text-tertiary: rgba(255,255,255,0.46);
  --border-subtle: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --glow-orange: 0 0 60px rgba(249,115,22,0.2);
  --glow-white: 0 0 40px rgba(255,255,255,0.05);
  --nav-height: 72px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-primary);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  background: var(--bg-primary);
}

::selection {
  color: var(--text-primary);
  background: rgba(249,115,22,0.35);
}

a {
  color: inherit;
  text-decoration: none;
}

html[lang="en"] .lang-de,
html[lang="de"] .lang-en {
  display: none;
}

button {
  font: inherit;
}

img,
svg {
  display: block;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 80px 0;
}

section,
nav,
footer {
  position: relative;
  z-index: 1;
}

#problem,
#benefits,
#trainings,
#how-it-works,
#audience,
#industries,
#platform,
#team,
#cta,
.trust-bar,
footer {
  background-color: var(--bg-primary);
}

#problem,
#benefits,
#trainings,
#how-it-works,
#audience,
#industries,
#platform,
#team,
#cta {
  border-top: 1px solid rgba(255,255,255,0.03);
}

section > .container,
section > .sticky-container,
nav,
footer .container {
  position: relative;
  z-index: 2;
}

.benefit-card,
.feature-card,
.training-card,
.team-card,
.audience-card,
.problem-card,
.waitlist-form {
  position: relative;
  z-index: 3;
}

main,
.site-footer {
  position: relative;
}

#cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  will-change: left, top, opacity;
}

.section-divider {
  position: relative;
  height: 56px;
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 9999;
  height: var(--nav-height);
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: var(--nav-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.brand-logo {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 0 18px rgba(249,115,22,0.22));
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  margin-left: auto;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text-primary);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  padding: 0;
  color: var(--text-tertiary);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.lang-option {
  transition: color 0.3s ease;
}

.lang-option.active {
  color: var(--accent-primary);
}

.language-divider {
  color: var(--text-tertiary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 100px;
  padding: 18px 40px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.btn-primary {
  color: var(--text-primary);
  background: var(--accent-primary);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: scale(1.02);
  box-shadow: var(--glow-orange);
  background: var(--accent-secondary);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-primary);
  background: transparent;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}

.btn-nav {
  min-height: 44px;
  padding: 14px 24px;
  font-size: 14px;
}

.hero {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 120px 0 80px;
  overflow: hidden;
}

#swan-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  background: transparent;
}

.hero-glow,
.cta-glow {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, var(--accent-glow), transparent 65%);
  filter: blur(20px);
}

.hero-glow {
  top: 12%;
  left: 50%;
  width: min(820px, 82vw);
  height: min(420px, 54vw);
  transform: translateX(-50%);
}

.hero-content,
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content {
  padding: 40px;
  border-radius: 20px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 70%);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
}

h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

h3 {
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.accent-dash {
  color: var(--accent-primary);
}

.hero-subtext {
  max-width: 680px;
  margin: 28px auto 0;
  color: rgba(255,255,255,0.86);
  font-size: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 0 40px rgba(0,0,0,0.6);
  position: relative;
  z-index: 2;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.hero-cta {
  margin-top: 40px;
  text-align: center;
}

.hero-cta .btn-primary {
  display: inline-flex;
  padding: 18px 40px;
}

.final-waitlist {
  max-width: 560px;
  margin: 46px auto 0;
}

.waitlist-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  background: var(--bg-elevated);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.waitlist-form:focus-within {
  border-color: var(--accent-primary);
  box-shadow: 0 0 30px rgba(249,115,22,0.1);
}

.waitlist-form input[type="email"] {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  padding: 18px 28px;
  color: var(--text-primary);
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}

.waitlist-form input[type="email"]::placeholder {
  color: var(--text-tertiary);
}

.waitlist-form button {
  border: 0;
  padding: 18px 32px;
  color: var(--text-primary);
  background: var(--accent-primary);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.waitlist-form button:hover,
.waitlist-form button:focus-visible {
  background: var(--accent-secondary);
}

.waitlist-form button:disabled {
  cursor: not-allowed;
  opacity: 0.75;
}

.waitlist-note,
.waitlist-success {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.waitlist-note {
  color: var(--text-secondary);
}

.team-tagline,
.trainings-sub,
.waitlist-note,
.section-subtitle,
.industries-text {
  color: var(--text-secondary);
}

.waitlist-success {
  display: none;
  color: var(--accent-primary);
}

.trust-bar {
  padding: 30px 0 34px;
  background: linear-gradient(180deg, rgba(10,10,10,0.25), var(--bg-secondary));
}

.trust-items {
  color: var(--text-tertiary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  text-align: center;
  text-transform: uppercase;
}

.narrow-left {
  max-width: 1200px;
}

.problem-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0A0A0A 0%, #0D0D0D 100%);
}

.problem-section .container {
  position: relative;
  z-index: 2;
}

.problem-section .narrow-left > * {
  max-width: 720px;
}
.section-lead {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--text-secondary);
  font-size: 18px;
}

.section-intro {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
}

.section-heading .section-intro,
.platform-content .section-intro {
  margin-right: auto;
  margin-left: auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.problem-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 36px 32px;
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.problem-card > * {
  position: relative;
  z-index: 3;
}

.problem-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.problem-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--accent-primary);
}

.problem-icon svg {
  width: 100%;
  height: 100%;
}

.problem-card h4 {
  margin: 0 0 10px;
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.problem-card p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 32px;
}

.benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 40px;
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform-style: preserve-3d;
  transition: all 0.3s ease;
  will-change: transform;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: var(--shine-opacity, 0);
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(249,115,22,0.08) 0%, transparent 48%);
  transition: opacity 0.25s ease;
}

.feature-card > * {
  position: relative;
  z-index: 3;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  color: var(--accent-primary);
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 15px;
}

.trainings-section {
  background: linear-gradient(180deg, #0A0A0A 0%, #0D0D0D 100%);
}

.section-subtitle {
  max-width: 660px;
  margin: 22px auto 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
}

.trainings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.training-card,
.training-card:nth-child(2) {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 48px 36px;
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 1;
  text-align: left;
  transform-style: preserve-3d;
  transition: all 0.3s ease;
  will-change: transform;
}

.training-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.training-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: var(--shine-opacity, 0);
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(249,115,22,0.08) 0%, transparent 48%);
  transition: opacity 0.25s ease;
}

.training-card > * {
  position: relative;
  z-index: 3;
}

.training-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--accent-primary);
}

.training-icon svg {
  width: 100%;
  height: 100%;
}

.training-title {
  margin-bottom: 16px;
  color: var(--accent-primary);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 3px;
}

.training-hook {
  margin-bottom: 12px;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.training-desc {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.trainings-tagline {
  margin-top: 48px;
  text-align: center;
}

.trainings-tagline > p:first-child {
  margin-bottom: 0;
  color: var(--accent-primary);
  font-size: 18px;
  font-weight: 600;
}

.trainings-sub {
  max-width: 600px;
  margin: 12px auto 0;
  color: var(--text-secondary);
  font-size: 16px;
}

.how-section {
  background: linear-gradient(180deg, #0A0A0A 0%, #0E0E0E 50%, #0A0A0A 100%);
}

.sticky-container {
  position: relative;
}

.steps-pipeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}

.pipeline-line {
  position: absolute;
  top: 24px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: var(--border-subtle);
}

.pipeline-line span {
  display: block;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 40%, #fff 50%, var(--accent-secondary) 60%, var(--accent-primary) 100%);
  background-size: 200% 100%;
  box-shadow: 0 0 18px rgba(249,115,22,0.25);
  animation: shimmer 2s linear infinite;
  transition: width 0.2s ease, height 0.2s ease;
  will-change: width, height;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-circle {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 22px;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-tertiary);
  background: var(--bg-primary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 800;
  transition: all 0.5s ease;
}

.step.active .step-circle {
  border-color: var(--accent-primary);
  color: var(--text-primary);
  background: var(--accent-primary);
  box-shadow: 0 0 30px rgba(249,115,22,0.22);
  animation: step-pulse 2s ease-in-out infinite;
}

@keyframes step-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(249,115,22,0.3); }
  50% { box-shadow: 0 0 40px rgba(249,115,22,0.5), 0 0 80px rgba(249,115,22,0.15); }
}

.step h3 {
  margin-bottom: 8px;
  color: var(--text-tertiary);
  font-size: 18px;
  transition: color 0.5s ease;
}

.step.active h3 {
  color: var(--text-primary);
}

.step p {
  margin-bottom: 0;
  color: var(--text-tertiary);
  font-size: 14px;
  line-height: 1.55;
  transition: color 0.5s ease;
}

.step.active p {
  color: var(--text-secondary);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.audience-card {
  min-height: 320px;
}

.audience-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.audience-points li {
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.audience-points li:last-child {
  border-bottom: 0;
}

.audience-points li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.audience-card.left {
  background:
    linear-gradient(135deg, rgba(59,130,246,0.03), transparent 48%),
    rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

#benefits {
  background: linear-gradient(180deg, #0D0D0D 0%, #0A0A0A 100%);
}

#audience {
  background: linear-gradient(180deg, #0A0A0A 0%, #0C0C0C 100%);
}

.audience-card.right {
  background:
    linear-gradient(135deg, rgba(249,115,22,0.035), transparent 48%),
    rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.industries-section {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(180deg, #0A0A0A 0%, #0D0D0D 100%);
}

.industries-text {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--text-secondary);
  font-size: 18px;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.industry-tag {
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  padding: 12px 24px;
  color: var(--text-secondary);
  background: var(--bg-glass);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.industry-tag:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(249,115,22,0.05);
}

.platform-section {
  padding: 80px 0;
  text-align: center;
}

.platform-content {
  max-width: 1000px;
}

.platform-devices {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  color: var(--accent-primary);
}

.device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--accent-primary);
}

.device svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.device span {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
}

.platform-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}

.platform-feature {
  max-width: 350px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.platform-feature strong {
  color: var(--text-primary);
}

.platform-screenshots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.screenshot-box {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: var(--bg-elevated);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.screenshot-box:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
}

.screenshot-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.team-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, #0A0A0A 0%, #0D0D0D 100%);
}

.team-section h2 {
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.05;
}

.team-divider {
  position: relative;
  width: 200px;
  height: 2px;
  margin: 32px auto;
  background: var(--border-subtle);
}

.divider-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-primary);
  transform: translate(-50%, -50%);
}

.team-subtitle {
  max-width: 600px;
  margin: 0 auto 60px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 48px auto 0;
}

.team-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 48px 32px;
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.team-card > * {
  position: relative;
  z-index: 3;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.team-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 2px solid var(--border-subtle);
  border-radius: 50%;
  background: var(--bg-elevated);
  color: var(--accent-primary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.team-photo::before {
  content: attr(data-initials);
}

.team-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo img[src=""],
.team-photo img:not([src]) {
  display: none;
}

.team-card:hover .team-photo {
  border-color: var(--accent-primary);
  box-shadow: 0 0 30px rgba(249,115,22,0.15);
}

.team-name {
  margin-bottom: 4px;
  color: var(--text-primary);
  font-size: 22px;
  font-weight: 700;
}

.team-role {
  color: var(--accent-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.team-tagline {
  margin-top: 48px;
  color: rgba(255,255,255,0.62);
  font-size: 16px;
  font-style: italic;
}

.final-cta {
  overflow: hidden;
  padding: 80px 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(249,115,22,0.06) 0%, #0A0A0A 60%);
}

.cta-glow {
  top: 50%;
  left: 50%;
  width: min(900px, 88vw);
  height: min(520px, 70vw);
  transform: translate(-50%, -50%);
}

.final-cta h2 {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(42px, 6vw, 56px);
}

.final-cta p {
  max-width: 660px;
  margin: 26px auto 42px;
  color: var(--text-secondary);
  font-size: 18px;
}

.btn-large {
  min-height: 68px;
  padding: 22px 56px;
  font-size: 18px;
}

#cta .cta-button {
  --magnet-x: 0px;
  --magnet-y: 0px;
  --magnet-scale: 1;
  position: relative;
  z-index: 0;
  overflow: visible;
  transform: translate(var(--magnet-x), var(--magnet-y)) scale(var(--magnet-scale));
}

#cta .cta-button::after {
  content: '';
  position: absolute;
  inset: -4px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  filter: blur(20px);
  opacity: 0.5;
  animation: button-breathe 3s ease-in-out infinite;
}

@keyframes button-breathe {
  0%, 100% { opacity: 0.4; filter: blur(20px); }
  50% { opacity: 0.7; filter: blur(30px); }
}

.trust-items.compact {
  margin-top: 36px;
  font-size: 11px;
  letter-spacing: 1.7px;
}

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 40px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--text-tertiary);
  font-size: 13px;
}

.footer-content p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  transition: color 0.3s ease;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .section {
    padding: 72px 0;
  }

  .nav {
    gap: 16px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
    gap: 16px;
  }

  .benefits-grid,
  .audience-grid,
  .trainings-grid,
  .problem-grid,
  .platform-screenshots,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .platform-devices {
    gap: 28px;
  }

  .team-grid {
    gap: 48px;
  }

  .steps-pipeline {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: 540px;
    margin: 0 auto;
  }

  .pipeline-line {
    top: 24px;
    bottom: 24px;
    left: 24px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .pipeline-line span {
    width: 100%;
    height: 20%;
  }

  .step {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 22px;
    text-align: left;
  }

  .step-circle {
    margin: 0;
  }

  .step h3,
  .step p {
    grid-column: 2;
  }

  .step h3 {
    margin-top: 0;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  #cursor-glow {
    display: none;
  }

  .btn {
    min-height: 58px;
  }

  #cta .cta-button,
  .hero .btn {
    padding: 20px 48px;
  }

  .waitlist-form {
    flex-direction: column;
    overflow: visible;
    border-radius: 24px;
  }

  .waitlist-form input[type="email"],
  .waitlist-form button {
    width: 100%;
    border-radius: 0;
    text-align: center;
  }

  .team-section h2 {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 60px 0;
  }

  .brand-wordmark {
    display: none;
  }

  .btn-nav {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 80px 0 60px;
  }

  .hero-content {
    padding: 28px 18px;
  }

  .section-divider {
    height: 36px;
  }

  h1 {
    letter-spacing: -1.6px;
  }

  .hero-subtext,
  .section-lead,
  .final-cta p {
    font-size: 16px;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
  }

  .feature-card {
    padding: 32px;
  }

  .training-card,
  .problem-card,
  .team-card {
    padding: 32px 28px;
  }

  .platform-devices {
    flex-wrap: wrap;
  }

  .final-cta {
    padding: 60px 0;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .language-toggle {
    font-size: 12px;
  }

  .eyebrow {
    letter-spacing: 2.2px;
  }

  .btn {
    padding-right: 28px;
    padding-left: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    scroll-behavior: auto;
    transition-duration: 0.01ms;
  }

  #cursor-glow {
    display: none;
  }
}

/* ===== PREMIUM EFFECTS: ANIMATED GRADIENT BORDERS + HOLOGRAPHIC HOVER ===== */

@keyframes border-rotate {
  0%   { --border-angle: 0deg; }
  100% { --border-angle: 360deg; }
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.problem-card,
.feature-card,
.training-card,
.team-card {
  --border-angle: 0deg;
  animation: border-rotate 8s linear infinite;
}

.problem-card::after,
.feature-card::after,
.training-card::after,
.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--border-angle),
    transparent 25%,
    rgba(249, 115, 22, 0.3) 35%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(249, 115, 22, 0.3) 65%,
    transparent 75%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.problem-card:hover::after,
.feature-card:hover::after,
.training-card:hover::after,
.team-card:hover::after {
  opacity: 1;
}

/* Holographic shine upgrade for feature & training cards */
.feature-card::before,
.training-card::before {
  background: radial-gradient(
    circle at var(--shine-x, 50%) var(--shine-y, 50%),
    rgba(249,115,22,0.12) 0%,
    rgba(255,255,255,0.04) 30%,
    transparent 55%
  );
}

/* Add shine to problem & team cards */
.problem-card::before,
.team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: var(--shine-opacity, 0);
  background: radial-gradient(
    circle at var(--shine-x, 50%) var(--shine-y, 50%),
    rgba(249,115,22,0.12) 0%,
    rgba(255,255,255,0.04) 30%,
    transparent 55%
  );
  transition: opacity 0.25s ease;
}

/* Unified hover glow for all premium cards */
.problem-card:hover,
.feature-card:hover,
.training-card:hover,
.team-card:hover {
  box-shadow:
    0 0 40px rgba(249, 115, 22, 0.06),
    0 0 80px rgba(249, 115, 22, 0.03);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0A0A0A 0%, #0D0D0D 100%);
}

.faq-grid {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  margin-bottom: 12px;
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: var(--accent-primary);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  padding: 22px 28px;
  color: var(--text-primary);
  background: transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 16px;
  color: var(--text-tertiary);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-icon {
  color: var(--accent-primary);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 28px 22px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== CONTACT MODAL ===== */
.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.contact-overlay.active {
  opacity: 1;
  visibility: visible;
}

.contact-modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 48px 40px;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.25s ease;
}

.contact-overlay.active .contact-modal {
  transform: scale(1) translateY(0);
}

.contact-close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: 0;
  padding: 4px 8px;
  color: rgba(255, 255, 255, 0.4);
  background: none;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: color 0.2s ease;
}

.contact-close:hover,
.contact-close:focus-visible {
  color: #fff;
}

.contact-modal h2 {
  margin: 0 0 8px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.contact-subtitle {
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #F97316;
  outline: none;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-submit {
  width: 100%;
  margin-top: 8px;
}

.contact-success {
  padding: 40px 0;
  text-align: center;
}

.contact-success-icon {
  margin-bottom: 16px;
  color: var(--accent-primary);
  font-size: 48px;
  line-height: 1;
}

.contact-success h3 {
  margin: 0 0 8px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.contact-success p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

@media (max-width: 640px) {
  .contact-modal {
    padding: 32px 24px;
  }

  .contact-modal h2 {
    font-size: 24px;
  }
}

/* ===== SECTION GLOW — ambient orange spotlight behind headings ===== */
section {
  position: relative;
  z-index: 1;
}

section::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  z-index: -1;
  width: 500px;
  height: 300px;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(249, 115, 22, 0.06) 0%,
    rgba(249, 115, 22, 0.03) 30%,
    transparent 70%
  );
  transform: translateX(-50%);
}

#hero::before {
  width: 800px;
  height: 500px;
  background: radial-gradient(
    ellipse at center,
    rgba(249, 115, 22, 0.08) 0%,
    rgba(249, 115, 22, 0.04) 30%,
    transparent 70%
  );
}

#cta::before {
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse at center,
    rgba(249, 115, 22, 0.08) 0%,
    rgba(249, 115, 22, 0.03) 40%,
    transparent 70%
  );
}

#industries::before,
.trust-bar::before,
footer::before {
  display: none;
}

@media (max-width: 768px) {
  section::before {
    width: 300px;
    height: 200px;
  }

  #hero::before {
    width: 400px;
    height: 300px;
  }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  min-height: 100vh;
  background: var(--bg-primary);
}

.legal-header {
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(10,10,10,0.9);
}

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
}

.legal-main {
  padding: 88px 0;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  color: var(--text-secondary);
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
}

.legal-content h1 {
  margin-bottom: 32px;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.05;
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 18px;
  font-size: 28px;
}

.legal-content h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 20px;
}

.legal-content p {
  margin-bottom: 18px;
}

.legal-content a {
  color: var(--accent-primary);
}

.legal-block {
  margin-bottom: 28px;
}

.legal-back {
  margin-top: 56px;
}

