/* ==========================================================================
   ONE MONTH MINIMUM (OMM v2.1) — STYLESHEET
   Aesthetic: Warm editorial, technical precision, uncoated paper feel
   ========================================================================== */

:root {
  /* Brand Palette */
  --bg-page: #f0ede8;
  --bg-page-warm: #f5f2ed;
  --bg-card: #ffffff;
  --bg-card-subtle: #f8f6f2;
  --bg-dark: #1d2d3a;
  --bg-dark-card: #243746;
  --bg-dark-border: rgba(255, 255, 255, 0.12);

  /* Slate Dark / Navy (dark grey with hint of blue matching Guest Login button) */
  --slate-dark: #1d2d3a;
  --slate-dark-hover: #273e50;
  --slate-dark-active: #15222d;
  --slate-dark-border: #1d2d3a;

  /* Typography Colors */
  --text-primary: #1a1a2e;
  --text-body: #3c3c43;
  --text-secondary: #636366;
  --text-tertiary: #8e8e93;
  --text-muted: #aeaeb2;

  /* Accent & Highlights (Punchier Brand Orange) */
  --accent-terracotta: #e05320;
  --accent-terracotta-hover: #c84414;
  --accent-terracotta-dark: #b5380c;
  --accent-terracotta-light: #fef0ea;
  --accent-terracotta-border: rgba(224, 83, 32, 0.4);

  /* UI Borders & Accents */
  --border-subtle: #dfdad2;
  --border-card: #e5e0d8;
  --border-dark: #2a3e4e;
  --divider: rgba(0, 0, 0, 0.08);

  /* Status Colors */
  --status-loss: #dc2626;
  --status-loss-bg: #fee2e2;
  --status-win: #15803d;
  --status-win-bg: #dcfce7;

  /* Fonts */
  --font-serif: "Playfair Display", "Newsreader", Georgia, "Times New Roman", serif;
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;

  /* Layout */
  --max-width: 1240px;
  --header-height: 72px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 9999px;
  --radius-btn: 9999px;

  /* Shadows */
  --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 4px 20px -2px rgba(0, 0, 0, 0.06);
  --shadow-elevated: 0 20px 40px -15px rgba(0, 0, 0, 0.12);
  --shadow-dark: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  background-color: var(--bg-page);
  color: var(--text-primary);
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Texture overlay for subtle editorial paper effect */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 999;
  opacity: 0.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

/* Typography Hierarchy */
h1, h2, h3, h4 {
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.15;
}

.font-serif {
  font-family: var(--font-serif);
}

.font-mono {
  font-family: var(--font-mono);
}

/* Section Technical Plate Headers */
.plate-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-terracotta);
  margin-bottom: 1rem;
}

/* Highlighted Accent Text */
.text-terracotta {
  color: var(--accent-terracotta);
}

.highlight-accent {
  color: var(--accent-terracotta);
  font-weight: 500;
}

.text-navy {
  color: var(--text-primary);
  font-weight: 600;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-spacing {
  padding-top: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid var(--divider);
}

/* ==========================================================================
   NAVIGATION (STICKY & RESPONSIVE)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background-color: rgba(240, 237, 232, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(240, 237, 232, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-left: clamp(1.5rem, 3.5vw, 3.5rem);
  padding-right: clamp(1.5rem, 3.5vw, 3.5rem);
}

.nav-left-group {
  display: flex;
  align-items: center;
  gap: clamp(1.75rem, 3vw, 2.75rem);
}

.brand-logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.brand-logo .brand-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent-terracotta);
  letter-spacing: 0.05em;
  padding: 2px 6px;
  background: var(--accent-terracotta-light);
  border-radius: var(--radius-sm);
}

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

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.nav-link.active {
  color: var(--accent-terracotta);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--accent-terracotta);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions-desktop {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-guest-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.62rem 1.45rem;
  background-color: var(--slate-dark);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid var(--slate-dark);
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-guest-login:hover {
  background-color: var(--slate-dark-hover);
  border-color: var(--slate-dark-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(29, 45, 58, 0.25);
}

/* Base Soft Rounded Pill Buttons */
.btn-pill-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.9rem 2.25rem;
  background-color: var(--slate-dark);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--slate-dark);
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn-pill-dark:hover {
  background-color: var(--slate-dark-hover);
  border-color: var(--slate-dark-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29, 45, 58, 0.22);
  color: #ffffff;
}

.btn-pill-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.9rem 2.25rem;
  background-color: transparent;
  color: var(--accent-terracotta);
  border: 1.5px solid var(--accent-terracotta);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn-pill-outline:hover {
  background-color: var(--accent-terracotta);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 112, 74, 0.25);
}

.btn-pill-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.9rem 2.25rem;
  background-color: #ffffff;
  color: #121418;
  border: 1.5px solid #ffffff;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn-pill-white:hover {
  background-color: #f4efe9;
  border-color: #f4efe9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Mobile Hamburger Button */
.hamburger-btn,
.burger {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  justify-content: center;
  align-items: center;
  z-index: 600;
  outline: none;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease;
}

