/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cyan:       #00D4F5;
  --cyan-dim:   rgba(0,212,245,0.12);
  --cyan-glow:  rgba(0,212,245,0.25);
  --dark:       #060810;
  --dark2:      #0d1017;
  --dark3:      #141720;
  --border:     rgba(255,255,255,0.08);
  --text:       #c8d0de;
  --white:      #ffffff;
  --nav-h:      72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.grain-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── TYPOGRAPHY ───────────────────────────────────────── */
h1, h2, h3, h4, nav, .label, .section-label {
  font-family: 'Outfit', sans-serif;
}

a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── NAV ──────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(6,8,16,0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 1000;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav-logo-fallback {
  display: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.5px;
}

.nav-logo-fallback sup { font-size: 10px; }
.cyan { color: var(--cyan); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.nav-cta {
  background: transparent;
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 9px 22px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: var(--cyan);
  color: var(--dark);
  text-decoration: none;
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  opacity: 0.45;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(6,8,16,0.2) 0%, rgba(6,8,16,0.65) 75%),
    linear-gradient(to bottom, rgba(6,8,16,0.15) 0%, rgba(6,8,16,0.9) 100%);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,212,245,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,212,245,0.03) 1px, transparent 1px);
  background-size: 100% 80px;
  pointer-events: none;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
  font-family: 'Outfit', sans-serif;
  position: relative;
  z-index: 2;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--cyan);
  opacity: 0.6;
}

.hero h1 {
  position: relative;
  z-index: 2;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  max-width: 860px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.35s forwards;
}

.hero h1 span { color: var(--cyan); }

.hero-sub {
  position: relative;
  z-index: 2;
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(200,208,222,0.75);
  max-width: 600px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-buttons {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.65s forwards;
}

.btn-primary {
  background: var(--cyan);
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; color: var(--dark); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
  text-decoration: none;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
  z-index: 2;
}

.scroll-hint span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── SECTION COMMON ───────────────────────────────────── */
section, .page-section {
  padding: 100px 5%;
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}

.section-body {
  font-size: 16px;
  color: rgba(200,208,222,0.7);
  line-height: 1.75;
  font-weight: 300;
  max-width: 580px;
}

/* ─── ABOUT ────────────────────────────────────────────── */
.about-section {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.stat-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  padding: 32px 28px;
  transition: border-color 0.3s;
}

.stat-card:hover { border-color: rgba(0,212,245,0.3); }
.stat-card:first-child { border-radius: 8px 0 0 0; }
.stat-card:nth-child(2) { border-radius: 0 8px 0 0; }
.stat-card:nth-child(3) { border-radius: 0 0 0 8px; }
.stat-card:last-child { border-radius: 0 0 8px 0; }

.stat-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.5;
}

.stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 13px;
  color: rgba(200,208,222,0.55);
  line-height: 1.5;
}

/* ─── VIDEO / DEMO ─────────────────────────────────────── */
.demo-section {
  background: var(--dark);
  text-align: center;
}

.demo-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.demo-header {
  max-width: 600px;
  margin: 0 auto 60px;
}

.ipad-device {
  display: inline-block;
  position: relative;
  width: min(760px, 90vw);
  background: #1a1d26;
  border-radius: 28px;
  padding: 16px 24px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    0 0 0 3px #0d0f16,
    0 0 0 4px rgba(255,255,255,0.06),
    0 60px 120px rgba(0,0,0,0.8),
    0 0 80px rgba(0,212,245,0.08);
}

.ipad-top {
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.ipad-camera {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a2d38;
  border: 1px solid rgba(255,255,255,0.08);
}

.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

.ipad-bottom {
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
}

.ipad-home {
  width: 120px;
  height: 4px;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
}

.ipad-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(0,212,245,0.2) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(10px);
}

/* Demo video play overlay */
.demo-play-overlay {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}

.demo-play-overlay canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.demo-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(0,212,245,0.15);
  border: 2px solid rgba(0,212,245,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  backdrop-filter: blur(4px);
}

.demo-play-btn i {
  font-size: 32px;
  color: var(--cyan);
  margin-left: 3px;
}

