/* =====================================================
   Mainstreet Origin - Hero's Journey Cinematic Redesign
   =====================================================
   Performance-obsessed | Scroll-driven animations | 2025 CSS
   Target: 95+ Lighthouse | <100KB total load
   ===================================================== */

/* =====================================================
   CSS LAYERS - Specificity Control
   ===================================================== */
@layer reset, base, layout, components, sections, animations, utilities;

/* =====================================================
   LAYER: RESET
   ===================================================== */
@layer reset {
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

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

  body {
    min-height: 100vh;
    min-height: 100dvh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
  }

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

  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }

  ul, ol {
    list-style: none;
  }

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

  button {
    background: none;
    border: none;
    cursor: pointer;
  }
}

/* =====================================================
   LAYER: BASE - Custom Properties & Typography
   ===================================================== */
@layer base {
  :root {
    /* === JOURNEY COLOR SYSTEM === */
    
    /* Ordinary World - Heavy, Dim */
    --journey-ordinary-bg: #080a0f;
    --journey-ordinary-surface: #0d1117;
    
    /* Gathering Storm - Darker, Tension */
    --journey-storm-bg: #0d0f17;
    --journey-storm-purple: #100e14;
    
    /* The Call - Light Breaking Through */
    --journey-call-glow: rgba(255, 102, 0, 0.08);
    
    /* Meeting Guide - Warm, Trustworthy */
    --journey-guide-warmth: #10110f;
    --journey-guide-glow: rgba(245, 158, 11, 0.03);
    
    /* Triumph - Success Undertone */
    --journey-triumph-glow: rgba(34, 197, 94, 0.05);
    --journey-triumph-bg: #111614;
    
    /* Freedom - Full Radiance */
    --journey-freedom-glow: rgba(255, 102, 0, 0.1);
    
    /* === BRAND COLORS === */
    --color-primary: #ff6600;
    --color-primary-hover: #ff7a1a;
    --color-primary-dark: #e65c00;
    --color-primary-glow: rgba(255, 102, 0, 0.2);
    
    /* === SURFACE COLORS === */
    --surface-darkest: #080a0f;
    --surface-dark: #0d1117;
    --surface-base: #111827;
    --surface-elevated: #1a2332;
    --surface-highlight: #1f2937;
    
    /* === TEXT HIERARCHY - High Contrast for Dark Theme === */
    --text-hero: #ffffff;
    --text-heading: #f9fafb;
    --text-body: #e5e7eb;
    --text-muted: #b4b9c2;
    --text-dim: #8b92a0;
    
    /* === SEMANTIC COLORS === */
    --color-error: #ef4444;
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    
    /* === BORDERS === */
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-primary: rgba(255, 102, 0, 0.2);
    --border-success: rgba(34, 197, 94, 0.2);
    
    /* === TYPOGRAPHY - Font Stacks === */
    --font-heading: 'Oswald', Impact, 'Arial Narrow', Haettenschweiler, sans-serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Roboto, sans-serif;
    
    /* === TYPOGRAPHY - Fluid Scale (using --size- prefix to avoid collision with color vars) === */
    --size-display: clamp(2.25rem, 5vw + 1rem, 4rem);
    --size-chapter: clamp(1.625rem, 3.5vw + 0.5rem, 2.75rem);
    --size-subhead: clamp(1.125rem, 1.5vw + 0.75rem, 1.5rem);
    --size-body-lg: clamp(1rem, 0.5vw + 0.875rem, 1.125rem);
    --size-body: clamp(0.9375rem, 0.25vw + 0.875rem, 1rem);
    --size-small: clamp(0.8125rem, 0.125vw + 0.75rem, 0.875rem);
    --size-xs: 0.75rem;
    
    /* === LINE HEIGHTS === */
    --leading-none: 1;
    --leading-tight: 1.15;
    --leading-snug: 1.3;
    --leading-normal: 1.5;
    --leading-relaxed: 1.7;
    
    /* === LETTER SPACING === */
    --tracking-tighter: -0.04em;
    --tracking-tight: -0.02em;
    --tracking-normal: 0;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;
    
    /* === SPACING - Cinematic Rhythm === */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-section: clamp(4rem, 10vh, 8rem);
    --space-block: clamp(2rem, 5vh, 4rem);
    
    /* === LAYOUT === */
    --container-max: 1400px;
    --container-content: 900px;
    --container-narrow: 720px;
    --container-reading: 65ch;
    --container-padding: clamp(1.25rem, 4vw, 2.5rem);
    
    /* === BORDERS & RADIUS === */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* === SHADOWS === */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px var(--color-primary-glow);
    --shadow-glow-lg: 0 0 60px var(--color-primary-glow);
    
    /* === TRANSITIONS === */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 150ms;
    --duration-base: 250ms;
    --duration-slow: 400ms;
    --duration-slower: 600ms;
  }

  /* Base Typography */
  body {
    font-family: var(--font-body);
    font-size: var(--size-body);
    line-height: var(--leading-normal);
    color: var(--text-body);
    background-color: var(--surface-dark);
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
    color: var(--text-heading);
    text-transform: uppercase;
  }

  h1 { font-size: var(--size-display); }
  h2 { font-size: var(--size-chapter); text-align: center; }
  h3 { font-size: var(--size-subhead); }
  h4 { font-size: var(--size-body-lg); }

  p {
    margin-bottom: var(--space-md);
    color: var(--text-body);
  }

  p:last-child {
    margin-bottom: 0;
  }

  strong {
    font-weight: 700;
    color: var(--text-heading);
  }

  a {
    color: var(--color-primary);
    transition: color var(--duration-fast) var(--ease-out);
  }

  a:hover {
    color: var(--color-primary-hover);
  }

  ::selection {
    background: var(--color-primary);
    color: white;
  }
}

