/* ==========================================================================
   NEOGRAPHS WEBSITE STYLESHEET — NG WATCHTOWER STANDALONE
   Strict Material Charcoal Aesthetics | Zero Em-Dashes | Responsive
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
}

/* ==========================================================================
   CUSTOM MODERN SCROLLBAR
   ========================================================================== */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #080808;
}

::-webkit-scrollbar-thumb {
  background: #242429;
  border-radius: 4px;
  border: 2px solid #080808;
  transition: background var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
  background: #3e3e46;
}

/* Firefox Custom Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #242429 #080808;
}

/* Base Links & Buttons */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* Container Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.container-narrow {
  max-width: var(--max-width-narrow);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(13, 13, 13, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 100;
  transition: background var(--transition-normal), border-color var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(13, 13, 13, 0.94);
  border-bottom-color: var(--border-light);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Brand Logo */
.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter var(--transition-fast), transform var(--transition-fast);
}

.brand-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-bright);
  text-transform: uppercase;
}

.brand-title span {
  color: var(--accent);
}

.brand-link:hover .brand-icon {
  filter: brightness(1.2);
}

.brand-link:hover .brand-title {
  color: var(--text-heading);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

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

.nav-link.active {
  color: var(--text-bright);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Header Action Button */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading);
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.btn-header-cta:hover {
  background: var(--bg-hover);
  border-color: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-bright);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 84px 0 60px 0;
  text-align: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 28px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--text-heading);
  max-width: 880px;
  margin: 0 auto 22px auto;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.68;
  color: var(--text-body);
  max-width: 760px;
  margin: 0 auto 36px auto;
  font-weight: 400;
}

/* Hero Action Buttons */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--accent);
  color: #f0f0f0;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 26px rgba(20, 115, 230, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--bg-card);
  color: var(--text-bright);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: var(--bg-hover);
  border-color: var(--border-active);
  color: var(--text-heading);
}

/* Host Platform Badges */
.host-compatibility-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  font-size: 13px;
  color: var(--text-muted);
}

.host-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.host-badge-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-mono);
}

.host-badge-ae {
  background: #2b1150;
  color: #c988ff;
  border: 1px solid rgba(201, 136, 255, 0.25);
}

.host-badge-ppro {
  background: #001a3d;
  color: #4da6ff;
  border: 1px solid rgba(77, 166, 255, 0.25);
}

/* ==========================================================================
   3D HERO FLOWING SHOWCASE (CONTINUOUS 3D MOTION STREAM)
   Subtly tilted 3D stage | Seamless left-to-right flow | Zero jitter | Pure GIFs
   ========================================================================== */

.hero-3d-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  perspective: 1400px;
  perspective-origin: 50% 25%;
  padding: 16px 0 70px 0;
  margin-top: 14px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 3%,
    #000 10%,
    #000 90%,
    rgba(0, 0, 0, 0.4) 97%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 3%,
    #000 10%,
    #000 90%,
    rgba(0, 0, 0, 0.4) 97%,
    transparent 100%
  );
}

/* 3D Tilted Stage: Subtle pitch back into space for product promo depth */
.hero-3d-stage {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(8deg) rotateY(-2deg);
  z-index: 2;
  will-change: transform;
}

/* Continuous Horizontal Flow Track (Left to Right) */
.hero-flow-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: heroFlowLeftToRight 48s linear infinite;
}

/* Pause the entire track smoothly on hover for zero-jitter inspection */
.hero-3d-viewport:hover .hero-flow-track {
  animation-play-state: paused;
}

/* Groups of 5 cards (duplicated for mathematical infinite loop) */
.hero-cards-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  flex-shrink: 0;
}

/* Seamless Left-to-Right Loop */
@keyframes heroFlowLeftToRight {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0%, 0, 0);
  }
}

/* Pure 3D Hero Card Chassis (Only the GIF) */
.hero-card {
  position: relative;
  width: 290px;
  flex-shrink: 0;
  background: #0f0f13;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 22px 48px -12px rgba(0, 0, 0, 0.88),
    0 0 1px 1px rgba(255, 255, 255, 0.06);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
  cursor: pointer;
}

