:root {
  color-scheme: dark;
  --bg-deep: #0a0101;
  --bg-dark: #120202;
  --bg-mid: #1c0303;
  --red: #d42020;
  --red-dark: #b01010;
  --red-bright: #e03030;
  --white: #ffffff;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-15: rgba(255, 255, 255, 0.15);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-08: rgba(255, 255, 255, 0.08);
  --white-05: rgba(255, 255, 255, 0.05);
  --glass-bg: rgba(16, 2, 2, 0.44);
  --glass-border: rgba(255, 255, 255, 0.1);
  --pill: linear-gradient(90deg, #b01010 0%, #d42020 58%, #c01818 100%);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --display-font: "Arial Black", Inter, ui-sans-serif, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-deep);
  color: var(--white);
  font-family: var(--font);
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.scene-bg {
  background:
    radial-gradient(ellipse 48% 38% at 18% 18%, rgba(102, 5, 5, 0.58), transparent 74%),
    radial-gradient(ellipse 46% 42% at 88% 24%, rgba(42, 3, 3, 0.74), transparent 76%),
    radial-gradient(ellipse 70% 56% at 48% 80%, rgba(126, 7, 7, 0.34), transparent 74%),
    radial-gradient(ellipse 84% 68% at 50% 50%, rgba(4, 0, 0, 0.48), transparent 72%),
    linear-gradient(45deg, transparent 0 48%, rgba(255, 110, 60, 0.028) 49% 50%, transparent 51% 100%),
    linear-gradient(-45deg, transparent 0 48%, rgba(255, 255, 255, 0.014) 49% 50%, transparent 51% 100%),
    linear-gradient(180deg, #030000 0%, #100101 48%, #040000 100%);
  background-position: 0% 0%, 100% 10%, 50% 100%, 52% 50%, 50% 50%;
  background-size: 170% 170%, 160% 160%, 190% 190%, 150% 150%, 112px 112px, 112px 112px, 100% 100%;
  animation: atmosphereDrift 28s ease-in-out infinite alternate;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

.scene-bg::before {
  background:
    radial-gradient(ellipse 38% 24% at 15% 34%, rgba(190, 16, 16, 0.11), transparent 74%),
    radial-gradient(ellipse 52% 30% at 74% 68%, rgba(212, 32, 32, 0.12), transparent 74%),
    radial-gradient(ellipse 55% 24% at 46% 46%, rgba(255, 112, 42, 0.045), transparent 78%);
  filter: blur(44px);
  content: "";
  inset: 0;
  opacity: 0.85;
  animation: fogDrift 18s ease-in-out infinite alternate;
  position: absolute;
}

.scene-bg::after {
  background:
    radial-gradient(ellipse 42% 18% at 22% 42%, rgba(0, 0, 0, 0.46), transparent 76%),
    radial-gradient(ellipse 48% 22% at 72% 54%, rgba(184, 11, 11, 0.08), transparent 74%),
    radial-gradient(ellipse 46% 18% at 48% 70%, rgba(255, 92, 24, 0.055), transparent 76%);
  content: "";
  height: 100%;
  left: -30%;
  filter: blur(34px);
  opacity: 0.62;
  position: absolute;
  right: -20%;
  top: 0;
  transform: translateX(-8%);
  animation: lightSweep 14s ease-in-out infinite alternate;
}

@keyframes atmosphereDrift {
  from { background-position: 0% 0%, 100% 10%, 50% 100%, 50% 50%; }
  to { background-position: 14% 8%, 86% 24%, 42% 88%, 50% 50%; }
}

@keyframes fogDrift {
  from { opacity: 0.48; transform: translate3d(-3%, -2%, 0) scale(1.02); }
  to { opacity: 0.9; transform: translate3d(4%, 3%, 0) scale(1.08); }
}

@keyframes lightSweep {
  from { opacity: 0.22; transform: translateX(-16%) scale(1.04); }
  to { opacity: 0.58; transform: translateX(12%) scale(1.12); }
}

.particles {
  inset: 0;
  position: absolute;
}

.particles span {
  animation: smokeFloat linear infinite;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(121, 6, 6, 0.26), transparent 62%),
    radial-gradient(ellipse at 30% 40%, rgba(0, 0, 0, 0.24), transparent 72%);
  border-radius: 999px;
  filter: blur(42px);
  height: 240px;
  opacity: 0.42;
  position: absolute;
  width: 560px;
}

.particles span:nth-child(1) { left: -8%; top: 12%; animation-duration: 28s; }
.particles span:nth-child(2) { left: 62%; top: 4%; animation-duration: 34s; animation-delay: -8s; }
.particles span:nth-child(3) { left: 18%; top: 46%; animation-duration: 31s; animation-delay: -3s; width: 520px; }
.particles span:nth-child(4) { left: 72%; top: 58%; animation-duration: 37s; animation-delay: -14s; }
.particles span:nth-child(5) { left: 4%; top: 76%; animation-duration: 30s; animation-delay: -18s; width: 360px; }
.particles span:nth-child(n+6) { display: none; }

@keyframes smokeFloat {
  from { transform: translate3d(-16%, 8%, 0) rotate(0deg) scale(1); }
  50% { opacity: 0.58; }
  to { transform: translate3d(24%, -12%, 0) rotate(10deg) scale(1.18); }
}

.nav,
.hero,
.section,
.page-hero,
.booking-main,
.footer {
  position: relative;
  z-index: 1;
}

.nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 22px 32px;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.35s ease;
  z-index: 10;
}

.nav.scrolled {
  backdrop-filter: blur(20px);
  background: rgba(14, 2, 3, 0.9);
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 16px;
  padding-top: 16px;
}

.logo {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo span,
.footer-logo span,
.hero-title span,
.section-title span,
.page-title span,
.inkmentors-card h3 span {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  color: var(--white-70);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--white);
}

.btn-pill,
.btn-outline {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 9px;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn-pill {
  background: transparent;
  border: 0;
  box-shadow:
    0 18px 28px rgba(0, 0, 0, 0.34),
    0 16px 42px rgba(184, 10, 10, 0.42),
    0 0 36px rgba(255, 93, 20, 0.18);
  color: var(--white);
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  position: relative;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.22);
  animation: buttonBreath 2.9s ease-in-out infinite;
  z-index: 0;
}

.btn-pill::before {
  background: conic-gradient(from 0deg, transparent 0 18%, rgba(255, 171, 73, 0.95) 28%, rgba(255, 81, 0, 0.9) 38%, transparent 52% 100%);
  border-radius: inherit;
  content: "";
  inset: -95%;
  opacity: 0.9;
  pointer-events: none;
  position: absolute;
  animation: neonSpin 3.1s linear infinite;
  z-index: -2;
}

.btn-pill::after {
  background:
    linear-gradient(180deg, rgba(255, 83, 54, 0.92) 0%, rgba(184, 12, 12, 0.96) 48%, rgba(137, 3, 3, 0.98) 100%);
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -8px 16px rgba(70, 0, 0, 0.32);
  content: "";
  inset: 2px;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.btn-pill:hover,
.btn-outline:hover {
  opacity: 0.9;
  transform: translateY(-4px);
}

.btn-pill:hover {
  box-shadow:
    0 20px 34px rgba(0, 0, 0, 0.38),
    0 18px 52px rgba(255, 92, 24, 0.42),
    0 0 64px rgba(255, 126, 36, 0.26);
}

.btn-pill i {
  border-bottom: 7px solid transparent;
  border-left: 10px solid currentColor;
  border-top: 7px solid transparent;
  height: 0;
  width: 0;
}

@keyframes buttonBreath {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes neonSpin {
  to { transform: rotate(1turn); }
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red);
  overflow: hidden;
  position: relative;
}

.btn-outline:hover {
  background: rgba(255, 101, 24, 0.12);
  box-shadow: 0 0 28px rgba(255, 97, 24, 0.24);
  color: var(--white);
}

.hero {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 110px 24px 72px;
  text-align: center;
}

.hero-eyebrow {
  align-items: center;
  backdrop-filter: blur(10px);
  background: var(--white-08);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--white-70);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  padding: 8px 20px;
  text-transform: uppercase;
}

.hero-eyebrow span {
  background: var(--red);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.hero-title {
  font-size: clamp(52px, 12vw, 96px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 8px;
}

.hero-name {
  color: var(--white-70);
  font-size: clamp(18px, 4vw, 32px);
  font-weight: 300;
  letter-spacing: 0.12em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.hero-desc,
.section-body,
.page-desc {
  color: var(--white-70);
  font-size: 16px;
  line-height: 1.75;
}

.hero-desc {
  margin: 0 auto 48px;
  max-width: 560px;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.stat-pill {
  backdrop-filter: blur(16px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  min-width: 124px;
  padding: 20px 28px;
  text-align: center;
}

.stat-pill strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.stat-pill strong span {
  color: var(--red);
}

.stat-pill small {
  color: var(--white-40);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 7px;
  text-transform: uppercase;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.section,
.hero {
  overflow: hidden;
  position: relative;
}

.section {
  background:
    var(--section-glow, radial-gradient(ellipse 58% 34% at 22% 26%, rgba(126, 8, 8, 0.2), transparent 72%)),
    var(--section-mist, radial-gradient(ellipse 52% 26% at 76% 64%, rgba(0, 0, 0, 0.46), transparent 78%)),
    repeating-radial-gradient(ellipse at var(--grain-x, 28%) var(--grain-y, 46%), rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 18px),
    var(--luxury-pattern, linear-gradient(45deg, transparent 0 48%, rgba(255, 110, 60, 0.035) 49% 50%, transparent 51% 100%), linear-gradient(-45deg, transparent 0 48%, rgba(255, 255, 255, 0.018) 49% 50%, transparent 51% 100%)),
    linear-gradient(135deg, rgba(76, 3, 3, 0.22) 0%, transparent 38%, rgba(0, 0, 0, 0.3) 72%, rgba(112, 6, 6, 0.16) 100%),
    linear-gradient(180deg, rgba(17, 1, 1, 0.92), rgba(44, 3, 3, 0.68) 48%, rgba(7, 0, 0, 0.9));
  background-blend-mode: screen, multiply, soft-light, screen, normal, normal;
  background-size: auto, auto, auto, 96px 96px, auto, auto;
  padding: 96px 24px;
}

.hero {
  background:
    radial-gradient(ellipse 52% 32% at 22% 24%, rgba(150, 8, 8, 0.26), transparent 72%),
    radial-gradient(ellipse 42% 28% at 80% 66%, rgba(0, 0, 0, 0.56), transparent 76%),
    repeating-radial-gradient(ellipse at 54% 46%, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 20px),
    linear-gradient(45deg, transparent 0 48%, rgba(255, 110, 60, 0.035) 49% 50%, transparent 51% 100%),
    linear-gradient(-45deg, transparent 0 48%, rgba(255, 255, 255, 0.018) 49% 50%, transparent 51% 100%),
    linear-gradient(148deg, rgba(84, 4, 4, 0.28), transparent 38%, rgba(0, 0, 0, 0.3) 70%, rgba(150, 8, 8, 0.14)),
    linear-gradient(180deg, rgba(13, 0, 0, 0.9), rgba(52, 3, 3, 0.66) 48%, rgba(5, 0, 0, 0.94));
  background-blend-mode: screen, multiply, soft-light, screen, screen, normal, normal;
  background-size: auto, auto, auto, 104px 104px, 104px 104px, auto, auto;
}

.hero::before,
.section::before {
  animation: sectionFogShift 20s ease-in-out infinite alternate;
  background:
    var(--section-fog, radial-gradient(ellipse 58% 34% at 24% 42%, rgba(98, 4, 4, 0.32), transparent 72%)),
    linear-gradient(115deg, transparent 0 24%, rgba(255, 112, 42, 0.055) 38%, transparent 54% 100%);
  content: "";
  filter: blur(34px);
  inset: -18%;
  opacity: 0.92;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.hero::after,
.section::after {
  animation: sectionSmokeDrift 26s ease-in-out infinite alternate;
  background:
    var(--section-smoke, radial-gradient(ellipse 36% 18% at 70% 62%, rgba(0, 0, 0, 0.46), transparent 76%)),
    repeating-linear-gradient(104deg, transparent 0 34px, rgba(255, 255, 255, 0.018) 35px 36px, transparent 37px 92px);
  content: "";
  filter: blur(48px);
  inset: -14%;
  opacity: 0.66;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.hero {
  --section-fog:
    radial-gradient(ellipse 54% 34% at 20% 20%, rgba(118, 6, 6, 0.34), transparent 74%),
    radial-gradient(ellipse 42% 26% at 82% 64%, rgba(255, 72, 20, 0.08), transparent 72%);
  --section-smoke:
    radial-gradient(ellipse 46% 18% at 50% 60%, rgba(0, 0, 0, 0.5), transparent 78%),
    radial-gradient(ellipse 28% 16% at 78% 24%, rgba(140, 7, 7, 0.18), transparent 74%);
}

#about {
  --grain-x: 18%;
  --grain-y: 62%;
  --section-glow:
    radial-gradient(ellipse 46% 30% at 12% 28%, rgba(146, 8, 8, 0.24), transparent 72%),
    radial-gradient(ellipse 34% 24% at 78% 72%, rgba(255, 92, 26, 0.08), transparent 74%);
  --section-mist:
    radial-gradient(ellipse 48% 28% at 62% 44%, rgba(0, 0, 0, 0.5), transparent 76%),
    radial-gradient(ellipse 38% 20% at 22% 82%, rgba(48, 1, 1, 0.46), transparent 76%);
  --section-fog:
    radial-gradient(ellipse 46% 30% at 18% 42%, rgba(108, 5, 5, 0.36), transparent 72%),
    radial-gradient(ellipse 34% 24% at 72% 48%, rgba(255, 86, 24, 0.12), transparent 74%);
  --section-smoke:
    radial-gradient(ellipse 42% 22% at 60% 34%, rgba(0, 0, 0, 0.5), transparent 76%),
    radial-gradient(ellipse 32% 20% at 22% 78%, rgba(128, 8, 8, 0.2), transparent 76%);
}

#specialties {
  --grain-x: 50%;
  --grain-y: 34%;
  --section-glow:
    radial-gradient(ellipse 58% 28% at 50% 24%, rgba(164, 7, 7, 0.24), transparent 74%),
    radial-gradient(ellipse 26% 20% at 82% 72%, rgba(255, 128, 38, 0.09), transparent 72%);
  --section-mist:
    radial-gradient(ellipse 54% 26% at 20% 70%, rgba(0, 0, 0, 0.5), transparent 78%),
    radial-gradient(ellipse 36% 20% at 64% 54%, rgba(72, 2, 2, 0.32), transparent 76%);
  --section-fog:
    radial-gradient(ellipse 58% 28% at 50% 28%, rgba(142, 6, 6, 0.26), transparent 74%),
    radial-gradient(ellipse 28% 18% at 78% 72%, rgba(255, 120, 40, 0.1), transparent 74%);
  --section-smoke:
    radial-gradient(ellipse 52% 24% at 20% 70%, rgba(0, 0, 0, 0.48), transparent 78%),
    radial-gradient(ellipse 36% 20% at 64% 54%, rgba(92, 4, 4, 0.22), transparent 76%);
}

#work {
  --grain-x: 72%;
  --grain-y: 48%;
  --section-glow:
    radial-gradient(ellipse 46% 28% at 18% 58%, rgba(255, 86, 24, 0.1), transparent 72%),
    radial-gradient(ellipse 56% 34% at 78% 30%, rgba(138, 5, 5, 0.28), transparent 74%);
  --section-mist:
    radial-gradient(ellipse 44% 24% at 48% 52%, rgba(0, 0, 0, 0.58), transparent 78%),
    radial-gradient(ellipse 42% 20% at 28% 24%, rgba(64, 2, 2, 0.34), transparent 74%);
  --section-fog:
    radial-gradient(ellipse 48% 26% at 18% 60%, rgba(255, 90, 28, 0.1), transparent 72%),
    radial-gradient(ellipse 56% 34% at 76% 32%, rgba(120, 5, 5, 0.32), transparent 74%);
  --section-smoke:
    radial-gradient(ellipse 44% 24% at 48% 52%, rgba(0, 0, 0, 0.54), transparent 78%),
    radial-gradient(ellipse 40% 18% at 28% 24%, rgba(88, 3, 3, 0.22), transparent 74%);
}

#opportunities {
  --grain-x: 36%;
  --grain-y: 28%;
  --section-glow:
    radial-gradient(ellipse 54% 34% at 72% 30%, rgba(170, 8, 8, 0.3), transparent 74%),
    radial-gradient(ellipse 34% 24% at 18% 72%, rgba(255, 104, 28, 0.1), transparent 74%);
  --section-mist:
    radial-gradient(ellipse 46% 28% at 34% 42%, rgba(0, 0, 0, 0.58), transparent 78%),
    radial-gradient(ellipse 34% 20% at 78% 78%, rgba(62, 2, 2, 0.38), transparent 76%);
  --section-fog:
    radial-gradient(ellipse 54% 34% at 70% 34%, rgba(156, 8, 8, 0.34), transparent 74%),
    radial-gradient(ellipse 34% 24% at 22% 70%, rgba(255, 104, 28, 0.1), transparent 74%);
  --section-smoke:
    radial-gradient(ellipse 44% 26% at 34% 42%, rgba(0, 0, 0, 0.56), transparent 78%),
    radial-gradient(ellipse 34% 20% at 78% 78%, rgba(82, 3, 3, 0.24), transparent 76%);
}

#founder {
  --grain-x: 58%;
  --grain-y: 64%;
  --section-glow:
    radial-gradient(ellipse 56% 30% at 28% 32%, rgba(142, 5, 5, 0.24), transparent 74%),
    radial-gradient(ellipse 34% 22% at 74% 70%, rgba(255, 94, 24, 0.08), transparent 76%);
  --section-mist:
    radial-gradient(ellipse 50% 24% at 50% 52%, rgba(0, 0, 0, 0.56), transparent 76%),
    radial-gradient(ellipse 30% 18% at 18% 82%, rgba(70, 2, 2, 0.3), transparent 74%);
  --section-fog:
    radial-gradient(ellipse 56% 30% at 28% 32%, rgba(122, 5, 5, 0.3), transparent 74%),
    radial-gradient(ellipse 34% 22% at 74% 70%, rgba(255, 94, 24, 0.09), transparent 76%);
  --section-smoke:
    radial-gradient(ellipse 48% 22% at 50% 52%, rgba(0, 0, 0, 0.52), transparent 76%),
    radial-gradient(ellipse 30% 18% at 18% 82%, rgba(128, 7, 7, 0.18), transparent 74%);
}

#booking {
  --grain-x: 24%;
  --grain-y: 42%;
  --section-glow:
    radial-gradient(ellipse 50% 34% at 20% 50%, rgba(160, 8, 8, 0.24), transparent 74%),
    radial-gradient(ellipse 36% 24% at 82% 36%, rgba(255, 95, 24, 0.08), transparent 74%);
  --section-mist:
    radial-gradient(ellipse 50% 26% at 54% 54%, rgba(0, 0, 0, 0.58), transparent 78%),
    radial-gradient(ellipse 34% 20% at 82% 76%, rgba(70, 2, 2, 0.34), transparent 76%);
  --section-fog:
    radial-gradient(ellipse 50% 34% at 20% 50%, rgba(138, 8, 8, 0.3), transparent 74%),
    radial-gradient(ellipse 36% 24% at 82% 36%, rgba(255, 95, 24, 0.09), transparent 74%);
  --section-smoke:
    radial-gradient(ellipse 48% 24% at 54% 54%, rgba(0, 0, 0, 0.54), transparent 78%),
    radial-gradient(ellipse 34% 20% at 82% 76%, rgba(92, 4, 4, 0.22), transparent 76%);
}

@keyframes sectionFogShift {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to { transform: translate3d(3%, 2%, 0) scale(1.08); }
}

@keyframes sectionSmokeDrift {
  from { transform: translate3d(2%, 2%, 0) scale(1.04); }
  to { transform: translate3d(-3%, -2%, 0) scale(1.12); }
}

.max {
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
  z-index: 1;
}

.about-grid,
.booking-grid,
.inkmentors-card {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr 1fr;
}

.mentor-card-wrap {
  background: rgba(212, 32, 32, 0.16);
  border-radius: 22px;
  isolation: isolate;
  overflow: hidden;
  padding: 1px;
  position: relative;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(212, 32, 32, 0.12);
}

.mentor-card-wrap::before {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 151, 47, 0.18) 8%, rgba(255, 151, 47, 0.98) 45%, rgba(255, 70, 18, 0.64) 70%, transparent 100%);
  border-radius: 999px;
  box-shadow:
    0 0 12px rgba(255, 136, 43, 0.82),
    0 0 28px rgba(255, 73, 18, 0.36);
  content: "";
  height: 96px;
  left: 0;
  position: absolute;
  top: 8%;
  width: 2px;
  animation: borderGlowSlide 4.2s ease-in-out infinite alternate;
  z-index: 3;
}

@keyframes borderGlowSlide {
  from { transform: translateY(0); }
  to { transform: translateY(calc(100% + 360px)); }
}

.mentor-card,
.spec-card,
.testimonial-card,
.award-card,
.inkmentors-card,
.booking-card,
.terms-card,
.form-card,
.quote-glass {
  backdrop-filter: blur(20px);
  background: linear-gradient(180deg, rgba(26, 5, 5, 0.44), rgba(10, 0, 0, 0.34));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

.mentor-card {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.mentor-card img {
  aspect-ratio: 3 / 4;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.mentor-card img.profile-photo {
  filter: contrast(1.05) saturate(0.88);
  object-position: center 18%;
}

.mentor-card-badge {
  background: linear-gradient(to top, rgba(14, 2, 3, 0.96), transparent);
  bottom: 0;
  left: 0;
  padding: 80px 22px 22px;
  position: absolute;
  right: 0;
}

.mentor-card-badge span,
.g-item span {
  background: var(--red);
  border-radius: 999px;
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 5px 14px;
}

.mentor-card-badge strong {
  display: block;
  font-size: 23px;
}

.mentor-card-badge em {
  color: var(--red);
  font-style: normal;
}

.section-label {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 20px;
}

.about-text .section-body {
  margin: 0 0 14px;
}

.quote-glass {
  overflow: hidden;
  margin: 32px 0;
  padding: 28px 30px;
  position: relative;
}

.about-more {
  margin-top: 6px;
}

.read-more-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--red-bright);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.12em;
  padding: 10px 0;
  text-transform: uppercase;
}

.read-more-toggle b {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  width: 8px;
}

.about-more.open .read-more-toggle b {
  transform: rotate(225deg);
}

.about-more-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.3s ease;
}

.about-more.open .about-more-panel {
  max-height: 520px;
  opacity: 1;
}

.about-more-panel p {
  color: var(--white-70);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.about-more-panel p + p {
  margin-top: 10px;
}

.quote-glass p {
  font-size: 17px;
  font-style: italic;
  line-height: 1.65;
  margin: 0 0 12px;
}

.quote-glass cite {
  color: var(--red);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spec-section,
.awards-section {
  background: linear-gradient(180deg, rgba(200, 30, 10, 0.06), transparent);
}

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

.spec-grid,
.testimonials-grid,
.awards-grid {
  display: grid;
  gap: 16px;
  margin-top: 56px;
}

.spec-grid,
.testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
}

.spec-card {
  overflow: hidden;
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.spec-card::before,
.testimonial-card::before,
.booking-card::before,
.inkmentors-card::before,
.award-card::before,
.quote-glass::before {
  background: conic-gradient(from 0deg, transparent 0 16%, rgba(255, 136, 43, 0.95), rgba(212, 32, 32, 0.9), transparent 52% 100%);
  content: "";
  inset: -55%;
  opacity: 0.68;
  pointer-events: none;
  position: absolute;
  animation: neonSpin 5.5s linear infinite;
  z-index: 0;
}

.spec-card::after,
.testimonial-card::after,
.booking-card::after,
.inkmentors-card::after,
.award-card::after,
.quote-glass::after {
  backdrop-filter: blur(26px);
  background: linear-gradient(180deg, rgba(26, 5, 5, 0.74), rgba(10, 0, 0, 0.58));
  border-radius: calc(20px - 2px);
  box-shadow: inset 0 0 26px rgba(255, 255, 255, 0.03);
  content: "";
  inset: 2px;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.spec-card > *,
.testimonial-card > *,
.booking-card > *,
.inkmentors-card > *,
.award-card > *,
.quote-glass > * {
  position: relative;
  z-index: 1;
}

.form-card::before {
  animation: neonSpin 6s linear infinite;
  background: conic-gradient(from 0deg, transparent 0 16%, rgba(255, 151, 47, 0.95), rgba(255, 70, 18, 0.78), rgba(212, 32, 32, 0.82), transparent 54% 100%);
  content: "";
  inset: -55%;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.form-card::after {
  backdrop-filter: blur(26px);
  background: linear-gradient(180deg, rgba(24, 4, 4, 0.76), rgba(8, 0, 0, 0.62));
  border-radius: calc(20px - 2px);
  box-shadow:
    inset 0 0 28px rgba(255, 255, 255, 0.03),
    inset 0 0 38px rgba(255, 80, 18, 0.06);
  content: "";
  inset: 2px;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.form-card > * {
  position: relative;
  z-index: 1;
}

.spec-card:hover {
  border-color: rgba(212, 32, 32, 0.38);
  transform: translateY(-4px);
}

.spec-card b {
  color: rgba(212, 32, 32, 0.22);
  display: block;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 20px;
}

.spec-card h3 {
  font-size: 18px;
  margin: 0 0 12px;
}

.spec-card p {
  color: var(--white-70);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

.testimonials-section {
  --section-glow:
    radial-gradient(ellipse 54% 32% at 74% 28%, rgba(92, 4, 4, 0.3), transparent 72%),
    radial-gradient(ellipse 34% 24% at 20% 70%, rgba(225, 30, 30, 0.12), transparent 74%);
}

.testimonial-carousel {
  isolation: isolate;
  margin-top: 46px;
  position: relative;
}

.testimonial-track {
  grid-auto-columns: calc((100% - 36px) / 3);
}

.testimonial-card {
  min-height: 360px;
  overflow: hidden;
  padding: 34px 30px;
  position: relative;
  scroll-snap-align: start;
}

.testimonial-top {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.testimonial-avatar {
  align-items: center;
  background: radial-gradient(circle at 30% 20%, rgba(255, 174, 96, 0.95), rgba(212, 32, 32, 0.8) 42%, rgba(67, 3, 3, 0.92) 100%);
  border: 1px solid rgba(255, 132, 43, 0.36);
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(255, 84, 24, 0.18);
  color: var(--white);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  line-height: 1;
  width: 48px;
}

.testimonial-top small {
  color: var(--white-40);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial-card b {
  color: rgba(212, 32, 32, 0.3);
  display: block;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 18px;
}

.testimonial-card h3 {
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 12px;
}

.testimonial-card p {
  color: var(--white-70);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 18px;
}

.testimonial-card strong {
  color: var(--red);
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.testimonial-card a {
  color: var(--white-40);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.testimonial-card a:hover {
  color: var(--red);
}

.section-row {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

.portfolio-carousel {
  isolation: isolate;
  position: relative;
}

.gallery-track {
  display: grid;
  gap: 18px;
  grid-auto-columns: calc((100% - 36px) / 3);
  grid-auto-flow: column;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.portfolio-carousel .g-item {
  min-height: 420px;
  scroll-snap-align: start;
}

.portfolio-carousel .g-item:first-child {
  grid-row: auto;
  min-height: 420px;
}

.carousel-btn {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(16, 2, 2, 0.72);
  border: 1px solid rgba(255, 132, 43, 0.36);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.36), 0 0 24px rgba(255, 84, 24, 0.16);
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-size: 34px;
  height: 48px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  width: 48px;
  z-index: 3;
}

.carousel-btn:hover {
  background: rgba(212, 32, 32, 0.28);
  border-color: rgba(255, 132, 43, 0.72);
  transform: translateY(-50%) scale(1.04);
}

.carousel-prev {
  left: -24px;
}

.carousel-next {
  right: -24px;
}

.g-item {
  background: var(--bg-mid);
  border-radius: 16px;
  min-height: 240px;
  overflow: hidden;
  position: relative;
}

.g-item:first-child {
  grid-row: span 2;
  min-height: 500px;
}

.g-item img {
  filter: grayscale(10%);
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  width: 100%;
}

.g-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.06);
}

.g-item div {
  align-items: end;
  background: linear-gradient(to top, rgba(14, 2, 3, 0.86), transparent 58%);
  display: flex;
  inset: 0;
  opacity: 0;
  padding: 20px;
  position: absolute;
  transition: opacity 0.3s;
}

.g-item:hover div {
  opacity: 1;
}

.center-action {
  margin-top: 40px;
  text-align: center;
}

.opportunities-grid {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr 0.82fr;
}

.opportunity-card {
  backdrop-filter: blur(26px);
  background: linear-gradient(180deg, rgba(26, 5, 5, 0.66), rgba(10, 0, 0, 0.46));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  padding: 40px 36px;
  position: relative;
}

.opportunity-card::before {
  animation: neonSpin 6s linear infinite;
  background: conic-gradient(from 0deg, transparent 0 18%, rgba(255, 136, 43, 0.9), rgba(212, 32, 32, 0.72), transparent 52% 100%);
  content: "";
  inset: -55%;
  opacity: 0.54;
  position: absolute;
  z-index: 0;
}

.opportunity-card::after {
  backdrop-filter: blur(22px);
  background: linear-gradient(180deg, rgba(26, 5, 5, 0.78), rgba(10, 0, 0, 0.62));
  border-radius: calc(20px - 2px);
  content: "";
  inset: 2px;
  position: absolute;
  z-index: 0;
}

.opportunity-card > * {
  position: relative;
  z-index: 1;
}

.opportunity-card h3 {
  font-size: 24px;
  margin: 0 0 18px;
}

.opportunity-card ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.opportunity-card li {
  border-bottom: 1px solid var(--white-08);
  color: var(--white-70);
  font-size: 14px;
  line-height: 1.6;
  padding: 12px 0 12px 22px;
  position: relative;
}

.opportunity-card li::before {
  background: var(--red);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 21px;
  width: 6px;
}

.opportunity-card p {
  color: var(--white-40);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.dark-realism-showcase {
  margin-top: 60px;
}

.showcase-heading {
  margin-bottom: 28px;
  max-width: 620px;
}

.showcase-heading h3 {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.05;
  margin: 0 0 12px;
}

.showcase-heading p:last-child {
  color: var(--white-70);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.dark-realism-carousel {
  isolation: isolate;
  position: relative;
}

.dark-realism-track {
  grid-auto-columns: calc((100% - 36px) / 3);
}

.dark-realism-carousel .g-item,
.dark-realism-carousel .g-item:first-child {
  border: 1px solid rgba(255, 132, 43, 0.18);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  grid-row: auto;
  min-height: 560px;
  scroll-snap-align: start;
}

.dark-realism-carousel .g-item::after {
  background: linear-gradient(180deg, rgba(255, 132, 43, 0.24), transparent 18%, transparent 78%, rgba(130, 0, 0, 0.34));
  content: "";
  inset: 0;
  opacity: 0.38;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.3s;
}

.dark-realism-carousel .g-item:hover::after {
  opacity: 0.14;
}

.dark-realism-carousel .g-item img {
  filter: grayscale(4%) contrast(1.04);
}

.awards-grid {
  grid-template-columns: repeat(4, 1fr);
}

.award-card {
  overflow: hidden;
  padding: 36px 20px;
  position: relative;
  text-align: center;
  transition: all 0.3s;
}

.award-card:hover {
  background: rgba(30, 6, 6, 0.72);
  border-color: rgba(212, 32, 32, 0.4);
  transform: translateY(-3px);
}

.award-card b {
  background: var(--pill);
  background-clip: text;
  color: transparent;
  display: block;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
}

.award-card span {
  color: var(--white-40);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.inkmentors-card {
  margin-top: 48px;
  overflow: hidden;
  padding: 56px;
  position: relative;
}

.inkmentors-card h3 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}

.ink-features {
  display: grid;
  gap: 12px;
}

.ink-features div {
  background: rgba(212, 32, 32, 0.08);
  border: 1px solid rgba(212, 32, 32, 0.2);
  border-radius: 12px;
  overflow: hidden;
  padding: 18px 20px 18px 58px;
  position: relative;
}

.feature-icon {
  align-items: center;
  background: rgba(255, 101, 24, 0.09);
  border: 1px solid rgba(255, 101, 24, 0.18);
  border-radius: 10px;
  color: rgba(255, 125, 48, 0.9);
  display: flex;
  height: 30px;
  justify-content: center;
  left: 16px;
  position: absolute;
  top: 16px;
  width: 30px;
}

.feature-icon svg {
  fill: none;
  height: 16px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 16px;
}

.ink-features b,
.ink-features span {
  display: block;
}

.ink-features b {
  font-size: 13px;
}

.ink-features span {
  color: var(--white-40);
  font-size: 12px;
  margin-top: 3px;
}

.booking-card {
  overflow: hidden;
  padding: 44px 40px;
  position: relative;
}

.booking-card h3 {
  font-size: 22px;
  margin: 0 0 6px;
}

.booking-card > p {
  color: var(--white-40);
  font-size: 13px;
  margin: 0;
}

.booking-card ul {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
}

.terms-body ul {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.booking-card li,
.terms-body li {
  border-bottom: 1px solid var(--white-08);
  color: var(--white-70);
  font-size: 14px;
  line-height: 1.55;
  padding: 13px 0 13px 18px;
  position: relative;
}

.booking-card li::before,
.terms-body li::before {
  background: var(--red);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 21px;
  width: 6px;
}

.booking-note {
  color: var(--white-40);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.full {
  width: 100%;
}

.social-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.social-pills a {
  background: var(--white-08);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--white-70);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 20px;
}

.social-pills a:hover {
  border-color: var(--red);
  color: var(--red);
}

.page-hero {
  padding: 140px 40px 80px;
  text-align: center;
}

.page-title {
  font-size: clamp(42px, 8vw, 80px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 16px;
}

.page-desc {
  margin: 0 auto;
  max-width: 560px;
}

.booking-main {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) 440px;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 40px 100px;
}

.terms-page .booking-main {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.terms-card {
  margin-bottom: 16px;
  overflow: hidden;
}

.terms-card-header {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--white-08);
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 20px 28px;
  text-align: left;
  width: 100%;
}

.terms-card-header h3 {
  align-items: center;
  display: flex;
  flex: 1;
  font-size: 15px;
  gap: 10px;
  margin: 0;
}

.terms-card-header h3 span {
  color: var(--red);
  font-size: 12px;
}

.terms-icon {
  font-size: 16px;
  font-style: normal;
  line-height: 1;
}

.terms-card-header b {
  color: var(--red);
  font-size: 18px;
  transition: transform 0.3s;
}

.terms-card.open .terms-card-header b {
  transform: rotate(180deg);
}

.terms-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height 0.45s ease, padding 0.3s ease;
}

.terms-card.open .terms-body {
  max-height: 1200px;
  padding: 20px 28px 24px;
}

.terms-body p {
  color: var(--white-70);
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 14px;
}

.terms-body a {
  color: var(--red-bright);
  font-weight: 800;
  text-decoration: none;
}

.terms-body a:hover {
  text-decoration: underline;
}

.price-mark {
  color: var(--red-bright);
  font-style: normal;
  font-weight: 900;
}

.phase-block,
.session-grid div,
.warning-banner,
.summary {
  background: rgba(212, 32, 32, 0.07);
  border: 1px solid rgba(212, 32, 32, 0.2);
  border-radius: 12px;
  margin: 10px 0;
  padding: 16px 18px;
}

.phase-block strong,
.session-grid strong {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}

.phase-block p {
  font-size: 13px;
  margin: 0;
}

.session-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin: 12px 0;
}

.session-grid div {
  margin: 0;
  text-align: center;
}

.session-grid span {
  color: var(--white-40);
  display: block;
  font-size: 12px;
}

.form-col {
  position: sticky;
  top: 100px;
}

.form-card {
  overflow: hidden;
  position: relative;
}

.form-header {
  border-bottom: 1px solid var(--white-08);
  padding: 28px 32px 20px;
}

.form-header h2 {
  font-size: 22px;
  margin: 0 0 4px;
}

.form-header p {
  color: var(--white-40);
  font-size: 13px;
  margin: 0;
}

.form-body {
  padding: 24px 32px 32px;
}

.steps {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
}

.step {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  position: relative;
}

.step:not(:last-child)::after {
  background: var(--white-15);
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  top: 14px;
  width: 100%;
  z-index: 0;
}

.step.done:not(:last-child)::after,
.step.active:not(:last-child)::after {
  background: var(--red);
}

.step span {
  align-items: center;
  background: var(--white-08);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--white-40);
  display: flex;
  font-size: 11px;
  font-weight: 800;
  height: 28px;
  justify-content: center;
  position: relative;
  width: 28px;
  z-index: 1;
}

.step.active span {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 12px rgba(212, 32, 32, 0.48);
  color: var(--white);
}

.step.done span {
  background: rgba(212, 32, 32, 0.18);
  border-color: var(--red);
  color: var(--red);
}

.step small {
  color: var(--white-40);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 6px;
  text-transform: uppercase;
}

.step.active small {
  color: var(--red);
}

.form-panel,
.success-screen {
  display: none;
}

.form-panel.active,
.success-screen.active {
  display: block;
}

.field {
  color: var(--white-40);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  appearance: none;
  background: var(--white-08);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--white);
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  margin-top: 8px;
  outline: none;
  padding: 13px 16px;
  text-transform: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.field-help {
  color: var(--white-40);
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  margin-top: 6px;
  text-transform: none;
}

.field textarea {
  line-height: 1.6;
  min-height: 100px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: rgba(212, 32, 32, 0.06);
  border-color: var(--red);
}

.field-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.radio-group {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.project-type-grid {
  grid-template-columns: 1fr;
}

.radio-opt,
.check-opt {
  background: var(--white-08);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--white-70);
  cursor: pointer;
  display: flex;
  font-size: 13px;
  gap: 12px;
  letter-spacing: 0;
  line-height: 1.45;
  padding: 12px 16px;
  text-transform: none;
}

.radio-opt {
  align-items: center;
}

.radio-opt span {
  display: block;
}

.radio-opt small {
  color: var(--white-40);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.45;
  margin-top: 4px;
}

.promo-opt {
  background: var(--white-08);
  border-color: var(--glass-border);
  box-shadow: none;
}

.promo-opt small {
  color: var(--red-bright);
}

.radio-opt input,
.check-opt input {
  flex: 0 0 16px;
  height: 16px;
  margin: 2px 0 0;
  width: 16px;
}

.radio-opt input[type="radio"] {
  appearance: none;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 7px;
  display: flex;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.radio-opt input[type="radio"]::after {
  color: var(--white);
  content: "✓";
  font-size: 11px;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.2s, transform 0.2s;
}

.radio-opt input[type="radio"]:checked {
  background: var(--red);
  border-color: var(--red-bright);
  box-shadow: 0 0 14px rgba(212, 32, 32, 0.42);
}

.radio-opt input[type="radio"]:checked::after {
  opacity: 1;
  transform: scale(1);
}

.radio-opt.selected,
.check-opt:has(input:checked) {
  background: rgba(212, 32, 32, 0.1);
  border-color: var(--red);
}

.radio-opt.promo-opt.selected {
  background: rgba(212, 32, 32, 0.12);
  border-color: var(--red);
  box-shadow: none;
}

.project-card {
  align-items: start;
  column-gap: 14px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
}

.project-card input[type="radio"] {
  grid-column: 1;
  grid-row: 1;
}

.project-card > span {
  grid-column: 2;
  grid-row: 1;
  padding-top: 1px;
}

.project-card select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--white-40) 50%) calc(100% - 18px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, var(--white-40) 50%, transparent 50%) calc(100% - 14px) 50% / 6px 6px no-repeat,
    rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  border-radius: 9px;
  color: var(--white);
  font-size: 13px;
  grid-column: 2;
  margin-top: 10px;
  outline: none;
  padding: 11px 34px 11px 12px;
  width: 100%;
}

.project-card select:focus {
  border-color: var(--red);
}

.project-card select option {
  background: #1c0303;
  color: var(--white);
}

.skin-tone-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
}

.skin-tone-opt {
  background: var(--white-08);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  cursor: pointer;
  display: grid;
  gap: 8px;
  padding: 10px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.skin-tone-opt input {
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skin-swatch {
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 46%),
    var(--tone);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  box-shadow: inset 0 -12px 18px rgba(0, 0, 0, 0.14);
  display: block;
  height: 42px;
}

.skin-tone-opt b {
  color: var(--white-70);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.skin-tone-opt:hover,
.skin-tone-opt.selected {
  background: rgba(212, 32, 32, 0.1);
  border-color: rgba(255, 132, 43, 0.9);
  transform: translateY(-1px);
}

.upload-area {
  background: var(--white-05);
  border: 2px dashed var(--glass-border);
  border-radius: 12px;
  cursor: pointer;
  display: block;
  margin-bottom: 12px;
  padding: 28px;
  text-align: center;
  transition: all 0.2s;
}

.upload-area:hover {
  background: rgba(212, 32, 32, 0.05);
  border-color: var(--red);
}

.upload-area input {
  display: none;
}

.upload-area strong,
.upload-area span {
  display: block;
}

.upload-area strong {
  color: var(--white-70);
  font-size: 13px;
  margin-bottom: 4px;
}

.upload-area span {
  color: var(--white-40);
  font-size: 12px;
  line-height: 1.45;
  margin-left: auto;
  margin-right: auto;
  max-width: 320px;
}

.body-upload {
  border-color: rgba(255, 132, 43, 0.24);
  margin-top: 14px;
}

.upload-files {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.upload-files span {
  background: rgba(212, 32, 32, 0.12);
  border: 1px solid rgba(212, 32, 32, 0.3);
  border-radius: 999px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
}

.warning-banner {
  margin: 0 0 20px;
}

.warning-banner p {
  color: var(--white-70);
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.summary {
  margin: 0 0 20px;
}

.summary h4 {
  color: var(--white-40);
  font-size: 11px;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.summary p {
  border-bottom: 1px solid var(--white-08);
  color: var(--white);
  display: grid;
  font-size: 13px;
  gap: 10px;
  grid-template-columns: 105px 1fr;
  margin: 0;
  padding: 8px 0;
}

.summary span {
  color: var(--white-40);
}

.form-nav {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.btn-next,
.btn-back {
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  min-height: 48px;
  padding: 0 20px;
}

.btn-next {
  background: transparent;
  box-shadow:
    0 18px 28px rgba(0, 0, 0, 0.34),
    0 16px 42px rgba(184, 10, 10, 0.42),
    0 0 36px rgba(255, 93, 20, 0.18);
  color: var(--white);
  flex: 1;
  isolation: isolate;
  overflow: hidden;
  position: relative;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.22);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-next::before {
  animation: neonSpin 3.1s linear infinite;
  background: conic-gradient(from 0deg, transparent 0 18%, rgba(255, 171, 73, 0.95) 28%, rgba(255, 81, 0, 0.9) 38%, transparent 52% 100%);
  border-radius: inherit;
  content: "";
  inset: -95%;
  opacity: 0.9;
  pointer-events: none;
  position: absolute;
  z-index: -2;
}

.btn-next::after {
  background: linear-gradient(180deg, rgba(255, 83, 54, 0.92) 0%, rgba(184, 12, 12, 0.96) 48%, rgba(137, 3, 3, 0.98) 100%);
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -8px 16px rgba(70, 0, 0, 0.32);
  content: "";
  inset: 2px;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.btn-next:hover {
  opacity: 0.92;
  transform: translateY(-3px);
  box-shadow:
    0 20px 34px rgba(0, 0, 0, 0.38),
    0 18px 52px rgba(255, 92, 24, 0.42),
    0 0 64px rgba(255, 126, 36, 0.26);
}

.btn-back {
  background: var(--white-08);
  border: 1px solid var(--glass-border);
  color: var(--white-70);
}

.success-screen {
  padding: 34px 12px;
  text-align: center;
}

.success-screen h3 {
  font-size: 24px;
  margin: 0 0 12px;
}

.success-screen p {
  color: var(--white-70);
  line-height: 1.7;
}

.shake {
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
}

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

.reveal.in {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

.footer {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(14, 2, 3, 0.85);
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 40px 32px;
}

.footer-logo {
  font-size: 18px;
  font-weight: 900;
}

.footer p,
.footer a {
  color: var(--white-40);
  font-size: 12px;
}

.footer div {
  display: flex;
  gap: 24px;
}

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

@media (max-width: 900px) {
  .nav {
    padding: 16px 20px;
  }

  .nav.scrolled {
    padding: 12px 20px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 116px;
  }

  .about-grid,
  .booking-grid,
  .inkmentors-card,
  .opportunities-grid,
  .booking-main {
    grid-template-columns: 1fr;
  }

  .booking-main {
    padding: 0 20px 80px;
  }

  .form-col {
    position: static;
  }

  .spec-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .portfolio-carousel .g-item,
  .portfolio-carousel .g-item:first-child,
  .dark-realism-carousel .g-item,
  .dark-realism-carousel .g-item:first-child {
    min-height: 360px;
  }

  .carousel-prev {
    left: 8px;
  }

  .carousel-next {
    right: 8px;
  }

  .g-item:first-child {
    grid-row: span 1;
    min-height: 220px;
  }

  .g-item {
    min-height: 180px;
  }

  .inkmentors-card,
  .booking-card {
    padding: 32px 24px;
  }
}

@media (max-width: 580px) {
  .logo {
    font-size: 16px;
  }

  .nav > .btn-pill,
  .nav > .btn-outline {
    min-height: 40px;
    padding: 0 16px;
  }

  .hero-title {
    font-size: clamp(42px, 15vw, 64px);
  }

  .stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .stat-pill {
    min-width: 0;
    padding: 18px 16px;
  }

  .hero-actions,
  .button-row,
  .form-nav {
    flex-direction: column;
  }

  .btn-pill,
  .btn-outline,
  .btn-next,
  .btn-back {
    width: 100%;
  }

  .gallery-grid,
  .awards-grid,
  .field-row,
  .session-grid,
  .project-type-grid {
    grid-template-columns: 1fr;
  }

  .gallery-track {
    grid-auto-columns: 86%;
  }

  .portfolio-carousel .g-item,
  .portfolio-carousel .g-item:first-child,
  .dark-realism-carousel .g-item,
  .dark-realism-carousel .g-item:first-child {
    min-height: 420px;
  }

  .carousel-btn {
    height: 42px;
    width: 42px;
  }

  .section,
  .page-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-header,
  .form-body {
    padding-left: 22px;
    padding-right: 22px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer div {
    flex-wrap: wrap;
  }
}