/* =====================================================
   LAYER: LAYOUT
   ===================================================== */
@layer layout {
  .container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-padding);
  }

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

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

/* =====================================================
   LAYER: COMPONENTS
   ===================================================== */
@layer components {
  /* === BUTTONS === */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: var(--size-small);
    font-weight: 700;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    text-align: center;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: 
      background var(--duration-base) var(--ease-out),
      border-color var(--duration-base) var(--ease-out),
      color var(--duration-base) var(--ease-out),
      transform var(--duration-base) var(--ease-out),
      box-shadow var(--duration-base) var(--ease-out);
  }

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

  .btn-primary {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
  }

  .btn-primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow), var(--shadow-md);
  }

  .btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
  }

  .btn-secondary:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
  }

  .btn-outline {
    background: transparent;
    color: var(--text-muted);
    border-color: var(--border-light);
  }

  .btn-outline:hover {
    background: var(--surface-highlight);
    border-color: var(--text-muted);
    color: var(--text-heading);
  }

  .btn-large {
    padding: 1rem 2.25rem;
    font-size: var(--size-body);
  }

  /* === SKIP LINK === */
  .skip-link {
    position: absolute;
    top: -100px;
    left: var(--space-md);
    background: var(--color-primary);
    color: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 600;
    /* Ensure it's fully hidden when not focused */
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    overflow: hidden;
  }

  .skip-link:focus {
    top: var(--space-md);
    clip: auto;
    overflow: visible;
  }
}

/* =====================================================
   LAYER: SECTIONS - Navigation
   ===================================================== */