/* Smooth, non-jittery hover focus */
.hero-card:hover {
  transform: scale(1.03) translateZ(12px);
  border-color: rgba(20, 115, 230, 0.6);
  box-shadow:
    0 32px 70px -12px rgba(0, 0, 0, 0.96),
    0 0 28px rgba(20, 115, 230, 0.32),
    0 0 1px 1px rgba(20, 115, 230, 0.45);
  z-index: 10;
}

.hero-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 11px;
  image-rendering: -webkit-optimize-contrast;
  pointer-events: none;
  user-select: none;
}

/* Ambient Stage Floor Glow: Soft 360-degree radial fade with zero horizontal cutoff */
.hero-stage-glow {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  max-width: 920px;
  height: 180px;
  background: radial-gradient(
    ellipse at center,
    rgba(20, 115, 230, 0.13) 0%,
    rgba(20, 115, 230, 0.04) 35%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 1;
  filter: blur(32px);
}

/* Mobile & Tablet Responsive Adjustments */
@media (max-width: 991px) {
  .hero-card {
    width: 250px;
  }
  .hero-cards-group {
    gap: 20px;
    padding-right: 20px;
  }
  .hero-3d-stage {
    transform: rotateX(6deg) rotateY(-1deg);
  }
}

@media (max-width: 600px) {
  .hero-card {
    width: 210px;
  }
  .hero-cards-group {
    gap: 16px;
    padding-right: 16px;
  }
}

/* ==========================================================================
   WHY IT EXISTS NARRATIVE SECTION (MATERIAL CHARCOAL EDITORIAL SPLIT)
   ========================================================================== */

.narrative-section {
  padding: 72px 0;
  border-top: 1px solid var(--border-ultra-subtle);
  border-bottom: 1px solid var(--border-ultra-subtle);
}

.narrative-wrap {
  max-width: 1060px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
}

.narrative-header {
  margin-bottom: 36px;
}

.narrative-main-heading {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.015em;
  margin: 10px 0 0 0;
}

.narrative-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  position: relative;
}

.narrative-split-grid::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--border-subtle);
}

.narrative-block {
  position: relative;
}

.narrative-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: block;
}

.narrative-text {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-body);
  margin: 0;
}

.narrative-text + .narrative-text {
  margin-top: 14px;
}

.narrative-text strong {
  color: var(--text-heading);
  font-weight: 600;
}

/* ==========================================================================
   ALTERNATING FEATURE SHOWCASE (LEFT GIF / RIGHT TEXT)
   ========================================================================== */

.features-section {
  padding: 90px 0 50px 0;
}

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

.section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 14px 0;
}

.section-desc {
  font-size: 15.5px;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

/* Feature Row Container (GIFs scaled 20% larger: 372px width) */
.feature-row {
  display: grid;
  grid-template-columns: 372px 1fr;
  gap: 56px;
  align-items: center;
  justify-content: center;
  margin-bottom: 84px;
}

.feature-row.reversed {
  grid-template-columns: 1fr 372px;
}

.feature-row.reversed .feature-visual {
  order: 2;
}

.feature-row.reversed .feature-content {
  order: 1;
}

/* Feature Visual Media Box (372px width, ultra-crisp, refined border) */
.feature-visual {
  position: relative;
  max-width: 372px;
  width: 100%;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 6px;
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.feature-visual:hover {
  border-color: var(--border-accent);
}

.visual-media-frame {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
}

.visual-media-frame img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

/* Wide Feature Showcase (Dedicated Flagship at Bottom for Drag & Drop GIF) */
.wide-feature-section {
  margin-top: 40px;
  padding: 72px 0 20px 0;
  border-top: 1px solid var(--border-ultra-subtle);
}

.wide-feature-header {
  max-width: 760px;
  margin: 0 auto 36px auto;
  text-align: center;
}

.wide-feature-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 14px 0 16px 0;
}

.wide-feature-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0;
}

.wide-feature-visual {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: 0 24px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px -10px var(--accent-glow);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.wide-feature-visual:hover {
  border-color: var(--border-accent);
}

.wide-media-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
}

.wide-media-frame img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

.wide-feature-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.shortcut-tip-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-body);
}

.shortcut-tip-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-weight: 600;
}

/* Feature Content Block */
.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-category-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.feature-heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0 0 16px 0;
}

.feature-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0 0 24px 0;
}

/* Feature Bullets */
.feature-bullets {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.5;
}