.demo-play-overlay:hover .demo-play-btn {
  background: rgba(0,212,245,0.3);
  border-color: var(--cyan);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ─── MODULES ──────────────────────────────────────────── */
.modules-section {
  background: var(--dark2);
  border-top: 1px solid var(--border);
}

.modules-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.modules-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
  flex-wrap: wrap;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.module-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.module-card:hover {
  border-color: rgba(0,212,245,0.2);
  transform: translateY(-2px);
}

.module-card:hover::before { opacity: 1; }

.module-card:first-child { border-radius: 8px 0 0 0; }
.module-card:nth-child(2) { border-radius: 0 8px 0 0; }
.module-card:nth-child(3) { border-radius: 0 0 0 8px; }
.module-card:last-child { border-radius: 0 0 8px 0; }

.module-number {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(0,212,245,0.4);
  margin-bottom: 20px;
}

.module-icon {
  width: 48px;
  height: 48px;
  background: var(--cyan-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s;
}

.module-card:hover .module-icon { background: rgba(0,212,245,0.2); }

.module-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.5;
}

.module-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.module-desc {
  font-size: 14.5px;
  color: rgba(200,208,222,0.6);
  line-height: 1.7;
  font-weight: 300;
}

.module-tag {
  display: inline-block;
  margin-top: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  opacity: 0.7;
}

/* ─── AMPLIFY CALLOUT ──────────────────────────────────── */
.amplify-section {
  background: var(--dark);
  text-align: center;
  padding: 80px 5%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.amplify-inner {
  max-width: 700px;
  margin: 0 auto;
}

.amplify-quote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
}

.amplify-quote em {
  font-style: normal;
  color: var(--cyan);
}

/* ─── STUDIO ───────────────────────────────────────────── */
.studio-section {
  background: var(--dark2);
}

.studio-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.studio-features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.feature-row:last-child { border-bottom: none; }

.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  margin-top: 8px;
  flex-shrink: 0;
}

.feature-text {
  font-size: 14.5px;
  color: rgba(200,208,222,0.7);
  line-height: 1.6;
}

.studio-cta-block {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 44px 40px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.studio-cta-block h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.studio-cta-block p {
  font-size: 14px;
  color: rgba(200,208,222,0.6);
  line-height: 1.65;
  margin-bottom: 28px;
}

.explore-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.explore-tag {
  background: var(--cyan-dim);
  border: 1px solid rgba(0,212,245,0.2);
  color: var(--cyan);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 100px;
}

/* ─── CONTACT PAGE ─────────────────────────────────────── */
.contact-section {
  background: var(--dark);
  text-align: center;
  padding-top: calc(var(--nav-h) + 60px);
}

.contact-inner {
  max-width: 620px;
  margin: 0 auto;
}

.contact-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(200,208,222,0.5);
}

.form-input,
.form-textarea {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 13px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(200,208,222,0.3); }
.form-input:focus,
.form-textarea:focus { border-color: rgba(0,212,245,0.4); }

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.alert-success {
  background: rgba(0,212,245,0.1);
  border: 1px solid rgba(0,212,245,0.3);
  color: var(--cyan);
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 24px;
  text-align: center;
}

.alert-error {
  background: rgba(245,0,50,0.1);
  border: 1px solid rgba(245,0,50,0.3);
  color: #ff6b6b;
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 24px;
  text-align: center;
}

.field-validation-error {
  color: #ff6b6b;
  font-size: 12px;
}

/* ─── PRIVACY PAGE ─────────────────────────────────────── */
.privacy-section {
  background: var(--dark);
  padding-top: calc(var(--nav-h) + 60px);
}

.privacy-inner {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-inner h2 {
  font-size: 22px;
  color: var(--white);
  margin: 48px 0 16px;
  font-weight: 700;
}

.privacy-inner h3 {
  font-size: 17px;
  color: var(--white);
  margin: 32px 0 12px;
  font-weight: 600;
}

.privacy-inner h4 {
  font-size: 15px;
  color: rgba(200,208,222,0.85);
  margin: 24px 0 10px;
  font-weight: 600;
}

.privacy-inner p {
  margin-bottom: 14px;
  line-height: 1.75;
  color: rgba(200,208,222,0.7);
  font-size: 15px;
}

.privacy-inner ul, .privacy-inner ol {
  margin-bottom: 14px;
  padding-left: 24px;
}

.privacy-inner li {
  margin-bottom: 8px;
  line-height: 1.65;
  color: rgba(200,208,222,0.65);
  font-size: 14.5px;
}

.privacy-inner strong { color: rgba(200,208,222,0.9); }

.privacy-inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 13px;
}