@layer sections {
  /* ===== NAVBAR BAR ===== */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: rgba(13, 17, 23, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    transition:
      background var(--duration-base) var(--ease-out),
      box-shadow var(--duration-base) var(--ease-out);
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1100;
  }

  .logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
  }

  /* ===== HAMBURGER TOGGLE (Mobile Only) ===== */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    background: transparent;
    transition: background var(--duration-fast) var(--ease-out);
    position: relative;
    z-index: 1100;
  }

  .nav-toggle:hover {
    background: var(--surface-highlight);
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-heading);
    border-radius: 2px;
    transition: all var(--duration-base) var(--ease-out);
  }

  /* ===== MOBILE MENU WRAPPER (Full Screen Modal) ===== */
  .nav-menu-wrapper {
    /* Hidden by default on mobile */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: var(--surface-darkest);
    z-index: 1050;
    
    /* Hidden state */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    
    /* Layout - true vertical centering */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    /* Allow scrolling if needed */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    
    /* Smooth transition */
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  /* Active state - menu is open */
  .nav-menu-wrapper.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Body scroll lock when menu is open */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }

  /* Hide hamburger when menu is open */
  body.menu-open .nav-toggle {
    display: none !important;
  }

  /* ===== CLOSE BUTTON (Only visible when menu is open) ===== */
  .nav-close {
    /* Hidden by default */
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    background: var(--surface-highlight);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1060;
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  /* Only show close button when menu is active */
  .nav-menu-wrapper.active .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-close:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
  }

  /* X icon using pseudo-elements */
  .nav-close::before,
  .nav-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--text-heading);
    transition: background 0.2s ease;
  }

  .nav-close::before { transform: rotate(45deg); }
  .nav-close::after { transform: rotate(-45deg); }

  .nav-close:hover::before,
  .nav-close:hover::after {
    background: white;
  }

  /* ===== MOBILE MENU LIST ===== */
  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
    max-width: 280px;
    padding: 0;
    margin: 0;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  /* Staggered animation when menu opens */
  .nav-menu-wrapper.active .nav-menu li {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-menu-wrapper.active .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
  .nav-menu-wrapper.active .nav-menu li:nth-child(2) { transition-delay: 0.15s; }
  .nav-menu-wrapper.active .nav-menu li:nth-child(3) { transition-delay: 0.2s; }
  .nav-menu-wrapper.active .nav-menu li:nth-child(4) { transition-delay: 0.25s; }

  .nav-link {
    display: block;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--text-heading);
    transition: color 0.2s ease;
  }

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

  .nav-cta {
    margin-top: var(--space-lg);
  }

  .nav-cta .btn {
    width: 100%;
    padding: 1rem 2.5rem;
    font-size: var(--size-body);
  }

  /* ===== DESKTOP NAVIGATION (768px+) ===== */
  @media (min-width: 768px) {
    /* Hide hamburger and close button on desktop */
    .nav-toggle,
    .nav-close {
      display: none !important;
    }

    /* Reset wrapper to inline navigation */
    .nav-menu-wrapper {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      display: flex;
      flex-direction: row;
      justify-content: flex-end;
      overflow: visible;
    }

    /* Horizontal menu */
    .nav-menu {
      flex-direction: row;
      justify-content: flex-end;
      align-items: center;
      max-width: none;
      gap: var(--space-xl);
    }

    .nav-menu li {
      width: auto;
      opacity: 1;
      transform: none;
      transition: none;
    }

    .nav-link {
      font-family: var(--font-body);
      font-size: var(--size-small);
      font-weight: 500;
      padding: var(--space-sm) 0;
      color: var(--text-muted);
      text-transform: none;
      letter-spacing: normal;
      position: relative;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--color-primary);
      transition: width var(--duration-base) var(--ease-out);
    }

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

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

    .nav-cta {
      margin-top: 0;
      margin-left: var(--space-sm);
    }

    .nav-cta .btn {
      width: auto;
      padding: 0.75rem 1.5rem;
      font-size: var(--size-small);
    }
  }
}

/* =====================================================
   LAYER: SECTIONS - Hero (Call to Adventure)
   ===================================================== */
@layer sections {
  .hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: calc(80px + var(--space-section)) var(--container-padding) var(--space-section);
    text-align: center;
    overflow: hidden;
    
    /* Journey: Dark with golden glow emerging at bottom */
    background: 
      radial-gradient(ellipse 80% 50% at 50% 100%, 
        var(--journey-call-glow) 0%, 
        transparent 60%),
      linear-gradient(180deg,
        var(--surface-darkest) 0%,
        var(--surface-dark) 100%);
  }

  /* Subtle noise texture overlay */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
  }

  /* Bottom fade to next section */
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--journey-storm-bg), transparent);
    pointer-events: none;
  }

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

  .hero h1 {
    max-width: 900px;
    margin-inline: auto;
    margin-bottom: var(--space-lg);
    color: var(--text-hero);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  }

  .hero .highlight {
    display: block;
    color: var(--color-primary);
    text-shadow: 
      0 0 40px rgba(255, 102, 0, 0.4),
      0 4px 30px rgba(0, 0, 0, 0.5);
  }

  .hero-subtitle {
    font-size: var(--size-body-lg);
    line-height: var(--leading-relaxed);
    color: var(--text-body);
    max-width: 560px;
    margin: 0 auto var(--space-xl);
  }

  .hero .btn {
    margin-bottom: var(--space-2xl);
  }

  .trust-signals {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--size-small);
    color: var(--text-muted);
  }

  .trust-signals span {
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
  }

  @media (min-width: 640px) {
    .trust-signals {
      flex-direction: row;
      justify-content: center;
      flex-wrap: wrap;
      gap: var(--space-md);
    }

    .hero .highlight {
      display: inline;
    }
  }

  @media (min-width: 1024px) {
    .hero {
      padding-top: calc(100px + var(--space-section));
    }
  }
}

