/*
 * CanyonOps Marketing Website — Design System
 * =============================================
 *
 * FONT CHOICES:
 * - Headlines: "Plus Jakarta Sans" — A geometric sans-serif with warmth and character.
 *   Premium feel without being overused. Distinctive letterforms (especially the 'g' and 'a')
 *   give it personality while remaining highly professional. Used by fintech/SaaS brands
 *   that want to feel modern but trustworthy.
 *
 * - Body: "Inter" — Best-in-class readability for long-form content and UI text.
 *   Variable font with excellent screen rendering. Pairs beautifully with Jakarta Sans
 *   because both are geometric but Jakarta has more character in display sizes.
 *
 * - Monospace: "JetBrains Mono" — For data displays in UI mockups.
 *
 * COLOR EVOLUTION:
 * Kept the navy/sky/gold foundation but refined for better contrast and web rendering.
 * Added a richer gradient system and more nuanced neutral scale.
 * The palette evokes trust (navy), clarity (sky), and premium quality (gold).
 */

/* ============================================
   CSS RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}
ul,
ol {
  list-style: none;
}
input,
textarea,
select {
  font: inherit;
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ============================================
   DESIGN TOKENS
   ============================================ */

:root {
  /* Primary — Deep, confident, trust-evoking */
  --navy: #1b2b4b;
  --navy-dark: #111d35;
  --navy-deeper: #0a1628;
  --navy-light: #2a4068;
  --navy-50: rgba(27, 43, 75, 0.05);
  --navy-100: rgba(27, 43, 75, 0.1);

  /* Accent — Fresh, modern, approachable */
  --sky: #4ea8de;
  --sky-light: #7ec8e3;
  --sky-muted: #3a8bc2;
  --sky-50: rgba(78, 168, 222, 0.08);
  --sky-100: rgba(78, 168, 222, 0.15);

  /* Highlight — Premium, warm, attention-drawing */
  --gold: #c9a84c;
  --gold-light: #d4ba6e;
  --gold-muted: #b89a42;
  --gold-50: rgba(201, 168, 76, 0.08);

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Semantic */
  --success: #10b981;
  --success-light: #d1fae5;
  --warning: #f59e0b;
  --warning-light: #fef3c7;
  --error: #ef4444;
  --error-light: #fee2e2;
  --info: var(--sky);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 50%, var(--navy-light) 100%);
  --gradient-dark: linear-gradient(180deg, var(--navy-deeper) 0%, var(--navy-dark) 100%);
  --gradient-sky: linear-gradient(135deg, var(--sky-muted) 0%, var(--sky) 50%, var(--sky-light) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold-muted) 0%, var(--gold) 100%);
  --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 10px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 8px 16px -8px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 40px rgba(78, 168, 222, 0.15);
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.2);

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;
  --section-padding: 6rem;
  --section-padding-mobile: 3.5rem;

  /* Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;

  /* Z-index scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6,
.heading {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5,
.dark-section h6,
.dark-section .heading {
  color: var(--white);
}

h1,
.h1 {
  font-size: var(--text-5xl);
}
h2,
.h2 {
  font-size: var(--text-4xl);
}
h3,
.h3 {
  font-size: var(--text-2xl);
}
h4,
.h4 {
  font-size: var(--text-xl);
}
h5,
.h5 {
  font-size: var(--text-lg);
}

.display {
  font-size: var(--text-7xl);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.subtitle {
  font-size: var(--text-xl);
  line-height: 1.5;
  color: var(--gray-500);
  font-weight: 400;
}
.dark-section .subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.overline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky);
}

.body-lg {
  font-size: var(--text-lg);
  line-height: 1.7;
}
.body-sm {
  font-size: var(--text-sm);
}
.caption {
  font-size: var(--text-xs);
  color: var(--gray-400);
}

.text-gradient {
  background: var(--gradient-sky);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  color: var(--gold);
}

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

@media (max-width: 768px) {
  .display {
    font-size: var(--text-5xl);
  }
  h1,
  .h1 {
    font-size: var(--text-4xl);
  }
  h2,
  .h2 {
    font-size: var(--text-3xl);
  }
  h3,
  .h3 {
    font-size: var(--text-xl);
  }
  .subtitle {
    font-size: var(--text-base);
  }
}

@media (max-width: 480px) {
  .display {
    font-size: var(--text-4xl);
  }
  h1,
  .h1 {
    font-size: var(--text-3xl);
  }
  h2,
  .h2 {
    font-size: var(--text-2xl);
  }
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

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

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

section {
  padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
  section {
    padding: var(--section-padding-mobile) 0;
  }
}

.grid {
  display: grid;
  gap: 2rem;
}

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

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 0.5rem;
}
.gap-2 {
  gap: 1rem;
}
.gap-3 {
  gap: 1.5rem;
}
.gap-4 {
  gap: 2rem;
}
.gap-6 {
  gap: 3rem;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.mt-6 {
  margin-top: 3rem;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: 1rem 0;
  transition: all var(--duration-base) var(--ease-out);
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  z-index: var(--z-modal);
}

.nav-logo .logo-icon {
  width: 32px;
  height: 32px;
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 1rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link .chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--duration-fast);
  opacity: 0.6;
}

/* Features dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--navy-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-4px);
  transition: all var(--duration-fast) var(--ease-out);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .chevron {
  transform: rotate(180deg);
}

.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast);
}

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

.nav-dropdown-link .dropdown-icon {
  width: 18px;
  height: 18px;
  color: var(--sky);
  flex-shrink: 0;
}

.nav-dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0.375rem 0.5rem;
}

.nav-cta {
  margin-left: 0.75rem;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
  z-index: var(--z-modal);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease-out);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-deeper);
  z-index: var(--z-overlay);
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu .nav-link {
  font-size: var(--text-lg);
  padding: 0.75rem 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.mobile-menu .nav-link:hover {
  color: var(--white);
}

.mobile-dropdown-items {
  padding-left: 1.5rem;
  display: none;
}

.mobile-dropdown-items.open {
  display: flex;
  flex-direction: column;
}

.mobile-menu .nav-dropdown-link {
  padding: 0.5rem 1rem;
  font-size: var(--text-base);
}

.mobile-menu .btn {
  margin-top: 1rem;
  text-align: center;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-cta.desktop-only {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--sky);
  color: var(--navy-deeper);
  box-shadow: 0 2px 8px rgba(78, 168, 222, 0.3);
}

.btn-primary:hover {
  background: var(--sky-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(78, 168, 222, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-300);
}

.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy-50);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--navy-deeper);
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}

.btn-ghost {
  color: var(--gray-600);
  padding: 0.5rem 1rem;
}

.btn-ghost:hover {
  color: var(--navy);
  background: var(--gray-100);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: var(--text-base);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-xs);
}

.btn-icon {
  width: 16px;
  height: 16px;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-group .btn {
    width: 100%;
  }
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--duration-base) var(--ease-out);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--gray-300);
}

.card-dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.card-dark:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-flat {
  border: none;
  background: var(--gray-50);
}

.card-flat:hover {
  background: var(--gray-100);
  box-shadow: none;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--sky-50);
  color: var(--sky);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card-dark .card-icon {
  background: rgba(78, 168, 222, 0.12);
}

/* ============================================
   SECTIONS
   ============================================ */