.hamburger-btn:focus-visible,
.burger:focus-visible {
  outline: 2px solid var(--accent-terracotta);
  outline-offset: 2px;
}

.hamburger-icon {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-line {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1),
.burger.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2),
.burger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3),
.burger.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Fullscreen Navigation Overlay */
.mobile-nav-overlay,
.menu {
  position: fixed;
  inset: 0;
  background-color: rgba(240, 237, 232, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 550;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  padding: 2rem;
}

.mobile-nav-overlay.open,
.menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.mobile-nav-link,
.menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text-primary);
  font-weight: 500;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
  display: inline-block;
}

.mobile-nav-overlay.open .mobile-nav-link,
.menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-overlay.open li:nth-child(1) .mobile-nav-link,
.menu.open a:nth-child(1) { transition-delay: 0.08s; }
.mobile-nav-overlay.open li:nth-child(2) .mobile-nav-link,
.menu.open a:nth-child(2) { transition-delay: 0.12s; }
.mobile-nav-overlay.open li:nth-child(3) .mobile-nav-link,
.menu.open a:nth-child(3) { transition-delay: 0.16s; }
.mobile-nav-overlay.open li:nth-child(4) .mobile-nav-link,
.menu.open a:nth-child(4) { transition-delay: 0.20s; }
.mobile-nav-overlay.open li:nth-child(5) .mobile-nav-link,
.menu.open a:nth-child(5) { transition-delay: 0.24s; }
.mobile-nav-overlay.open li:nth-child(6) .mobile-nav-link,
.menu.open a:nth-child(6) { transition-delay: 0.28s; }

.mobile-nav-link:hover,
.menu a:hover {
  color: var(--accent-terracotta);
}

.mobile-nav-cta {
  margin-top: 2rem;
  width: 100%;
  max-width: 280px;
}

/* ==========================================================================
   HERO SECTION — Left-Aligned Fixed Anchor + Right Scaling Image
   ========================================================================== */
.hero-section {
  padding-top: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow-x: clip;
  width: 100%;
}

/* Full-width container anchored to the left, aligning with header logo */
.hero-section .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-left: clamp(1.5rem, 3.5vw, 3.5rem);
  padding-right: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 500px) 1fr;
  gap: clamp(2rem, 3.5vw, 4rem);
  align-items: stretch;
  min-height: clamp(560px, 75vh, 760px);
  width: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  max-width: 500px;
  width: 100%;
  padding-right: 1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.2vw, 4.2rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-top: 0.5rem;
  margin-bottom: 1.75rem;
  text-align: left;
}

.hero-line {
  display: block;
  overflow: visible;
  will-change: transform, opacity;
}

.hero-subhead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 2rem;
  max-width: 500px;
  text-align: left;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  margin-bottom: 0;
  position: relative;
  z-index: 10;
}

/* Primary Hero Action Button — Punch Brand Orange with Tasteful Color Shift Animation & No Shadows */
.btn-hero-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.25rem;
  background: linear-gradient(115deg, var(--accent-terracotta) 0%, #f16834 35%, var(--accent-terracotta) 70%, #d34515 100%);
  background-size: 240% 100%;
  animation: heroButtonColorShift 6s ease infinite alternate;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--accent-terracotta);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), filter 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: none;
}

/* Subtle internal edge sheen sweep animation */
.btn-hero-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-160%) skewX(-20deg);
  animation: heroButtonSheenSweep 4.5s ease-in-out infinite;
  pointer-events: none;
}

.btn-hero-primary:hover {
  filter: brightness(1.06);
  border-color: #f16834;
  transform: translateY(-2px);
  box-shadow: none;
  color: #ffffff;
}

.btn-hero-primary:active {
  transform: translateY(0);
  filter: brightness(0.96);
  box-shadow: none;
}

@keyframes heroButtonColorShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes heroButtonSheenSweep {
  0%, 25% {
    transform: translateX(-160%) skewX(-20deg);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  60%, 100% {
    transform: translateX(260%) skewX(-20deg);
    opacity: 0;
  }
}

/* Secondary Hero Outline Button — Terracotta Pill */
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.25rem;
  background-color: transparent;
  color: var(--accent-terracotta);
  border: 1.5px solid var(--accent-terracotta);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn-hero-secondary:hover {
  background-color: var(--accent-terracotta);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 112, 74, 0.25);
}

/* Terracotta Outline Action Button */
.btn-terracotta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.85rem 1.75rem;
  border: 1.5px solid var(--accent-terracotta);
  background-color: transparent;
  color: var(--accent-terracotta);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-terracotta-outline:hover {
  background-color: var(--accent-terracotta);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -4px rgba(212, 112, 74, 0.35);
}

.btn-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.btn-secondary-link:hover {
  color: var(--text-primary);
}

/* Hero Right Showcase — Full-Bleed Cover & Responsive Viewport Scale */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-media-card {
  position: relative;
  background-color: #1e242b;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  border-right: none;
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  box-shadow: 0 20px 45px -12px rgba(0, 0, 0, 0.16);
}