.bullet-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Micro Shortcut Keycap Box */
.feature-key-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-muted);
  width: fit-content;
}

kbd {
  padding: 2px 6px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-bright);
}

/* ==========================================================================
   15 CORE CAPABILITIES GRID
   ========================================================================== */

.capabilities-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-ultra-subtle);
}

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

.cap-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.cap-card:hover {
  background: var(--bg-surface);
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.cap-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.cap-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-bright);
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.cap-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

/* ==========================================================================
   TECHNICAL SPECS & COMPATIBILITY
   ========================================================================== */

.specs-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-ultra-subtle);
}

.specs-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.specs-table th {
  padding: 16px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--bg-card-foot);
  border-bottom: 1px solid var(--border-subtle);
}

.specs-table td {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-ultra-subtle);
  vertical-align: middle;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table tr:hover td {
  background: var(--bg-surface);
}

.specs-label {
  font-weight: 600;
  color: var(--text-bright);
  width: 28%;
}

/* ==========================================================================
   PRICING & LAUNCH TIER
   ========================================================================== */

.pricing-section {
  padding: 90px 0;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, var(--bg-card) 0%, #12151c 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 44px 38px;
  position: relative;
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.8), 0 0 50px -15px var(--accent-glow);
  text-align: center;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.pricing-card-wrap:hover {
  transform: translateY(-2px);
}

.pricing-card-wrap.team-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, #15161c 100%);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.8);
}

.pricing-card-wrap.team-card:hover {
  border-color: var(--border-light);
}

.pricing-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(20, 115, 230, 0.15);
  border: 1px solid var(--accent);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #70b4ff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-badge.standard {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
}

.pricing-product-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 10px 0;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 8px 0;
  min-height: 72px;
}

.price-currency {
  font-size: 26px;
  font-weight: 600;
  color: var(--text-bright);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1;
}

.price-amount.custom-quote-text {
  font-size: 48px;
  letter-spacing: -0.02em;
}

.price-term {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-tier-notice {
  font-size: 13px;
  color: var(--star);
  margin: 0 0 28px 0;
  font-weight: 500;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-tier-notice.team-tier-notice {
  color: var(--text-body);
  font-weight: 400;
  line-height: 1.5;
}

.pricing-features-list {
  list-style: none;
  margin: 0 0 34px 0;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-primary);
}

.pricing-features-list li svg {
  color: var(--success);
  flex-shrink: 0;
}

.pricing-card-bottom {
  margin-top: auto;
  width: 100%;
}

.btn-pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  min-height: 56px;
  box-sizing: border-box;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px var(--accent-glow);
  transition: all var(--transition-fast);
}

.btn-pricing-cta:hover {
  background: var(--accent-light);
  box-shadow: 0 6px 30px rgba(20, 115, 230, 0.45);
  transform: translateY(-1px);
}

.btn-pricing-cta.btn-pricing-team {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-bright);
  box-shadow: none;
}

.btn-pricing-cta.btn-pricing-team:hover {
  background: var(--bg-elevated);
  border-color: var(--border-active);
  color: #fff;
  transform: translateY(-1px);
}

.pricing-subnote {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
  margin-bottom: 0;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-section {
  padding: 80px 0 100px 0;
  border-top: 1px solid var(--border-ultra-subtle);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.open {
  border-color: var(--border-light);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-bright);
}

.faq-trigger:hover {
  color: var(--text-heading);
}

.faq-icon {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 250ms var(--ease-out), padding 250ms var(--ease-out);
  padding: 0 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 22px 24px;
}

/* ==========================================================================
   GLOBAL FOOTER
   ========================================================================== */

.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 40px 0;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 320px;
  margin-top: 14px;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px 0;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--text-bright);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--border-ultra-subtle);
  font-size: 12px;
  color: var(--text-dim);
}

.system-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.system-status .pulse-dot {
  width: 6px;
  height: 6px;
}

/* ==========================================================================
   IMAGE MODAL PREVIEW (LIGHTBOX)
   ========================================================================== */

.modal-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 30px;
}

.modal-lightbox.active {
  display: flex;
}

.modal-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius-md);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.9);
  border: 1px solid var(--border-light);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 28px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.modal-close-btn:hover {
  color: var(--text-heading);
}