.privacy-inner th {
  background: var(--dark3);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  border: 1px solid var(--border);
}

.privacy-inner td {
  padding: 10px 16px;
  border: 1px solid var(--border);
  color: rgba(200,208,222,0.6);
}

.privacy-inner hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

/* ─── FEATURES PAGE ────────────────────────────────────── */
.features-hero {
  padding: calc(var(--nav-h) + 60px) 5% 60px;
  text-align: center;
  background: var(--dark);
  position: relative;
}

.features-hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,212,245,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.features-hero-inner {
  position: relative;
  z-index: 1;
}

.feat-section {
  padding: 80px 5%;
}

.feat-dark { background: var(--dark); }
.feat-dark2 {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feat-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.feat-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}

.feat-header .section-title {
  white-space: nowrap;
}

.feat-header .section-body {
  margin: 0 auto;
  text-align: center;
}

.feat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,212,245,0.2);
  color: var(--cyan);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.feat-badge i {
  font-size: 16px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.feat-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  padding: 36px 32px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feat-card:hover {
  border-color: rgba(0,212,245,0.2);
  transform: translateY(-2px);
}

.feat-card:hover::before { opacity: 1; }

/* Corner rounding for 3-column grid */
.feat-grid .feat-card:first-child { border-radius: 8px 0 0 0; }
.feat-grid .feat-card:nth-child(3) { border-radius: 0 8px 0 0; }
.feat-grid .feat-card:nth-last-child(3):not(:nth-child(3)) { border-radius: 0 0 0 8px; }
.feat-grid .feat-card:last-child { border-radius: 0 0 8px 0; }

.feat-icon {
  width: 48px;
  height: 48px;
  background: var(--cyan-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s;
}

.feat-card:hover .feat-icon { background: rgba(0,212,245,0.2); }

.feat-icon i {
  font-size: 22px;
  color: var(--cyan);
}

.feat-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feat-card p {
  font-size: 13.5px;
  color: rgba(200,208,222,0.58);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── INDEX V2 — PRODUCT SHOWCASE ──────────────────────── */
.v2-product { overflow: hidden; }

.v2-product-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.v2-product-reverse {
  direction: rtl;
}

.v2-product-reverse > * {
  direction: ltr;
}

.v2-product-text .feat-badge { margin-bottom: 20px; }

.v2-checklist {
  list-style: none;
  margin: 24px 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v2-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(200,208,222,0.65);
  line-height: 1.55;
}

.v2-checklist li i {
  color: var(--cyan);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.v2-screenshot-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 24px 60px rgba(0,0,0,0.6),
    0 0 40px rgba(0,212,245,0.05);
  transition: transform 0.4s, box-shadow 0.4s;
}

.v2-screenshot-wrap:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(0,212,245,0.15),
    0 32px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(0,212,245,0.08);
}

.v2-screenshot-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

/* Persona grid */
.v2-persona-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.v2-persona {
  background: var(--dark3);
  border: 1px solid var(--border);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.3s;
}

.v2-persona:hover { border-color: rgba(0,212,245,0.25); }

.v2-persona:first-child { border-radius: 8px 0 0 8px; }
.v2-persona:last-child { border-radius: 0 8px 8px 0; }
.v2-persona:nth-child(n+2):not(:last-child) { border-radius: 0; }

.v2-persona-icon {
  width: 52px;
  height: 52px;
  background: var(--cyan-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.v2-persona-icon i {
  font-size: 24px;
  color: var(--cyan);
}

.v2-persona h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.v2-persona p {
  font-size: 13.5px;
  color: rgba(200,208,222,0.55);
  line-height: 1.6;
}

/* Deploy grid */
.v2-deploy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.v2-deploy-item {
  background: var(--dark3);
  border: 1px solid var(--border);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(200,208,222,0.7);
  transition: border-color 0.3s;
}

.v2-deploy-item:hover { border-color: rgba(0,212,245,0.25); }

.v2-deploy-item i {
  font-size: 20px;
  color: var(--cyan);
  flex-shrink: 0;
}

/* First row corners */
.v2-deploy-grid .v2-deploy-item:nth-child(1) { border-radius: 8px 0 0 0; }
.v2-deploy-grid .v2-deploy-item:nth-child(3) { border-radius: 0 8px 0 0; }
.v2-deploy-grid .v2-deploy-item:nth-child(4) { border-radius: 0 0 0 8px; }
.v2-deploy-grid .v2-deploy-item:nth-child(6) { border-radius: 0 0 8px 0; }

@media (max-width: 860px) {
  .v2-product-inner { grid-template-columns: 1fr; gap: 36px; }
  .v2-product-reverse { direction: ltr; }
  .v2-persona-grid { grid-template-columns: 1fr 1fr; }
  .v2-persona { border-radius: 0 !important; }
  .v2-deploy-grid { grid-template-columns: 1fr; }
  .v2-deploy-item { border-radius: 0 !important; }
}

@media (max-width: 540px) {
  .v2-persona-grid { grid-template-columns: 1fr; }
}

/* ─── SCREENSHOT SLIDER ────────────────────────────────── */
.ss-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto 48px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 24px 48px rgba(0,0,0,0.5),
    0 0 60px rgba(0,212,245,0.04);
}

.ss-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ss-slide {
  min-width: 100%;
  cursor: pointer;
}

.ss-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.ss-prev, .ss-next {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  background: rgba(6,8,16,0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 2;
}

.ss-prev:hover, .ss-next:hover {
  background: rgba(0,212,245,0.2);
  border-color: rgba(0,212,245,0.4);
}

.ss-prev { left: 12px; }
.ss-next { right: 12px; }

.ss-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(6,8,16,0.85);
  backdrop-filter: blur(8px);
}

.ss-caption {
  font-size: 13px;
  color: rgba(200,208,222,0.6);
  font-weight: 300;
  flex: 1;
}

.ss-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex: 1;
}

.ss-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.ss-dot.active {
  background: var(--cyan);
  transform: scale(1.25);
}

.ss-dot:hover { background: rgba(255,255,255,0.4); }

.ss-expand {
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(200,208,222,0.5);
  font-size: 14px;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, border-color 0.2s;
}

.ss-expand:hover {
  color: var(--cyan);
  border-color: rgba(0,212,245,0.4);
}

@media (max-width: 860px) {
  .ss-prev, .ss-next { width: 32px; height: 32px; font-size: 14px; }
  .ss-footer { flex-wrap: wrap; gap: 8px; }
  .ss-caption { flex: 1 1 100%; text-align: center; }
}

/* ─── TEAM PAGE ────────────────────────────────────────── */
.team-hero {
  padding: calc(var(--nav-h) + 60px) 5% 40px;
  text-align: center;
  background: var(--dark);
  position: relative;
}

.team-hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,212,245,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.team-hero-inner { position: relative; z-index: 1; }

.team-section {
  padding: 60px 5% 80px;
  background: var(--dark);
}

.team-inner {
  max-width: 960px;
  margin: 0 auto;
}

.team-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.team-photo-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  filter: grayscale(20%);
  transition: filter 0.4s;
}

.team-card:hover .team-photo-wrap img {
  filter: grayscale(0%);
}

.team-photo-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--dark), transparent);
  pointer-events: none;
}