/* Full-Bleed Container: fills 100% width and height without restrictive aspect ratio */
.hero-carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-color: #1e242b;
  overflow: hidden;
}

/* Primary Hero Video Player */
.hero-video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 3;
  display: block;
  background-color: #1e242b;
}

.hero-video-player.video-hidden {
  display: none !important;
}

.carousel-slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.02);
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.carousel-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* =========================================================================
   CAROUSEL CUSTOM SCREENS (4 User Uploaded App & Dashboard Screens)
   ========================================================================= */

.sla-screen-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  overflow: hidden;
  color: #ffffff;
}

.sla-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) contrast(1.05);
  transition: transform 1.2s ease;
}

.sla-bg-photo.blur-bg {
  filter: brightness(0.5) blur(6px);
  transform: scale(1.05);
}

.sla-overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.15) 40%, rgba(15, 23, 42, 0.7) 100%);
  pointer-events: none;
}

/* SLA Top Bar */
.sla-top-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: rgba(18, 24, 33, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sla-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sla-circle-logo {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.sla-brand-name {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sla-top-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sla-lang-pill,
.sla-curr-pill {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.3rem 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  cursor: pointer;
}

.sla-bookings-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: #ffffff;
  color: #121821;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* SLA Center Content & Booking Bar */
.sla-center-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: auto 0;
  padding: 1rem 0;
}

.sla-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.sla-title.faded {
  opacity: 0.4;
}

.sla-subtitle {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.75rem;
}

.sla-subtitle.faded {
  opacity: 0.3;
}

/* SLA Floating Glass Booking Bar */
.sla-booking-bar {
  display: flex;
  align-items: center;
  background: rgba(22, 28, 38, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.5rem 0.4rem 1.1rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  gap: 1rem;
  max-width: 94%;
}

.sla-booking-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 1rem;
}

.sla-field-label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.sla-field-val {
  font-size: 0.78rem;
  font-weight: 500;
  color: #ffffff;
  margin-top: 0.1rem;
}

.sla-avail-btn {
  background: #111722;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.sla-avail-btn:hover {
  background: var(--accent-terracotta);
  border-color: var(--accent-terracotta);
}

/* Dual Toggle Switcher Pill (My Dashboard / Booking Engine) */
.omm-dual-toggle-pill {
  position: absolute;
  bottom: 16px;
  right: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  background: rgba(18, 24, 33, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  padding: 3px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.toggle-tab {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  user-select: none;
}

.toggle-tab.active {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.toggle-tab.inactive {
  color: rgba(255, 255, 255, 0.45);
}

/* =========================================================================
   SCREEN 2: OMM DASHBOARD EMBED SCREEN STYLES
   ========================================================================= */

.omm-dash-screen {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  background-color: #f8fafc;
  color: #0f172a;
  overflow: hidden;
  font-family: var(--font-sans);
}

.omm-dash-sidebar {
  width: 168px;
  background-color: #ffffff;
  border-right: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  padding: 0.85rem 0.6rem;
  flex-shrink: 0;
}

.omm-dash-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0.4rem 0.85rem;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 0.6rem;
}

.omm-dash-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.7rem;
}

.omm-dash-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.omm-dash-logotext {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.omm-dash-logosub {
  font-size: 0.55rem;
  color: #64748b;
}

.omm-dash-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
}

.omm-dash-nav-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.55rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  transition: all 0.15s ease;
}

.omm-dash-nav-item:hover {
  background-color: #f1f5f9;
  color: #0f172a;
}

.omm-dash-nav-item.active {
  background-color: #0f172a;
  color: #ffffff;
  font-weight: 600;
}

/* Dashboard Main Content */
.omm-dash-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #f8fafc;
}

.omm-dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.1rem;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.omm-dash-search {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.6rem;
  background-color: #f1f5f9;
  border-radius: 6px;
  font-size: 0.68rem;
  color: #94a3b8;
  width: 140px;
}

.omm-dash-user-controls {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
}

.user-pill-lang,
.user-pill-notif,
.user-pill-cal {
  padding: 0.25rem 0.45rem;
  background-color: #f1f5f9;
  border-radius: 4px;
  font-size: 0.64rem;
  color: #475569;
}

.user-avatar-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.omm-dash-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.1rem 0.5rem;
  border-bottom: 1px solid #e2e8f0;
  background: #ffffff;
}