/* ==========================================================================
   SOPHISTICATED MOTION DESIGN SYSTEM
   Hardware-accelerated, zero-artifact scroll interactions
   ========================================================================== */

/* 1. Problem & Fix Narrative Section Convergence */
.narrative-wrap {
  overflow: hidden;
}

.narrative-split-grid {
  perspective: 1000px;
}

html.motion-ready .narrative-block-problem {
  transform: translate3d(calc((1 - var(--narrative-progress, 0)) * -52px), 0, 0);
  opacity: calc(0.25 + 0.75 * var(--narrative-progress, 0));
  will-change: transform, opacity;
  transition: transform 0.12s linear, opacity 0.12s linear;
}

html.motion-ready .narrative-block-fix {
  transform: translate3d(calc((1 - var(--narrative-progress, 0)) * 52px), 0, 0);
  opacity: calc(0.25 + 0.75 * var(--narrative-progress, 0));
  will-change: transform, opacity;
  transition: transform 0.12s linear, opacity 0.12s linear;
}

html.motion-ready .narrative-split-grid::after {
  transform: scaleY(calc(0.05 + 0.95 * var(--narrative-progress, 0)));
  opacity: calc(0.1 + 0.9 * var(--narrative-progress, 0));
  will-change: transform, opacity;
  transform-origin: top center;
  transition: transform 0.12s linear, opacity 0.12s linear;
}

html.motion-ready .narrative-wrap.is-merged .narrative-block-problem,
html.motion-ready .narrative-wrap.is-merged .narrative-block-fix {
  transform: none !important;
  opacity: 1 !important;
}

html.motion-ready .narrative-wrap.is-merged .narrative-split-grid::after {
  transform: scaleY(1) !important;
  opacity: 1 !important;
}

/* 2. Alternating Feature Rows ("Built for the Way Editors Actually Work") */
html.motion-ready .features-section .section-header {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease-out;
  will-change: transform, opacity;
}

html.motion-ready .features-section .section-header.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.motion-ready .feature-row .feature-visual {
  opacity: 0;
  transform: translate3d(-48px, 0, 0) scale(0.96);
  filter: blur(3px);
  transition: 
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    border-color var(--transition-fast);
  will-change: transform, opacity, filter;
}

html.motion-ready .feature-row .feature-content {
  opacity: 0;
  transform: translate3d(48px, 0, 0);
  transition: 
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.08s;
  will-change: transform, opacity;
}

/* Reversed rows: Enter from opposite directions */
html.motion-ready .feature-row.reversed .feature-visual {
  transform: translate3d(48px, 0, 0) scale(0.96);
}

html.motion-ready .feature-row.reversed .feature-content {
  transform: translate3d(-48px, 0, 0);
}

/* In-view settled state */
html.motion-ready .feature-row.in-view .feature-visual {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

html.motion-ready .feature-row.in-view .feature-content {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* 3. Wide Timeline Showcase 3D Perspective Bottom-Rise ("Drag straight to timeline") */
.wide-feature-section {
  perspective: 950px;
  perspective-origin: 50% 22%;
}

html.motion-ready .wide-feature-header {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.75s ease-out;
  will-change: transform, opacity;
}

html.motion-ready .wide-feature-header.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* 3D Tilted Card: Top is smaller/narrower (tilted back), bottom is wider and closer */
html.motion-ready .wide-feature-visual {
  opacity: 0;
  transform: translate3d(0, 110px, -50px) rotateX(24deg) scale(0.88);
  transform-origin: center bottom;
  filter: blur(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: 
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    border-color var(--transition-fast),
    box-shadow 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
}

/* In-view: Un-tilts flat and sits firmly on the stage */
html.motion-ready .wide-feature-visual.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateX(0deg) scale(1);
  filter: blur(0);
  box-shadow: 0 24px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px -10px var(--accent-glow);
}

html.motion-ready .wide-feature-footer .shortcut-tip-box {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease-out;
  will-change: transform, opacity;
}

html.motion-ready .wide-feature-visual.in-view .wide-feature-footer .shortcut-tip-box:nth-child(1) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.22s;
}

html.motion-ready .wide-feature-visual.in-view .wide-feature-footer .shortcut-tip-box:nth-child(2) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.32s;
}