.dark-section {
  background: var(--gradient-dark);
  color: var(--white);
}

.light-section {
  background: var(--white);
}

.gray-section {
  background: var(--off-white);
}

.accent-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 50%, #234b6e 100%);
  color: var(--white);
}

.section-header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header .overline {
  margin-bottom: 0.75rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header .subtitle {
  margin-top: 0;
}

/* Section number markers (Attio-style) */
.section-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--sky);
  opacity: 0.8;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.dark-section .section-number {
  color: var(--sky-light);
  opacity: 0.6;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  color: var(--white);
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg .grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(78, 168, 222, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 168, 222, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
}

.hero-bg .glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(78, 168, 222, 0.12) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: float 8s ease-in-out infinite;
}

.hero-bg .glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  bottom: -15%;
  left: -10%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -20px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.hero-text .overline {
  margin-bottom: 1.25rem;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: var(--text-5xl);
  line-height: 1.1;
}

.hero-text .subtitle {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  font-size: var(--text-lg);
  max-width: 480px;
}

.hero-visual {
  position: relative;
}

/* Page hero (shorter, for inner pages) */
.page-hero {
  position: relative;
  padding: 8rem 0 4rem;
  background: var(--gradient-hero);
  color: var(--white);
  overflow: hidden;
}

.page-hero .hero-bg {
  opacity: 0.5;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero .subtitle {
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--duration-fast);
}

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

.breadcrumb .separator {
  opacity: 0.4;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 1.25rem;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-text .subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-text .btn-group {
    justify-content: center;
  }
  .hero-visual {
    margin: 0 auto;
    max-width: 600px;
  }
  .page-hero {
    padding: 7rem 0 3rem;
  }
}