.omm-dash-page-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.omm-dash-tabs {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.dash-tab {
  font-size: 0.65rem;
  font-weight: 500;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  color: #64748b;
  cursor: pointer;
}

.dash-tab.active {
  background-color: #0f172a;
  color: #ffffff;
  font-weight: 600;
}

.omm-dash-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dash-btn-sec {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.32rem 0.65rem;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  color: #334155;
  cursor: pointer;
}

.dash-btn-pri {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.32rem 0.75rem;
  background-color: #0f172a;
  border: 1px solid #0f172a;
  border-radius: 4px;
  color: #ffffff;
  cursor: pointer;
}

.omm-embed-cards-scroll {
  flex: 1;
  padding: 0.85rem 1.1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.omm-embed-header h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.15rem;
}

.omm-embed-header p {
  font-size: 0.66rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.omm-embed-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.omm-embed-card .card-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.omm-embed-card .card-title {
  font-size: 0.74rem;
  font-weight: 700;
  color: #0f172a;
}

.omm-embed-card .card-desc {
  font-size: 0.62rem;
  color: #64748b;
  margin-top: 0.1rem;
}

.card-url-box {
  margin-top: 0.45rem;
  padding: 0.32rem 0.55rem;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: #475569;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-icon-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-mini-icon {
  font-size: 0.9rem;
}

.card-btn-group {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.dash-copy-btn,
.dash-code-btn {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #334155;
}

.dash-copy-btn:hover,
.dash-code-btn:hover {
  background: #f1f5f9;
}

/* =========================================================================
   SCREEN 4: DUAL-MONTH STAY CALENDAR MODAL
   ========================================================================= */

.calendar-modal-card {
  position: relative;
  z-index: 4;
  background: #ffffff;
  color: #0f172a;
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  padding: 1.1rem 1.25rem 0.85rem;
  width: 95%;
  max-width: 480px;
  animation: fadeInModal 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInModal {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.calendar-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.cal-month-header {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0f172a;
  text-align: center;
  margin-bottom: 0.6rem;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 0.35rem;
}

.cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}

.cal-empty {
  height: 22px;
}

.cal-day {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 500;
  color: #334155;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.cal-day:hover {
  background-color: #f1f5f9;
}

.cal-day.selected-date {
  background-color: #0f172a;
  color: #ffffff;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.calendar-modal-footer {
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cal-footer-dates {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cal-date-box {
  display: flex;
  flex-direction: column;
}

.cal-date-box .lbl {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  color: #94a3b8;
  font-weight: 600;
}

.cal-date-box .val {
  font-size: 0.65rem;
  font-weight: 700;
  color: #0f172a;
}

.cal-footer-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cal-clear-btn {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
}

.cal-clear-btn:hover {
  color: #0f172a;
}

.cal-arrows {
  display: flex;
  align-items: center;
  gap: 2px;
}

.cal-nav-arr {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  color: #334155;
}

.cal-search-btn {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: #0f172a;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cal-search-btn:hover {
  background: var(--accent-terracotta);
}

/* Carousel Navigation Chevrons */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(29, 45, 58, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.85;
}

.carousel-nav-btn:hover {
  background: rgba(212, 112, 74, 0.95);
  border-color: rgba(212, 112, 74, 1);
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.carousel-nav-btn.prev {
  left: 18px;
}

.carousel-nav-btn.next {
  right: calc(max(1.5rem, calc((100vw - var(--max-width)) / 2 + 1.5rem)) + 18px);
}

/* Carousel Caption and Counter Badge — Hidden per user request */
.carousel-caption-badge {
  display: none !important;
  padding: 8px 16px;
  background: rgba(29, 45, 58, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.carousel-counter {
  font-weight: 700;
  color: var(--accent-terracotta-light);
}

.carousel-separator {
  color: rgba(255, 255, 255, 0.4);
}

.carousel-caption-text {
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
}

/* Carousel Pagination Dots */
.carousel-indicators {
  position: absolute;
  bottom: 24px;
  right: calc(max(1.5rem, calc((100vw - var(--max-width)) / 2 + 1.5rem)) + 18px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.85);
}

.carousel-dot.active {
  width: 24px;
  background: var(--accent-terracotta);
}

/* Property Highlights 3-Card Grid */
.hero-highlights-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-right: 1.5rem;
}

.hero-highlights-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-terracotta);
  font-weight: 600;
}

.hero-preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.95rem;
}

.preview-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 135px;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.preview-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-terracotta);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.preview-card.active {
  border-color: var(--accent-terracotta);
  box-shadow: 0 10px 24px rgba(212, 112, 74, 0.1);
}

.preview-card-header {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent-terracotta);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.preview-card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.2;
}

.preview-card-footer {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-tertiary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1rem;
}

/* ==========================================================================
   THE PROBLEM SECTION (PLATE Nº 01 — SCROLL DEMO #1)
   ========================================================================== */
.problem-section {
  background-color: var(--bg-page);
  position: relative;
}

.problem-header-wrapper {
  max-width: 760px;
  margin-bottom: 3.5rem;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.section-subhead {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* Light Warm UI Window Chrome Mockup */
.mockup-window {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  color: var(--text-body);
  transition: transform 0.4s ease;
}

.mockup-header {
  background-color: #ede8df;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-card);
}

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

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

.mockup-dot.red { background-color: #ef4444; }
.mockup-dot.yellow { background-color: #f59e0b; }
.mockup-dot.green { background-color: #10b981; }

.mockup-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #475569;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.mockup-toggle-btn {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #1e293b;
  background-color: #ffffff;
  border: 1px solid var(--border-card);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.mockup-toggle-btn:hover {
  background-color: var(--accent-terracotta);
  border-color: var(--accent-terracotta);
  color: #ffffff;
}

.mockup-body {
  padding: 1.5rem;
  background-color: #fffdf8;
}

.mockup-table-header {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.mockup-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  transition: background-color 0.2s ease;
}

.mockup-row:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.property-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.property-thumb {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background-color: #ede8df;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.property-info {
  display: flex;
  flex-direction: column;
}

.property-name {
  font-weight: 600;
  color: var(--text-primary);
}

.property-location {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #64748b;
}

.rent-cell {
  color: var(--text-primary);
  font-weight: 500;
}

.fee-loss {
  font-family: var(--font-mono);
  color: #dc2626;
  font-weight: 700;
}

.fee-saved {
  font-family: var(--font-mono);
  color: #16a34a;
  font-weight: 700;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  width: fit-content;
}

.status-badge.loss {
  background-color: #fee2e2;
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.status-badge.win {
  background-color: #dcfce7;
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 0.3);
}

.mockup-summary-bar {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background-color: #ede8df;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.summary-metric {
  display: flex;
  flex-direction: column;
}

.summary-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #64748b;
  text-transform: uppercase;
}

.summary-val {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 700;
}

/* ==========================================================================
   HOW IT WORKS (PLATE Nº 03 — OPERATIONAL PROTOCOL)
   ========================================================================== */
.protocol-section {
  background-color: var(--bg-page);
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.protocol-header {
  margin-bottom: 2.25rem;
}

.protocol-header .plate-tag {
  margin-bottom: 0.85rem;
}

.protocol-header .section-headline {
  margin-bottom: 0.85rem;
}

.protocol-header .section-subhead {
  color: var(--text-body);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-subtle);
}

.step-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 3rem;
  align-items: baseline;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: background-color 0.2s ease;
}

.step-num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 4.5vw, 4rem);
  font-weight: 400;
  color: #94a3b8;
  line-height: 1;
  letter-spacing: -0.02em;
}

.step-heading {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.step-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.65;
  max-width: 700px;
}

/* ==========================================================================
   INTERACTIVE PRODUCT TOUR & DEMO (PLATE Nº 04 — INTERACTIVE PROTOCOL)
   ========================================================================== */
.demo-section {
  background-color: var(--bg-page);
  position: relative;
}

.demo-showcase-container {
  background-color: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px -8px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  width: 100%;
}

.demo-embed-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 480px;
  max-height: 750px;
  background-color: transparent;
}

.demo-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.demo-live-fallback-wrap,
.demo-direct-link-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

.demo-live-link,
.demo-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-terracotta);
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent-terracotta-border);
  background-color: var(--bg-card);
  transition: all 0.2s ease;
  box-shadow: none;
}