.team-info h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}

.team-role {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}

.team-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.team-bio p {
  font-size: 14.5px;
  color: rgba(200,208,222,0.65);
  line-height: 1.75;
  margin-bottom: 14px;
}

.team-credentials {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.team-cred-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(200,208,222,0.55);
  line-height: 1.5;
}

.team-cred-item i {
  color: var(--cyan);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.team-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 64px 0;
}

@media (max-width: 860px) {
  .team-card { grid-template-columns: 1fr; gap: 32px; }
  .team-photo-wrap { max-width: 240px; }
}

/* ─── ANATOMY VIEWER TOUR PAGE ─────────────────────────── */
.tour-progress {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.04);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.4s;
}

.tour-progress.visible { opacity: 1; }

.tour-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), #00f5d4);
  transition: width 0.15s linear;
  border-radius: 0 2px 2px 0;
}

.tour-hero {
  padding: calc(var(--nav-h) + 60px) 5% 40px;
  text-align: center;
  background: var(--dark);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 80vh;
  justify-content: center;
}

.tour-hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,212,245,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.tour-hero-inner { position: relative; z-index: 1; }

/* Act dividers */
.tour-act-divider {
  text-align: center;
  padding: 48px 5% 16px;
  background: var(--dark);
}

.tour-act-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 10px 24px;
  border: 1px solid rgba(0,212,245,0.2);
  border-radius: 100px;
  background: var(--cyan-dim);
}