/* =====================================================
   LAYER: SECTIONS - Pain Points (The Weight)
   ===================================================== */
@layer sections {
  .pain-points {
    position: relative;
    padding: var(--space-section) 0;
    
    /* Journey: Storm gathering - darker, purple-tinged */
    background: 
      linear-gradient(180deg,
        var(--journey-storm-bg) 0%,
        var(--journey-storm-purple) 100%);
    
    /* Performance: Skip rendering when off-screen */
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
  }

  /* Vignette effect */
  .pain-points::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, 
      transparent 0%, 
      rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
  }

  .pain-points .container {
    position: relative;
    z-index: 1;
  }

  .pain-points h2 {
    margin-bottom: var(--space-lg);
  }

  .pain-intro {
    text-align: center;
    max-width: var(--container-reading);
    margin: 0 auto var(--space-block);
    font-size: var(--size-body-lg);
  }

  /* Pain Grid - Visual Card Layout */
  .pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto var(--space-block);
  }

  @media (min-width: 768px) {
    .pain-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-lg);
    }
  }

  .pain-card {
    position: relative;
    padding: var(--space-lg);
    background: rgba(239, 68, 68, 0.03);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: var(--radius-lg);
    text-align: center;
    transition:
      transform var(--duration-base) var(--ease-out),
      border-color var(--duration-base) var(--ease-out),
      background var(--duration-base) var(--ease-out),
      box-shadow var(--duration-base) var(--ease-out);
  }

  .pain-card:hover {
    transform: translateY(-4px);
    background: rgba(239, 68, 68, 0.06);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.3),
      0 0 30px rgba(239, 68, 68, 0.1);
  }

  .pain-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    filter: grayscale(30%) brightness(0.9);
    transition: filter var(--duration-base) var(--ease-out);
  }

  .pain-card:hover .pain-icon {
    filter: grayscale(0%) brightness(1);
  }

  .pain-card h3 {
    font-family: var(--font-body);
    font-size: var(--size-small);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    color: rgba(239, 68, 68, 0.9);
    margin-bottom: var(--space-xs);
  }

  .pain-card p {
    font-size: var(--size-small);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
    margin: 0;
  }

  .pain-bridge {
    text-align: center;
    max-width: var(--container-reading);
    margin: var(--space-block) auto;
    font-size: var(--size-body-lg);
  }

  .quote {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--color-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
  }

  .quote p {
    font-size: var(--size-body-lg);
    font-style: italic;
    color: var(--text-heading);
    line-height: var(--leading-relaxed);
    margin: 0;
  }
}

/* =====================================================
   LAYER: SECTIONS - About (Meeting the Guide)
   ===================================================== */
@layer sections {
  .about {
    position: relative;
    padding: var(--space-section) 0;
    
    /* Journey: Warming - approaching the campfire */
    background: 
      radial-gradient(ellipse 60% 40% at 50% 0%, 
        var(--journey-guide-glow) 0%, 
        transparent 50%),
      linear-gradient(180deg,
        var(--journey-storm-purple) 0%,
        var(--surface-base) 50%,
        var(--journey-guide-warmth) 100%);
    
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
  }

  .about h2 {
    margin-bottom: var(--space-block);
  }

  .about-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
  }

  .about-profile {
    text-align: center;
    margin-bottom: var(--space-block);
  }

  .profile-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 4px solid rgba(245, 158, 11, 0.25);
    box-shadow: 
      0 0 40px rgba(245, 158, 11, 0.15),
      var(--shadow-lg);
  }

  .about-content p {
    font-size: var(--size-body-lg);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-lg);
  }

  .results-preview {
    margin-top: var(--space-block);
    padding: var(--space-xl);
    background: rgba(34, 197, 94, 0.04);
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: var(--radius-lg);
  }

  .results-preview h3 {
    color: var(--color-success);
    margin-bottom: var(--space-md);
    text-align: left;
    font-size: var(--size-subhead);
  }

  .results-preview ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

  .results-preview li {
    position: relative;
    padding-left: var(--space-lg);
    color: var(--text-body);
    line-height: var(--leading-relaxed);
  }

  .results-preview li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
  }

  .results-preview li strong {
    color: var(--text-heading);
  }
}