.demo-live-link:hover,
.demo-direct-link:hover {
  color: #ffffff;
  background-color: var(--accent-terracotta);
  border-color: var(--accent-terracotta);
  transform: translateY(-2px);
  box-shadow: none;
}

.btn-demo-tour {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 1.25rem 2rem;
  background-color: var(--accent-terracotta);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  outline: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px -4px rgba(212, 112, 74, 0.35);
}

.btn-demo-tour:hover {
  background-color: var(--accent-terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -4px rgba(212, 112, 74, 0.5);
}

.btn-demo-tour:active {
  transform: translateY(1px);
}

.btn-demo-tour:focus-visible {
  outline: 3px solid var(--accent-terracotta);
  outline-offset: 3px;
}

/* ==========================================================================
   PRICING & RATE PLANS (PLATE Nº 02 — FINANCIAL MODELING)
   ========================================================================== */
.pricing-section {
  background-color: var(--bg-page-warm);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-subtle);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.pricing-card.featured {
  border: 2px solid var(--accent-terracotta);
  box-shadow: 0 12px 28px -4px rgba(212, 112, 74, 0.18);
}

.pricing-tier-name {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-terracotta);
  margin-bottom: 1rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 2rem;
}

.pricing-currency {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text-primary);
  font-family: var(--font-serif);
}

.pricing-val {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-period {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.pricing-features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
}

.pricing-feature-row {
  font-size: 0.95rem;
  color: var(--text-body);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--divider);
}

.pricing-feature-row:first-child {
  border-top: 1px solid var(--divider);
}

/* ==========================================================================
   CAPABILITIES & CALCULATOR (REV. B — SYSTEM CAPABILITIES)
   ========================================================================== */
.capabilities-section {
  background-color: var(--bg-page);
  padding-top: 5rem;
  padding-bottom: 1.5rem;
  border-bottom: none;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: var(--border-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 3.5rem;
  margin-bottom: 0.5rem;
  box-shadow: var(--shadow-card);
}

.feature-card {
  background-color: var(--bg-card);
  border: none;
  border-radius: 0;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: none;
  transition: background-color 0.25s ease;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    padding: 2.25rem 1.75rem;
  }
}

/* ==========================================================================
   REVENUE BLUEPRINT (DEMO 02 — SCROLL-SCRUBBED PINNED SECTION)
   ========================================================================== */
.revenue-section {
  background-color: var(--bg-page);
  position: relative;
  overflow: hidden;
  padding-top: 1.5rem;
  padding-bottom: 4rem;
}