/* ============================================
   PRODUCT UI MOCKUPS
   ============================================ */

.browser-frame {
  background: var(--navy-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    var(--shadow-xl),
    0 0 60px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-frame.perspective {
  transform: perspective(1200px) rotateY(-2deg) rotateX(2deg);
  transition: transform var(--duration-slow) var(--ease-out);
}

.browser-frame.perspective:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0);
}

.browser-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dot.red {
  background: #ff5f57;
}
.browser-dot.yellow {
  background: #ffbd2e;
}
.browser-dot.green {
  background: #28c840;
}

.browser-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.875rem;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Inter', sans-serif;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}

.browser-content {
  display: flex;
  min-height: 320px;
}

/* App sidebar mockup */
.mockup-sidebar {
  width: 200px;
  background: var(--navy-deeper);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
  flex-shrink: 0;
}

.mockup-sidebar-logo {
  padding: 0 1rem 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 0.5rem;
}

.mockup-sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 1rem;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  cursor: default;
  transition: all var(--duration-fast);
}

.mockup-sidebar-item.active {
  color: var(--white);
  background: rgba(78, 168, 222, 0.12);
  border-right: 2px solid var(--sky);
}

.mockup-sidebar-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* App main content mockup */
.mockup-main {
  flex: 1;
  background: var(--white);
  padding: 1.25rem;
  color: var(--gray-800);
  overflow: hidden;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-200);
}

.mockup-header-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}

.mockup-header-actions {
  display: flex;
  gap: 0.5rem;
}

.mockup-btn {
  padding: 0.3rem 0.75rem;
  font-size: 10px;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--sky);
  color: white;
  white-space: nowrap;
}

.mockup-btn-outline {
  background: transparent;
  border: 1px solid var(--gray-300);
  color: var(--gray-600);
}

/* Mockup data tables */
.mockup-table {
  width: 100%;
  font-size: 11px;
}

.mockup-table-head {
  display: grid;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.mockup-table-row {
  display: grid;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: center;
  color: var(--gray-700);
}

.mockup-table-row:last-child {
  border-bottom: none;
}

/* Mockup badges */
.mockup-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  font-size: 9px;
  font-weight: 600;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.mockup-badge-green {
  background: var(--success-light);
  color: #065f46;
}
.mockup-badge-blue {
  background: #dbeafe;
  color: #1e40af;
}
.mockup-badge-amber {
  background: var(--warning-light);
  color: #92400e;
}
.mockup-badge-red {
  background: var(--error-light);
  color: #991b1b;
}
.mockup-badge-gray {
  background: var(--gray-100);
  color: var(--gray-600);
}
.mockup-badge-navy {
  background: var(--navy-100);
  color: var(--navy);
}
.mockup-badge-gold {
  background: var(--gold-50);
  color: var(--gold-muted);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

/* Mockup progress */
.mockup-progress {
  height: 6px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.mockup-progress-bar {
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--success);
  transition: width var(--duration-slow);
}

/* Mockup avatar */
.mockup-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

/* Responsive mockups */
@media (max-width: 768px) {
  .mockup-sidebar {
    width: 48px;
    padding: 0.5rem 0;
  }
  .mockup-sidebar-logo {
    display: none;
  }
  .mockup-sidebar-item span {
    display: none;
  }
  .mockup-sidebar-item {
    justify-content: center;
    padding: 0.5rem;
  }
  .browser-frame.perspective {
    transform: none;
  }
  .mockup-main {
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  .mockup-sidebar {
    display: none;
  }
  .browser-content {
    min-height: 240px;
  }
}

/* ============================================
   FEATURE SHOWCASE (Numbered sections)
   ============================================ */

.feature-block {
  padding: 5rem 0;
}

.feature-block:nth-child(even) {
  background: var(--off-white);
}

.feature-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-block:nth-child(even) .feature-block-inner {
  direction: rtl;
}

.feature-block:nth-child(even) .feature-block-inner > * {
  direction: ltr;
}

.feature-block-content {
  max-width: 480px;
}

.feature-block-content .section-number {
  font-size: 13px;
}

.feature-block-content h3 {
  margin-bottom: 1rem;
  font-size: var(--text-3xl);
}

.feature-block-content p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--text-sm);
  color: var(--gray-700);
}

.feature-list-item svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .feature-block-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .feature-block:nth-child(even) .feature-block-inner {
    direction: ltr;
  }
  .feature-block-content {
    max-width: 100%;
  }
}

/* ============================================
   SOCIAL PROOF
   ============================================ */