/* =====================================================
   LAYER: SECTIONS - Proof of Work (Those Who Walked Before)
   ===================================================== */
@layer sections {
  .proof-of-work {
    padding: var(--space-section) 0;
    background: var(--surface-elevated);
    
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
  }

  .proof-of-work h2 {
    margin-bottom: var(--space-lg);
  }

  .proof-intro {
    text-align: center;
    max-width: 560px;
    margin: 0 auto var(--space-block);
    font-size: var(--size-body-lg);
    color: var(--text-body);
  }

  .proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-lg);
    max-width: 700px;
    margin: 0 auto;
  }

  .proof-item {
    text-align: center;
    padding: var(--space-xl);
    background: var(--surface-highlight);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: 
      transform var(--duration-base) var(--ease-out),
      box-shadow var(--duration-base) var(--ease-out),
      border-color var(--duration-base) var(--ease-out);
  }

  .proof-item:hover {
    transform: translateY(-8px);
    border-color: var(--border-primary);
    box-shadow: 
      var(--shadow-lg),
      0 0 30px rgba(255, 102, 0, 0.1);
  }

  .proof-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-md);
  }

  .proof-item h4 {
    color: var(--text-heading);
    margin-bottom: var(--space-xs);
    font-family: var(--font-body);
    font-size: var(--size-body);
    font-weight: 700;
    text-transform: none;
  }

  .proof-item p {
    color: var(--text-muted);
    font-size: var(--size-small);
    margin: 0;
  }
}

/* =====================================================
   LAYER: SECTIONS - Services (Choose Your Path)
   ===================================================== */
@layer sections {
  .services {
    position: relative;
    padding: var(--space-section) 0;
    
    /* Journey: The crossroads - subtle split */
    background: 
      linear-gradient(90deg,
        rgba(15, 20, 25, 1) 0%,
        var(--surface-base) 50%,
        rgba(20, 18, 15, 1) 100%);
    
    content-visibility: auto;
    contain-intrinsic-size: auto 1000px;
  }

  .services h2 {
    margin-bottom: var(--space-lg);
  }

  .services-intro {
    text-align: center;
    max-width: 620px;
    margin: 0 auto var(--space-block);
    font-size: var(--size-body-lg);
    color: var(--text-body);
  }

  .services-grid {
    display: grid;
    gap: var(--space-lg);
    max-width: var(--container-content);
    margin: 0 auto;
  }

  @media (min-width: 768px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      align-items: start;
    }
  }

  .service-card {
    position: relative;
    background: var(--surface-highlight);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: 
      transform var(--duration-base) var(--ease-out),
      box-shadow var(--duration-base) var(--ease-out);
    
    /* Container queries for responsive card layouts */
    container-type: inline-size;
  }

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

  .service-card.featured {
    border-color: var(--border-primary);
    box-shadow: var(--shadow-glow);
  }

  .service-card.featured:hover {
    box-shadow: var(--shadow-glow-lg), var(--shadow-lg);
  }

  .service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: var(--space-xs) var(--space-md);
    font-size: var(--size-xs);
    font-weight: 700;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    border-radius: var(--radius-full);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.4);
  }

  .service-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    padding-top: var(--space-sm);
  }

  .service-header h3 {
    margin-bottom: var(--space-sm);
    color: var(--text-heading);
  }

  .price {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: var(--tracking-tight);
  }

  .price span {
    font-family: var(--font-body);
    font-size: var(--size-body);
    font-weight: 400;
    color: var(--text-muted);
  }

  .service-description {
    text-align: center;
    color: var(--text-body);
    margin-bottom: var(--space-lg);
  }

  .service-features {
    margin-bottom: var(--space-lg);
  }

  .service-features li {
    position: relative;
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    color: var(--text-body);
  }

  .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
  }

  .service-ideal {
    font-size: var(--size-small);
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    margin-bottom: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-subtle);
  }

  .service-card .btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* Container query for larger cards */
  @container (min-width: 380px) {
    .service-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      text-align: left;
    }

    .service-header h3 {
      margin-bottom: 0;
    }
  }
}