.revenue-header-wrap {
  margin-bottom: 2rem;
}

.revenue-blueprint-container {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.revenue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  position: relative;
}

.revenue-col {
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  position: relative;
  transition: background-color 0.3s ease;
}

.revenue-col.yield-col {
  background-color: #ffffff;
  border-right: 1px solid var(--border-subtle);
}

.revenue-col.loss-col {
  background-color: #f1ece4;
  border-right: 1px solid var(--border-subtle);
}

.revenue-col.retained-col {
  background-color: #ffffff;
  border-left: 2px solid var(--accent-terracotta);
  will-change: transform, opacity;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.04);
}

.revenue-col-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.revenue-col-value {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.revenue-divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 66.666%;
  width: 2px;
  background-color: var(--accent-terracotta);
  z-index: 10;
  transform-origin: top center;
  pointer-events: none;
}

@media (max-width: 900px) {
  .revenue-grid {
    grid-template-columns: 1fr;
  }
  .revenue-col.yield-col,
  .revenue-col.loss-col {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  .revenue-col.retained-col {
    border-left: none;
    border-top: 2px solid var(--accent-terracotta);
  }
  .revenue-divider-line {
    display: none;
  }
}

.feature-card:hover {
  background-color: #faf6ee;
}

.feature-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.feature-fig-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-terracotta);
  letter-spacing: 0.1em;
}

.feature-icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: var(--accent-terracotta-light);
  color: var(--accent-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}

.feature-card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   REFINED BLUEPRINT CALCULATOR (CLEAN MATHEMATICAL AESTHETIC)
   ========================================================================== */
.blueprint-calc-card {
  background-color: #fbf9f6;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  border: 1.5px solid var(--border-card);
  border-radius: 24px;
  padding: 3.5rem 3.25rem 3rem 3.25rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.blueprint-calc-card::before {
  display: none;
}

.calc-card-header {
  margin-bottom: 2.25rem;
}

.calc-header-tag {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-terracotta);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.calc-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4.2vw, 3.5rem);
  font-weight: 400;
  color: #161c24;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
}

.calc-sliders-container {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.25rem;
}

.calc-slider-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.slider-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.calc-slider-row .slider-title {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-terracotta);
}

.calc-slider-row .slider-val-display {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: #161c24;
  letter-spacing: -0.02em;
}

.calc-gross-yield-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 0.5rem;
}

.calc-gross-yield-row .slider-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-terracotta);
}

.calc-gross-val {
  font-family: var(--font-mono);
  font-size: 1.55rem;
  font-weight: 700;
  color: #161c24;
  letter-spacing: -0.02em;
}

/* Custom Styled Minimal Range Slider with Orange Dot */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  background: #e2ded7;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-terracotta);
  cursor: pointer;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, background-color 0.15s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.18);
  background: var(--accent-terracotta-hover);
}

input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-terracotta);
  cursor: pointer;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease;
}

/* Hairline Dividers */
.calc-hairline-divider {
  width: 100%;
  height: 1px;
  background-color: var(--border-subtle);
  margin: 1.75rem 0 2.25rem 0;
}

/* 2-Column Comparison Layout (Blueprint Grid) */
.calc-comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.75rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

.calc-comparison-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.calc-comparison-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8e8e93;
  margin-bottom: 0.5rem;
}

.calc-comparison-label.orange-label {
  color: var(--accent-terracotta);
}

.calc-comparison-number {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.calc-comparison-number.loss-num {
  color: #e05320;
}

.calc-comparison-number.retained-num {
  color: #161c24;
}

.calc-comparison-desc {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0;
}

.calc-comparison-desc.orange-desc {
  color: var(--accent-terracotta);
  font-weight: 600;
}

.calc-vertical-hairline {
  width: 1px;
  background-color: var(--border-subtle);
  min-height: 100%;
}

.calc-action-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.5rem;
}

.calc-take-control-btn {
  padding: 0.95rem 2.85rem;
  font-size: 0.84rem;
}

@media (max-width: 800px) {
  .blueprint-calc-card {
    padding: 2.25rem 1.5rem 2rem 1.5rem;
    border-radius: 18px;
  }

  .calc-comparison-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .calc-vertical-hairline {
    width: 100%;
    height: 1px;
    min-height: 1px;
  }

  .calc-take-control-btn {
    width: 100%;
  }
}

/* ==========================================================================
   PRICING SECTION (PLATE Nº 02 — FINANCIAL MODELING)
   ========================================================================== */
.pricing-section {
  background-color: var(--bg-page-warm);
}

.billing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 3.5rem;
}

.billing-toggle-pill {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-pill);
  padding: 4px;
  display: flex;
  gap: 4px;
}

.billing-btn {
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}

.billing-btn.active {
  background-color: var(--text-primary);
  color: #ffffff;
}

.save-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  background-color: var(--accent-terracotta-light);
  color: var(--accent-terracotta);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-subtle);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.pricing-card.featured {
  border: 2px solid var(--accent-terracotta);
  box-shadow: 0 12px 30px -5px rgba(212, 112, 74, 0.15);
}