.proof-bar {
  padding: 2rem 0;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.proof-stat {
  text-align: center;
}

.proof-stat .number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--white);
}

.proof-stat .label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

.proof-logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.proof-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .proof-bar-inner {
    gap: 1.5rem;
    flex-direction: column;
  }
  .proof-divider {
    width: 40px;
    height: 1px;
  }
  .proof-logos {
    gap: 1.5rem;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: var(--text-base);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  flex: 1;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: var(--text-4xl);
  color: var(--sky);
  opacity: 0.4;
  line-height: 0;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-info .name {
  font-weight: 600;
  color: var(--white);
  font-size: var(--text-sm);
}

.testimonial-info .role {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
}

/* Light testimonials */
.testimonial-card.light {
  background: var(--white);
  border-color: var(--gray-200);
}

.testimonial-card.light .testimonial-quote {
  color: var(--gray-700);
}

.testimonial-card.light .testimonial-author {
  border-color: var(--gray-200);
}

.testimonial-card.light .testimonial-info .name {
  color: var(--gray-900);
}

.testimonial-card.light .testimonial-info .role {
  color: var(--gray-500);
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--sky) 0%, var(--gold) 100%);
  opacity: 0.3;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-2xl);
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.step:nth-child(1) .step-number {
  background: var(--sky-50);
  color: var(--sky);
  border: 2px solid var(--sky);
}

.step:nth-child(2) .step-number {
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
  border: 2px solid var(--gold);
}

.step:nth-child(3) .step-number {
  background: rgba(16, 185, 129, 0.08);
  color: var(--success);
  border: 2px solid var(--success);
}

.step h4 {
  margin-bottom: 0.75rem;
}

.step p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .steps::before {
    display: none;
  }
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.375rem;
}

.dark-section .form-label {
  color: rgba(255, 255, 255, 0.8);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--text-base);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--gray-800);
  transition: all var(--duration-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px var(--sky-100);
}

.form-input::placeholder {
  color: var(--gray-400);
}

.dark-section .form-input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.dark-section .form-input:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(78, 168, 222, 0.15);
}

.dark-section .form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-inline {
  display: flex;
  gap: 0.75rem;
}

.form-inline .form-input {
  flex: 1;
}

.form-hint {
  font-size: var(--text-xs);
  color: var(--gray-400);
  margin-top: 0.5rem;
}

.dark-section .form-hint {
  color: rgba(255, 255, 255, 0.4);
}

.form-success {
  display: none;
  padding: 1rem;
  background: var(--success-light);
  border: 1px solid var(--success);
  border-radius: var(--radius-md);
  color: #065f46;
  font-weight: 500;
  text-align: center;
}

.dark-section .form-success {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--success);
}

@media (max-width: 480px) {
  .form-inline {
    flex-direction: column;
  }
}

/* ============================================
   WAITLIST CTA SECTION
   ============================================ */

.cta-section {
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section .subtitle {
  margin-bottom: 2rem;
}

.cta-form {
  max-width: 480px;
  margin: 0 auto;
}

/* ============================================
   BLOG
   ============================================ */

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-out);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--gray-300);
}

.blog-card-image {
  height: 200px;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-image .blog-icon {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.3);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.blog-card-category {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--sky);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card-date {
  font-size: var(--text-xs);
  color: var(--gray-400);
}

.blog-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--duration-fast);
}

.blog-card-link:hover {
  gap: 0.5rem;
}

.blog-card-link svg {
  width: 14px;
  height: 14px;
}

/* Blog article */
.article-header {
  margin-bottom: 3rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.article-meta-item svg {
  width: 16px;
  height: 16px;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
}

.article-body h2 {
  font-size: var(--text-2xl);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.article-body h3 {
  font-size: var(--text-xl);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-body p {
  margin-bottom: 1.25rem;
  color: var(--gray-700);
  line-height: 1.8;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
  color: var(--gray-700);
  line-height: 1.7;
  list-style: disc;
}

.article-body ol li {
  list-style: decimal;
}

.article-body blockquote {
  border-left: 3px solid var(--sky);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--sky-50);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--gray-700);
}

.article-body strong {
  font-weight: 600;
  color: var(--gray-900);
}

/* Blog category filter */
.blog-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.blog-filter {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  transition: all var(--duration-fast);
  cursor: pointer;
  background: var(--white);
}

.blog-filter:hover {
  border-color: var(--gray-400);
  color: var(--gray-700);
}

.blog-filter.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ============================================
   PRICING / EARLY ACCESS
   ============================================ */

.pricing-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pricing-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
}