/* =====================================================
   LAYER: SECTIONS - Results (The Triumph)
   ===================================================== */
@layer sections {
  .results {
    position: relative;
    padding: var(--space-section) 0;
    
    /* Journey: Approaching triumph - green success undertone */
    background: 
      radial-gradient(ellipse 80% 60% at 50% 100%,
        var(--journey-triumph-glow) 0%,
        transparent 50%),
      linear-gradient(180deg,
        var(--surface-elevated) 0%,
        var(--journey-triumph-bg) 100%);
    
    content-visibility: auto;
    contain-intrinsic-size: auto 700px;
  }

  .results h2 {
    margin-bottom: var(--space-lg);
  }

  .results-intro {
    text-align: center;
    max-width: 560px;
    margin: 0 auto var(--space-block);
    font-size: var(--size-body-lg);
    color: var(--text-body);
  }

  .results-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: repeat(2, 1fr);
  }

  /* Center last item on mobile if odd count */
  .results-grid .result-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 300px;
    justify-self: center;
  }

  @media (min-width: 640px) {
    .results-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .results-grid .result-item:last-child:nth-child(odd) {
      grid-column: auto;
      max-width: none;
      justify-self: auto;
    }
  }

  @media (min-width: 1024px) {
    .results-grid {
      grid-template-columns: repeat(5, 1fr);
      gap: var(--space-md);
    }
  }

  .result-item {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: 
      background var(--duration-base) var(--ease-out),
      border-color var(--duration-base) var(--ease-out),
      transform var(--duration-base) var(--ease-out);
  }

  .result-item:hover {
    background: rgba(34, 197, 94, 0.04);
    border-color: var(--border-success);
    transform: translateY(-4px);
  }

  .result-icon {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
    display: block;
    filter: drop-shadow(0 2px 8px rgba(34, 197, 94, 0.2));
  }

  .result-item h4 {
    font-family: var(--font-body);
    font-size: var(--size-small);
    font-weight: 700;
    text-transform: none;
    color: var(--text-heading);
    margin-bottom: var(--space-sm);
  }

  .result-item p {
    font-size: var(--size-small);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
    margin: 0;
  }
}

/* =====================================================
   LAYER: SECTIONS - Getting Started (The Return)
   ===================================================== */
@layer sections {
  .getting-started {
    padding: var(--space-section) 0;
    background: var(--surface-base);
    
    content-visibility: auto;
    contain-intrinsic-size: auto 700px;
  }

  .getting-started h2 {
    margin-bottom: var(--space-lg);
  }

  .getting-started-intro {
    text-align: center;
    max-width: 560px;
    margin: 0 auto var(--space-block);
    font-size: var(--size-body-lg);
    color: var(--text-body);
  }

  .steps {
    display: grid;
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto var(--space-block);
  }

  @media (min-width: 640px) {
    .steps {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .step {
    text-align: center;
    padding: var(--space-lg);
    background: var(--surface-highlight);
    border-radius: var(--radius-lg);
  }

  .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--color-primary);
    color: white;
    font-family: var(--font-heading);
    font-size: var(--size-subhead);
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
  }

  .step h4 {
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: none;
    color: var(--text-heading);
    margin-bottom: var(--space-sm);
  }

  .step p {
    font-size: var(--size-small);
    color: var(--text-body);
    margin: 0;
  }

  .promise {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: var(--space-xl);
    background: rgba(245, 158, 11, 0.04);
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    text-align: center;
  }

  .promise p {
    color: var(--text-body);
    line-height: var(--leading-relaxed);
    margin: 0;
  }

  .promise strong {
    color: var(--color-primary);
  }
}

/* =====================================================
   LAYER: SECTIONS - FAQ (Answering the Call)
   ===================================================== */