.featured-pill {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-terracotta);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
}

.pricing-tier-name {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 1rem;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.pricing-val {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-period {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.pricing-summary {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  min-height: 44px;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
  border-top: 1px solid var(--divider);
  padding-top: 1.5rem;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
}

.feature-check {
  color: var(--accent-terracotta);
  font-size: 0.95rem;
  font-weight: 700;
}

.btn-pricing-action {
  width: 100%;
  padding: 0.85rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.btn-pricing-action.primary {
  background-color: var(--accent-terracotta);
  color: #ffffff;
}

.btn-pricing-action.primary:hover {
  background-color: var(--accent-terracotta-dark);
}

.btn-pricing-action.outline {
  border: 1px solid var(--border-card);
  background-color: #ffffff;
  color: var(--text-primary);
}

.btn-pricing-action.outline:hover {
  border-color: var(--text-primary);
  background-color: #f8f6f2;
}

/* ==========================================================================
   RECAPTURE SECTION (FOOTER CTA) & BOTTOM FOOTER BAR
   ========================================================================== */
.recapture-section {
  padding-top: 6.5rem;
  padding-bottom: 5.5rem;
  background-color: var(--bg-page);
  color: var(--text-primary);
  border-top: 1px solid var(--border-subtle);
  position: relative;
}

.recapture-content-box {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.recapture-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.recapture-subhead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 3.5rem auto;
}

.recapture-stats-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  align-items: center;
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  padding: 2.25rem 0;
  margin-bottom: 3.5rem;
}

.recapture-stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0 1.5rem;
}

.recapture-stat-col:not(:last-child) {
  border-right: 1px solid var(--border-card);
}

.recapture-stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.recapture-stat-val {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--text-primary);
  text-align: center;
  letter-spacing: -0.01em;
}

.recapture-btn-wrap {
  display: flex;
  justify-content: center;
}

.recapture-btn-wrap .btn-pill-dark {
  padding: 0.95rem 2.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  box-shadow: 0 6px 20px rgba(29, 45, 58, 0.16);
}

.recapture-btn-wrap .btn-pill-dark:hover {
  box-shadow: 0 10px 26px rgba(29, 45, 58, 0.28);
}

/* Bottom Footer Bar */
.footer-bottom-bar {
  background-color: var(--bg-page);
  padding: 2rem 0;
  border-top: 1px solid var(--border-subtle);
}

.footer-bottom-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copyright {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.footer-nav-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-links a:hover {
  color: var(--slate-dark);
}

/* ==========================================================================
   FAQ PAGE & ACCORDION (WARM MONOCHROME & EDITORIAL LAYOUT)
   ========================================================================== */
.faq-page-main {
  padding-top: 7rem;
  padding-bottom: 6rem;
  min-height: 80vh;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq-hero-block {
  text-align: center;
  margin-bottom: 4.5rem;
}

.faq-hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text-primary);
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.faq-hero-subhead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

.faq-group-section {
  margin-bottom: 4rem;
}

.faq-group-header-wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-card);
  padding-bottom: 0.75rem;
  margin-bottom: 1.75rem;
}

.faq-group-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text-primary);
}

.faq-group-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-terracotta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-accordion-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  overflow: hidden;
}

.faq-accordion-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.faq-accordion-item.open {
  border-color: var(--accent-terracotta);
  box-shadow: 0 6px 18px rgba(200, 90, 50, 0.08);
}

.faq-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1.25rem;
  transition: background-color 0.2s ease;
}

.faq-accordion-trigger:hover {
  background-color: var(--bg-card-subtle);
}

.faq-trigger-left {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex: 1;
}

.faq-item-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-terracotta);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.faq-item-question {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.faq-accordion-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-card-subtle);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, border-color 0.2s ease;
}

.faq-accordion-icon {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1;
  color: var(--text-secondary);
  transition: transform 0.25s ease, color 0.2s ease;
}

.faq-accordion-item.open .faq-accordion-icon-wrap {
  background-color: var(--accent-terracotta-light);
  border-color: var(--accent-terracotta);
}

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

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.faq-accordion-item.open .faq-accordion-content {
  max-height: 400px;
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 1.75rem 1.5rem 3.25rem;
  font-size: 0.96rem;
  line-height: 1.68;
  color: var(--text-body);
}