/* 4. Capabilities 15-Card Staggered Reveal ("Join the crowd") */
html.motion-ready .capabilities-section .section-header {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.75s ease-out;
  will-change: transform, opacity;
}

html.motion-ready .capabilities-section .section-header.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.motion-ready .cap-card {
  opacity: 0;
  transform: translate3d(0, 36px, 0) scale(0.96);
  transition: 
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    background-color var(--transition-fast),
    border-color var(--transition-fast);
  will-change: transform, opacity;
}

html.motion-ready .cap-card.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

html.motion-ready .cap-card.in-view:hover {
  transform: translate3d(0, -2px, 0) scale(1);
}

/* 5. Compatibility & System Footprint (Diagnostic Readout Cascade) */
html.motion-ready .specs-section .section-header {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.75s ease-out;
  will-change: transform, opacity;
}

html.motion-ready .specs-section .section-header.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.motion-ready .specs-table-wrap {
  opacity: 0;
  transform: translate3d(0, 44px, 0) scale(0.97);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: 
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

html.motion-ready .specs-table-wrap.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.75);
}

html.motion-ready .specs-table tbody tr {
  opacity: 0;
  transform: translate3d(-24px, 0, 0);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

html.motion-ready .specs-table-wrap.in-view .specs-table tbody tr {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.motion-ready .specs-table-wrap.in-view .specs-table tbody tr:nth-child(1) { transition-delay: 0.08s; }
html.motion-ready .specs-table-wrap.in-view .specs-table tbody tr:nth-child(2) { transition-delay: 0.14s; }
html.motion-ready .specs-table-wrap.in-view .specs-table tbody tr:nth-child(3) { transition-delay: 0.20s; }
html.motion-ready .specs-table-wrap.in-view .specs-table tbody tr:nth-child(4) { transition-delay: 0.26s; }
html.motion-ready .specs-table-wrap.in-view .specs-table tbody tr:nth-child(5) { transition-delay: 0.32s; }
html.motion-ready .specs-table-wrap.in-view .specs-table tbody tr:nth-child(6) { transition-delay: 0.38s; }
html.motion-ready .specs-table-wrap.in-view .specs-table tbody tr:nth-child(7) { transition-delay: 0.44s; }

/* 6. Pricing Card 3D Elevated Float & Checklist Stagger */
.pricing-section {
  perspective: 1000px;
}

html.motion-ready .pricing-card-wrap {
  opacity: 0;
  transform: translate3d(0, 75px, -40px) rotateX(16deg) scale(0.92);
  transform-origin: center bottom;
  filter: blur(4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: 
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 1.05s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
}

html.motion-ready .pricing-card-wrap:nth-child(2) {
  transition-delay: 0.12s;
}

html.motion-ready .pricing-card-wrap.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateX(0deg) scale(1);
  filter: blur(0);
  box-shadow: 0 24px 70px -15px rgba(0, 0, 0, 0.9), 0 0 60px -15px var(--accent-glow);
}

html.motion-ready .pricing-card-wrap .price-amount {
  display: inline-block;
  transform: scale(0.92);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

html.motion-ready .pricing-card-wrap.in-view .price-amount {
  transform: scale(1);
  transition-delay: 0.2s;
}

html.motion-ready .pricing-features-list li {
  opacity: 0;
  transform: translate3d(-18px, 0, 0);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease-out;
  will-change: transform, opacity;
}

html.motion-ready .pricing-card-wrap.in-view .pricing-features-list li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.motion-ready .pricing-card-wrap.in-view .pricing-features-list li:nth-child(1) { transition-delay: 0.15s; }
html.motion-ready .pricing-card-wrap.in-view .pricing-features-list li:nth-child(2) { transition-delay: 0.22s; }
html.motion-ready .pricing-card-wrap.in-view .pricing-features-list li:nth-child(3) { transition-delay: 0.29s; }
html.motion-ready .pricing-card-wrap.in-view .pricing-features-list li:nth-child(4) { transition-delay: 0.36s; }
html.motion-ready .pricing-card-wrap.in-view .pricing-features-list li:nth-child(5) { transition-delay: 0.43s; }

html.motion-ready .pricing-card-wrap .btn-pricing-cta {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.65s ease-out;
}

html.motion-ready .pricing-card-wrap.in-view .btn-pricing-cta {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.48s;
}

/* 7. FAQ Stacking Offset Cards (From smaller & bottom) */
html.motion-ready .faq-section .section-header {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.75s ease-out;
  will-change: transform, opacity;
}

html.motion-ready .faq-section .section-header.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.motion-ready .faq-item {
  opacity: 0;
  transform: translate3d(0, 68px, 0) scale(0.86);
  transform-origin: center top;
  filter: blur(4px);
  transition: 
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    border-color var(--transition-fast);
  will-change: transform, opacity, filter;
}

html.motion-ready .faq-item.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

/* 8. Bottom Bar & Global Footer Wave */
html.motion-ready .footer-top > div {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.75s ease-out;
  will-change: transform, opacity;
}

html.motion-ready .site-footer.in-view .footer-top > div {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.motion-ready .site-footer.in-view .footer-top > div:nth-child(1) { transition-delay: 0.05s; }
html.motion-ready .site-footer.in-view .footer-top > div:nth-child(2) { transition-delay: 0.13s; }
html.motion-ready .site-footer.in-view .footer-top > div:nth-child(3) { transition-delay: 0.21s; }
html.motion-ready .site-footer.in-view .footer-top > div:nth-child(4) { transition-delay: 0.29s; }

html.motion-ready .footer-bottom {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease-out;
  will-change: transform, opacity;
}

html.motion-ready .site-footer.in-view .footer-bottom {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.34s;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 960px) {
  .hero-title {
    font-size: 40px;
  }

  .narrative-split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .narrative-split-grid::after {
    display: none;
  }

  /* On tablet/mobile, use a smooth vertical lift instead of horizontal slide */
  html.motion-ready .feature-row .feature-visual,
  html.motion-ready .feature-row.reversed .feature-visual {
    transform: translate3d(0, 32px, 0) scale(0.97);
  }

  html.motion-ready .feature-row .feature-content,
  html.motion-ready .feature-row.reversed .feature-content {
    transform: translate3d(0, 24px, 0);
  }

  .feature-row, .feature-row.reversed {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .feature-row.reversed .feature-visual {
    order: 1;
  }

  .feature-row.reversed .feature-content {
    order: 2;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 60px;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    gap: 32px;
  }

  .pricing-card-wrap {
    padding: 32px 24px;
  }

  .price-amount {
    font-size: 52px;
  }
}

/* ==========================================================================
   CONTACT & FEEDBACK PAGE
   ========================================================================== */

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  max-width: 1080px;
  margin: 30px auto 90px auto;
  align-items: start;
}

.contact-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, #12151c 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 38px 36px;
  position: relative;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.7);
}

.contact-sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-bright);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-label .required {
  color: var(--accent);
}

.form-label .optional {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: rgba(10, 13, 18, 0.75);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  box-sizing: border-box;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(14, 18, 26, 0.95);
  box-shadow: 0 0 0 3px rgba(20, 115, 230, 0.22);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.topic-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.topic-pill-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.topic-pill-btn:hover {
  border-color: var(--border-active);
  color: var(--text-bright);
}

.topic-pill-btn.active {
  background: rgba(20, 115, 230, 0.15);
  border-color: var(--accent);
  color: #70b4ff;
  box-shadow: 0 0 16px -4px var(--accent-glow);
}

.btn-contact-submit {
  width: 100%;
  padding: 16px;
  font-size: 15.5px;
  font-weight: 600;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  border: none;
  box-shadow: 0 4px 24px var(--accent-glow);
  transition: all var(--transition-fast);
}

.btn-contact-submit:hover:not(:disabled) {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(20, 115, 230, 0.45);
}

.btn-contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-email-badge {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.contact-email-text {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-heading);
  font-weight: 600;
  word-break: break-all;
}

.btn-copy-email {
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 11.5px;
  padding: 5px 10px;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.btn-copy-email:hover {
  border-color: var(--accent);
  color: #70b4ff;
}

.form-status-alert {
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  display: none;
}

.form-status-alert.success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
}

.form-status-alert.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.sidebar-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sidebar-info-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background: rgba(20, 115, 230, 0.12);
  border: 1px solid rgba(20, 115, 230, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}

.sidebar-info-content h4 {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-heading);
  margin: 0 0 4px 0;
}

.sidebar-info-content p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 860px) {
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