/* Tour rows — alternating layout */
.tour-row {
  padding: 40px 5%;
  background: var(--dark);
}

.tour-row:nth-child(even of .tour-row) {
  background: var(--dark2);
}

.tour-row-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.tour-row-right .tour-row-inner {
  direction: rtl;
}

.tour-row-right .tour-row-inner > * {
  direction: ltr;
}

/* Video styling */
.tour-video-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 24px 48px rgba(0,0,0,0.5),
    0 0 60px rgba(0,212,245,0.04);
}

.tour-video-wrap video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.tour-video-border {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

/* Text side */
.tour-chapter {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,212,245,0.45);
  display: block;
  margin-bottom: 16px;
}

.tour-icon-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.tour-icon-title i {
  font-size: 28px;
  color: var(--cyan);
  flex-shrink: 0;
}

.tour-icon-title h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}

.tour-text p {
  font-size: 15px;
  color: rgba(200,208,222,0.65);
  line-height: 1.75;
  font-weight: 300;
}

/* Act accent colors — subtle left border on text */
.act-ai .tour-text { border-left: 2px solid rgba(0,212,245,0.3); padding-left: 24px; }
.act-learn .tour-text { border-left: 2px solid rgba(0,245,120,0.25); padding-left: 24px; }
.act-learn .tour-icon-title i { color: #00f578; }
.act-learn .tour-chapter { color: rgba(0,245,120,0.4); }
.act-explore .tour-text { border-left: 2px solid rgba(245,180,0,0.25); padding-left: 24px; }
.act-explore .tour-icon-title i { color: #f5b400; }
.act-explore .tour-chapter { color: rgba(245,180,0,0.4); }
.act-present .tour-text { border-left: 2px solid rgba(180,0,245,0.25); padding-left: 24px; }
.act-present .tour-icon-title i { color: #b44dff; }
.act-present .tour-chapter { color: rgba(180,0,245,0.4); }

/* Video play overlay on hover */
.tour-video-wrap {
  cursor: pointer;
}

.tour-video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6,8,16,0.5);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}

.tour-video-wrap:hover .tour-video-play-overlay {
  opacity: 1;
}

.tour-video-play-overlay i {
  font-size: 56px;
  color: var(--cyan);
  filter: drop-shadow(0 0 20px rgba(0,212,245,0.5));
  transition: transform 0.2s;
}

.tour-video-wrap:hover .tour-video-play-overlay i {
  transform: scale(1.1);
}

/* Watch button in text */
.tour-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  background: transparent;
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 9px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.tour-watch-btn:hover {
  background: var(--cyan);
  color: var(--dark);
}

.tour-watch-btn i {
  font-size: 16px;
}

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.video-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
}

.video-modal-content {
  position: relative;
  width: min(900px, 92vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s ease;
}

.video-modal.open .video-modal-content {
  transform: scale(1) translateY(0);
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
}

.video-modal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.video-modal-close {
  background: none;
  border: none;
  color: rgba(200,208,222,0.5);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.video-modal-close:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.video-modal-body {
  background: #000;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

.video-modal-body video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 75vh;
}

/* ─── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 56px 5% 0;
}

.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(200,208,222,0.4);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

footer address {
  font-style: normal;
  font-size: 13px;
  color: rgba(200,208,222,0.32);
  line-height: 1.9;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(200,208,222,0.55);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 13.5px;
  color: rgba(200,208,222,0.4);
  transition: color 0.2s;
  text-decoration: none;
}

.footer-col ul a:hover { color: var(--cyan); }

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-copy {
  font-size: 12px;
  color: rgba(200,208,222,0.2);
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ─── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.15); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 860px) {
  .about-inner,
  .studio-inner { grid-template-columns: 1fr; gap: 48px; }
  .modules-grid { grid-template-columns: 1fr; }
  .module-card { border-radius: 0 !important; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(6,8,16,0.95);
    backdrop-filter: blur(18px);
    padding: 24px 5%;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-right { align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .modules-header { flex-direction: column; }
  .studio-cta-block { position: static; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-card { border-radius: 0 !important; }
  .feat-header .section-title { white-space: normal; }
  .tour-row-inner { grid-template-columns: 1fr; gap: 32px; }
  .tour-row-right .tour-row-inner { direction: ltr; }
  .tour-hero .section-title { white-space: normal !important; }
  .amplify-quote { white-space: normal !important; }
}