.faq-cta-card {
  margin-top: 5rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

@media (max-width: 640px) {
  .faq-page-main {
    padding-top: 5.5rem;
    padding-bottom: 4rem;
  }
  
  .faq-accordion-trigger {
    padding: 1.15rem 1.15rem;
    gap: 0.75rem;
  }
  
  .faq-trigger-left {
    flex-direction: column;
    gap: 0.35rem;
  }
  
  .faq-answer-inner {
    padding: 0 1.15rem 1.25rem 1.15rem;
  }
  
  .faq-group-header-wrap {
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-start;
  }
}

/* ==========================================================================
   MODALS & INTERACTION OVERLAYS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(18, 20, 24, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background-color: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: 24px;
  max-width: 520px;
  width: 100%;
  padding: 2.75rem 2.25rem 2.5rem 2.25rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(18, 20, 24, 0.22);
  transform: scale(0.96) translateY(10px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f3efe9;
  color: var(--text-secondary);
  font-size: 1.25rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.modal-close-btn:hover {
  background-color: #e5dfd5;
  color: var(--text-primary);
  transform: rotate(90deg);
}

/* Exit Intent Founder Modal Specifics */
.exit-intent-dialog {
  max-width: 490px;
  background-color: #ffffff;
  padding: 2.5rem 2.25rem;
  border-radius: 24px;
  border: 1.5px solid var(--border-subtle);
  box-shadow: 0 25px 50px -12px rgba(18, 20, 24, 0.22);
}

.exit-intent-dialog .modal-close-btn {
  color: #64748b;
  font-size: 1.35rem;
  font-weight: 300;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f3efe9;
  transition: all 0.2s ease;
}

.exit-intent-dialog .modal-close-btn:hover {
  background-color: #e5dfd5;
  color: #0f172a;
}

.founder-badge-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.founder-avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #ffedd5;
  border: 1px solid #fed7aa;
  color: var(--accent-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.founder-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.founder-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-terracotta);
  text-transform: uppercase;
}

.founder-name {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.exit-intent-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.exit-intent-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #475569;
  margin-bottom: 1rem;
}

.exit-intent-bold {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.uppercase-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #64748b;
  margin-bottom: 0.4rem;
  display: block;
}

.exit-input {
  background-color: #faf8f5;
  border: 1.5px solid #dfdad2;
  padding: 0.85rem 1.15rem;
  font-size: 0.94rem;
  border-radius: 12px;
  color: #0f172a;
  transition: all 0.2s ease;
  width: 100%;
}

.exit-input:focus {
  border-color: var(--accent-terracotta);
  background-color: #ffffff;
  box-shadow: 0 0 0 3.5px var(--accent-terracotta-light);
  outline: none;
}

.btn-notify-me {
  width: 100%;
  padding: 0.9rem 1.75rem;
  background-color: #161c24;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #161c24;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-notify-me:hover {
  background-color: var(--accent-terracotta);
  border-color: var(--accent-terracotta);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .exit-intent-dialog {
    padding: 2rem 1.5rem;
    margin: 1rem;
    border-radius: 20px;
  }
  
  .exit-intent-title {
    font-size: 1.5rem;
  }
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.95rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
}

.modal-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-terracotta);
}

.form-input, .form-select {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border: 1.5px solid #dfdad2;
  border-radius: 12px;
  background-color: #faf8f5;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus {
  border-color: var(--accent-terracotta);
  background-color: #ffffff;
  box-shadow: 0 0 0 3.5px var(--accent-terracotta-light);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background-color: var(--text-primary);
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: toastSlideIn 0.3s ease forwards;
}

@keyframes toastSlideIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   PERFORMANCE HINTS & SCROLL REVEAL / INTERSECTION SYSTEM
   ========================================================================== */
.mockup-window,
.mockup-row,
.feature-card,
.revenue-cell,
.revenue-col,
.step,
.step-row,
.pricing-card,
.recapture-content-box,
.hero-photo-wrapper {
  will-change: transform, opacity;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-section .container {
    padding-right: clamp(1.5rem, 3.5vw, 3.5rem);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    min-height: auto;
  }
  
  .hero-left {
    max-width: 100%;
    padding-right: 0;
  }

  .hero-media-card {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-card);
    margin-right: 0;
    width: 100%;
    height: clamp(340px, 52vh, 520px);
    min-height: 340px;
  }

  .hero-carousel-container,
  .hero-photo-wrapper {
    height: 100%;
    width: 100%;
    aspect-ratio: auto;
  }

  .carousel-nav-btn.next {
    right: 18px;
  }

  .carousel-indicators {
    right: 18px;
  }

  .hero-media-badge {
    right: 16px;
    bottom: 16px;
  }

  .hero-highlights-wrap {
    padding-right: 0;
  }
  
  .step-card {
    grid-template-columns: 80px 1fr;
  }
  
  .step-diagram {
    grid-column: 1 / -1;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links-desktop,
  .nav-actions-desktop {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

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

  .hero-preview-cards {
    grid-template-columns: 1fr;
  }

  .mockup-table-header,
  .mockup-row {
    grid-template-columns: 1.5fr 1fr;
  }

  .mockup-table-header span:nth-child(3),
  .mockup-table-header span:nth-child(4),
  .mockup-row div:nth-child(3),
  .mockup-row div:nth-child(4) {
    display: none;
  }

  .step-card,
  .step-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.75rem 0;
  }

  .step-number,
  .step-num {
    font-size: 2.5rem;
  }

  .section-spacing {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .recapture-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 1.75rem 0;
  }

  .recapture-stat-col {
    padding: 0.5rem 0;
  }

  .recapture-stat-col:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border-card);
    padding-bottom: 1.5rem;
  }

  .footer-bottom-bar-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  .footer-nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
  }
}