@layer sections {
  .faq {
    padding: var(--space-section) 0;
    background: var(--surface-elevated);
    
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
  }

  .faq h2 {
    margin-bottom: var(--space-block);
  }

  .faq-list {
    max-width: var(--container-narrow);
    margin: 0 auto;
  }

  .faq-item {
    background: var(--surface-highlight);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: 
      border-color var(--duration-base) var(--ease-out),
      box-shadow var(--duration-base) var(--ease-out);
  }

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

  /* Use :has() for open state styling */
  .faq-item:has([open]),
  .faq-item[open] {
    border-color: var(--border-primary);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.05);
  }

  .faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    font-weight: 600;
    font-size: var(--size-body);
    color: var(--text-heading);
    cursor: pointer;
    list-style: none;
    transition: background var(--duration-fast) var(--ease-out);
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-item summary:hover {
    background: rgba(255, 255, 255, 0.02);
  }

  .faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-left: var(--space-md);
    transition: transform var(--duration-base) var(--ease-out);
  }

  .faq-item[open] summary::after {
    transform: rotate(45deg);
  }

  .faq-item p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-body);
    line-height: var(--leading-relaxed);
    margin: 0;
  }
}

/* =====================================================
   LAYER: SECTIONS - Contact (Freedom to Live)
   ===================================================== */
@layer sections {
  .contact {
    position: relative;
    padding: var(--space-section) 0;
    text-align: center;
    
    /* Journey: Full radiance - triumphant culmination */
    background: 
      radial-gradient(ellipse 80% 60% at 50% 0%,
        var(--journey-freedom-glow) 0%,
        transparent 50%),
      radial-gradient(ellipse 60% 40% at 50% 100%,
        rgba(255, 102, 0, 0.05) 0%,
        transparent 40%),
      linear-gradient(180deg,
        var(--surface-base) 0%,
        var(--surface-dark) 100%);
  }

  .contact h2 {
    margin-bottom: var(--space-md);
    color: var(--text-heading);
  }

  .contact-intro {
    font-size: var(--size-body-lg);
    color: var(--text-body);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-inline: auto;
  }

  .contact-phone {
    margin-bottom: var(--space-2xl);
  }

  .contact-phone a {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: var(--tracking-tight);
    text-shadow: 0 0 30px rgba(255, 102, 0, 0.3);
    transition: 
      text-shadow var(--duration-base) var(--ease-out),
      transform var(--duration-base) var(--ease-out);
    display: inline-block;
  }

  .contact-phone a:hover {
    text-shadow: 0 0 50px rgba(255, 102, 0, 0.5);
    transform: scale(1.02);
  }

  .contact-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 360px;
    margin: 0 auto var(--space-lg);
  }

  .contact-buttons .btn {
    width: 100%;
  }

  .contact-fallback {
    display: none;
    margin-bottom: var(--space-xl);
  }

  .contact-fallback p {
    font-size: var(--size-small);
    color: var(--text-muted);
    margin: 0;
  }

  .contact-fallback a {
    color: var(--color-primary);
    font-weight: 600;
  }

  .contact-fallback a:hover {
    text-decoration: underline;
  }

  /* Show desktop fallback on non-touch devices */
  @media (hover: hover) and (pointer: fine) {
    .contact-fallback {
      display: block;
    }
  }

  @media (min-width: 768px) {
    .contact-buttons {
      flex-direction: row;
      max-width: 400px;
      justify-content: center;
    }

    .contact-buttons .btn {
      flex: none;
      width: auto;
      padding: 1rem 2.5rem;
    }
  }

  .contact-reassurance {
    font-size: var(--size-small);
    color: var(--text-muted);
  }
}

/* =====================================================
   LAYER: SECTIONS - Footer (Epilogue)
   ===================================================== */
@layer sections {
  .footer {
    padding: var(--space-block) 0;
    background: var(--surface-darkest);
    text-align: center;
    border-top: 1px solid var(--border-subtle);
  }

  .footer-brand {
    font-family: var(--font-heading);
    font-size: var(--size-subhead);
    font-weight: 600;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--text-heading);
    margin-bottom: var(--space-sm);
  }

  .footer-tagline {
    font-size: var(--size-small);
    color: var(--text-body);
    margin-bottom: var(--space-xs);
  }

  .footer-location {
    font-size: var(--size-small);
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
  }

  .footer-copyright {
    font-size: var(--size-small);
    color: var(--text-dim);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
  }
}

/* =====================================================
   LAYER: ANIMATIONS - Scroll-Driven (Native CSS)
   ===================================================== */