.pricing-benefit-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--sky-50);
  color: var(--sky);
  flex-shrink: 0;
}

.pricing-benefit-icon svg {
  width: 20px;
  height: 20px;
}

.pricing-benefit h4 {
  font-size: var(--text-base);
  margin-bottom: 0.25rem;
}

.pricing-benefit p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .pricing-benefits {
    grid-template-columns: 1fr;
  }
}

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

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  transition: color var(--duration-fast);
}

.faq-question:hover {
  color: var(--navy);
}

.faq-question .faq-icon {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  transition: transform var(--duration-base) var(--ease-out);
  flex-shrink: 0;
}

.faq-item.open .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-base) var(--ease-out);
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.dark-section .faq-item {
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-section .faq-question {
  color: var(--white);
}

.dark-section .faq-answer-inner {
  color: rgba(255, 255, 255, 0.6);
}

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

.footer {
  background: var(--navy-deeper);
  color: var(--white);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-column h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--duration-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom .footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

.footer-bottom .footer-copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom .footer-origin {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-left {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}
.reveal-delay-2 {
  transition-delay: 200ms;
}
.reveal-delay-3 {
  transition-delay: 300ms;
}
.reveal-delay-4 {
  transition-delay: 400ms;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.value-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--gray-50);
}

.value-card .value-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--sky);
  margin-bottom: 0.75rem;
}

.value-card h4 {
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Team */
.team-card {
  text-align: center;
  max-width: 360px;
  margin: 0 auto;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 1.5rem;
  border: 3px solid rgba(78, 168, 222, 0.3);
}

.team-card .name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-card .title {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.team-card .credentials {
  font-size: var(--text-xs);
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
}

.contact-info-item:not(:last-child) {
  border-bottom: 1px solid var(--gray-200);
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--sky);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item .label {
  font-size: var(--text-xs);
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-item .value {
  font-size: var(--text-base);
  color: var(--gray-800);
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FEATURE DETAIL PAGES
   ============================================ */

.feature-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .feature-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .feature-detail-grid {
    grid-template-columns: 1fr;
  }
}

.capability-card {
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  transition: all var(--duration-base) var(--ease-out);
}

.capability-card:hover {
  border-color: var(--sky-100);
  box-shadow: var(--shadow-md);
}

.capability-card .card-icon {
  margin-bottom: 1rem;
}

.capability-card h4 {
  font-size: var(--text-base);
  margin-bottom: 0.5rem;
}

.capability-card p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.6;
}

/* Scenario / walkthrough */
.scenario-block {
  background: var(--off-white);
  border-radius: var(--radius-2xl);
  padding: 3rem;
}

.scenario-block h3 {
  margin-bottom: 1.5rem;
}

.scenario-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.scenario-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.scenario-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  flex-shrink: 0;
}

.scenario-step-content h5 {
  font-size: var(--text-base);
  margin-bottom: 0.25rem;
}

.scenario-step-content p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
}

/* Integration points */
.integration-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.integration-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--sky-muted);
  transition: all var(--duration-fast);
}

.integration-link:hover {
  background: var(--sky-100);
  color: var(--navy);
}

.integration-link svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   MISC / UTILITIES
   ============================================ */

.divider {
  height: 1px;
  background: var(--gray-200);
  margin: 2rem 0;
}

.dark-section .divider {
  background: rgba(255, 255, 255, 0.08);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--sky-50);
  color: var(--sky-muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Stat cards on dark background */
.stat-highlight {
  text-align: center;
  padding: 1.5rem;
}

.stat-highlight .stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-highlight .stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

/* Related posts */
.related-posts {
  border-top: 1px solid var(--gray-200);
  padding-top: 3rem;
  margin-top: 3rem;
}

.related-posts h3 {
  margin-bottom: 1.5rem;
}

/* ============================================
   ENHANCED FEATURE BLOCK INTERACTIONS
   ============================================ */

.feature-block-inner:hover .browser-frame {
  box-shadow:
    var(--shadow-xl),
    0 0 40px rgba(78, 168, 222, 0.12);
  transition: box-shadow 0.4s ease;
}

.feature-block-inner:hover .section-number {
  color: var(--sky-light);
  text-shadow: 0 0 20px rgba(78, 168, 222, 0.3);
  transition: all 0.3s ease;
}

/* Print */
@media print {
  .nav,
  .footer,
  .btn,
  .mobile-menu {
    display: none;
  }
  body {
    color: black;
  }
  section {
    padding: 1rem 0;
  }
}