@layer animations {
  /* Hero Animations - Load animations (not scroll) */
  .hero h1 {
    animation: headline-reveal 1s var(--ease-out) both;
    animation-delay: 0.2s;
  }

  .hero-subtitle {
    animation: fade-up 0.8s var(--ease-out) both;
    animation-delay: 0.5s;
  }

  .hero .btn {
    animation: fade-up 0.8s var(--ease-out) both;
    animation-delay: 0.7s;
  }

  .trust-signals span {
    animation: fade-up 0.6s var(--ease-out) both;
  }

  .trust-signals span:nth-child(1) { animation-delay: 0.9s; }
  .trust-signals span:nth-child(2) { animation-delay: 1.0s; }
  .trust-signals span:nth-child(3) { animation-delay: 1.1s; }

  @keyframes headline-reveal {
    from {
      opacity: 0;
      transform: translateY(30px);
      filter: blur(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }
  }

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

  /* Scroll-Driven Animations with @supports for progressive enhancement */
  @supports (animation-timeline: view()) {
    /* Section reveal on scroll */
    .pain-points,
    .about,
    .proof-of-work,
    .services,
    .results,
    .getting-started,
    .faq,
    .contact {
      animation: section-reveal linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 25%;
    }

    @keyframes section-reveal {
      from {
        opacity: 0.3;
      }
      to {
        opacity: 1;
      }
    }

    /* Pain cards reveal on scroll */
    .pain-card {
      animation: pain-card-reveal linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 35%;
    }

    @keyframes pain-card-reveal {
      from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    /* Quote glow */
    .quote {
      animation: quote-glow linear both;
      animation-timeline: view();
      animation-range: entry 10% entry 50%;
    }

    @keyframes quote-glow {
      from {
        opacity: 0;
        box-shadow: -3px 0 0 transparent;
      }
      to {
        opacity: 1;
        box-shadow: -3px 0 0 var(--color-primary), 0 0 40px rgba(255, 102, 0, 0.1);
      }
    }

    /* Profile image reveal */
    .profile-img {
      animation: guide-reveal linear both;
      animation-timeline: view();
      animation-range: entry 10% entry 40%;
    }

    @keyframes guide-reveal {
      from {
        opacity: 0;
        transform: scale(0.9);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* Service cards slide from sides */
    .service-card:first-child {
      animation: path-left linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 40%;
    }

    .service-card:last-child {
      animation: path-right linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 40%;
    }

    @keyframes path-left {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes path-right {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Results cascade */
    .result-item {
      animation: cascade-up linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 35%;
    }

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

    /* Steps sequence */
    .step {
      animation: step-reveal linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 40%;
    }

    @keyframes step-reveal {
      from {
        opacity: 0;
        transform: scale(0.95);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* Contact CTA cascade */
    .contact-buttons .btn {
      animation: cta-reveal linear both;
      animation-timeline: view();
      animation-range: entry 10% entry 40%;
    }

    @keyframes cta-reveal {
      from {
        opacity: 0;
        transform: translateY(15px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  }

  /* Fallback for browsers without scroll-driven animations */
  @supports not (animation-timeline: view()) {
    .pain-points,
    .about,
    .proof-of-work,
    .services,
    .results,
    .getting-started,
    .faq,
    .contact {
      opacity: 1;
    }

    .pain-card,
    .quote,
    .profile-img,
    .service-card,
    .result-item,
    .step,
    .contact-buttons .btn {
      opacity: 1;
      transform: none;
    }
  }

  /* Phone number subtle glow pulse */
  .contact-phone a {
    animation: phone-glow 3s ease-in-out infinite;
  }

  @keyframes phone-glow {
    0%, 100% {
      text-shadow: 0 0 30px rgba(255, 102, 0, 0.3);
    }
    50% {
      text-shadow: 0 0 50px rgba(255, 102, 0, 0.5);
    }
  }
}

/* =====================================================
   LAYER: UTILITIES - Accessibility & Reduced Motion
   ===================================================== */
@layer utilities {
  /* Reduced motion - disable all animations */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }

    .hero h1,
    .hero-subtitle,
    .hero .btn,
    .trust-signals span,
    .contact-phone a {
      animation: none !important;
      opacity: 1 !important;
      transform: none !important;
      filter: none !important;
    }
  }

  /* Focus visibility */
  a:focus-visible,
  button:focus-visible,
  summary:focus-visible,
  [tabindex]:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

  /* Screen reader only */
  .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;
  }
}
