@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@600;700;800&family=Inter:wght@400;500&display=swap');

@layer reset, tokens, layout, components, utilities;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body { min-height: 100vh; line-height: 1.6; -webkit-font-smoothing: antialiased; }
  img, video { max-width: 100%; display: block; }
  ul, ol { list-style: none; }
  a { text-decoration: none; color: inherit; }
  button { cursor: pointer; border: none; background: none; font: inherit; }
  input, textarea, select { font: inherit; }
  address { font-style: normal; }
  table { border-collapse: collapse; width: 100%; }
}

@layer tokens {
  :root {
    --clr-bg: #0e1117;
    --clr-bg-2: #161b26;
    --clr-surface: #1e2636;
    --clr-surface-2: #252f42;
    --clr-border: rgba(255,255,255,0.08);
    --clr-border-light: rgba(0,0,0,0.08);

    --clr-primary: #e8f0ff;
    --clr-primary-muted: #a8b8d8;
    --clr-accent: #4f7cff;
    --clr-accent-hover: #3d6aee;
    --clr-accent-glow: rgba(79,124,255,0.18);
    --clr-warm: #f0a44a;
    --clr-warm-muted: rgba(240,164,74,0.15);

    --clr-text-dark: #0e1117;
    --clr-text-dark-muted: #4a5568;
    --clr-text-light: #e8f0ff;
    --clr-text-light-muted: #8fa0be;

    --clr-light-bg: #f4f6fb;
    --clr-light-surface: #ffffff;
    --clr-light-surface-2: #eef1f8;

    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;

    --step--1: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --step-0: clamp(0.9375rem, 0.875rem + 0.3125vw, 1rem);
    --step-1: clamp(1.1rem, 1rem + 0.5vw, 1.25rem);
    --step-2: clamp(1.3rem, 1.1rem + 1vw, 1.6rem);
    --step-3: clamp(1.6rem, 1.3rem + 1.5vw, 2.2rem);
    --step-4: clamp(2rem, 1.5rem + 2.5vw, 3rem);
    --step-5: clamp(2.5rem, 1.8rem + 3.5vw, 4rem);
    --step-6: clamp(3rem, 2rem + 5vw, 6rem);

    --space-xs: 0.5rem;
    --space-sm: 0.875rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-pill: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.15), 0 1px 2px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.2), 0 2px 6px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.28), 0 4px 16px rgba(0,0,0,0.16);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.2);
    --shadow-accent: 0 4px 20px rgba(79,124,255,0.35), 0 2px 8px rgba(79,124,255,0.2);
    --shadow-float: 0 12px 40px rgba(0,0,0,0.35), 0 4px 16px rgba(0,0,0,0.2), 0 1px 4px rgba(0,0,0,0.1);

    --nav-height: 72px;
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  }
}

@layer layout {
  body {
    font-family: var(--font-body);
    font-size: var(--step-0);
    color: var(--clr-text-dark);
    background-color: var(--clr-bg);
  }

  .container {
    width: min(1200px, 100% - 2rem);
    margin-inline: auto;
  }

  @media (min-width: 768px) {
    .container { width: min(1200px, 100% - 4rem); }
  }
}

@layer components {

  
  .siteHeader {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    height: var(--nav-height);
    transition: background-color var(--transition-base), backdrop-filter var(--transition-base), box-shadow var(--transition-base);
  }

  .siteHeader--light {
    background: rgba(244,246,251,0.9);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  }

  .siteHeader--dark {
    background: rgba(14,17,23,0.85);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  }

  .siteHeader_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: min(1200px, 100% - 2rem);
    margin-inline: auto;
    gap: var(--space-md);
  }

  .siteHeader_logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    transition: opacity var(--transition-fast);
  }
  .siteHeader_logo:hover { opacity: 0.8; }
  .siteHeader_logo img { height: 36px; width: auto; }

  .siteHeader_nav {
    display: none;
    align-items: center;
    gap: var(--space-xs);
  }

  @media (min-width: 900px) {
    .siteHeader_nav { display: flex; }
  }

  .siteHeader_navPill {
    padding: 0.4em 1em;
    border-radius: var(--radius-pill);
    font-size: var(--step--1);
    font-weight: 500;
    transition: background-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
    white-space: nowrap;
  }

  .siteHeader--light .siteHeader_navPill {
    color: var(--clr-text-dark);
  }
  .siteHeader--light .siteHeader_navPill:hover {
    background: rgba(79,124,255,0.1);
    color: var(--clr-accent);
  }
  .siteHeader--light .siteHeader_navPill.active {
    background: var(--clr-accent);
    color: #fff;
    box-shadow: var(--shadow-accent);
  }
  .siteHeader--light .siteHeader_navPill--cta {
    background: var(--clr-accent);
    color: #fff;
    box-shadow: var(--shadow-accent);
  }
  .siteHeader--light .siteHeader_navPill--cta:hover {
    background: var(--clr-accent-hover);
    color: #fff;
  }

  .siteHeader--dark .siteHeader_navPill {
    color: var(--clr-text-light);
  }
  .siteHeader--dark .siteHeader_navPill:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
  }
  .siteHeader--dark .siteHeader_navPill.active {
    background: var(--clr-accent);
    color: #fff;
    box-shadow: var(--shadow-accent);
  }
  .siteHeader--dark .siteHeader_navPill--cta {
    background: var(--clr-accent);
    color: #fff;
    box-shadow: var(--shadow-accent);
  }
  .siteHeader--dark .siteHeader_navPill--cta:hover {
    background: var(--clr-accent-hover);
  }

  
  .siteHeader_burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }

  @media (min-width: 900px) {
    .siteHeader_burger { display: none; }
  }

  .siteHeader_burger span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
  }

  .siteHeader--light .siteHeader_burger span { background: var(--clr-text-dark); }
  .siteHeader--dark .siteHeader_burger span { background: var(--clr-text-light); }

  
  .mobileOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-slow);
  }
  .mobileOverlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .mobilePanel {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 80%;
    max-width: 320px;
    background: var(--clr-surface);
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    overflow-y: auto;
  }
  .mobilePanel.active {
    transform: translateX(0);
  }

  .mobilePanel_close {
    align-self: flex-end;
    color: var(--clr-text-light);
    font-size: 1.5rem;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: background-color var(--transition-fast);
  }
  .mobilePanel_close:hover { background: rgba(255,255,255,0.1); }

  .mobilePanel_logo img { height: 32px; }

  .mobilePanel_links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
  }
  .mobilePanel_links li { opacity: 0; transform: translateX(-20px); transition: opacity var(--transition-base), transform var(--transition-base); }
  .mobilePanel.active .mobilePanel_links li { opacity: 1; transform: translateX(0); }
  .mobilePanel.active .mobilePanel_links li:nth-child(1) { transition-delay: 0.1s; }
  .mobilePanel.active .mobilePanel_links li:nth-child(2) { transition-delay: 0.15s; }
  .mobilePanel.active .mobilePanel_links li:nth-child(3) { transition-delay: 0.2s; }
  .mobilePanel.active .mobilePanel_links li:nth-child(4) { transition-delay: 0.25s; }
  .mobilePanel.active .mobilePanel_links li:nth-child(5) { transition-delay: 0.3s; }

  .mobilePanel_links a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--clr-text-light-muted);
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: var(--step-1);
    transition: background-color var(--transition-fast), color var(--transition-fast);
  }
  .mobilePanel_links a:hover,
  .mobilePanel_links a.active {
    background: rgba(79,124,255,0.15);
    color: var(--clr-accent);
  }

  
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.75em 1.75em;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--step-0);
    transition: background-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast), color var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn:active { transform: translateY(0); }

  .btn--primary {
    background: var(--clr-accent);
    color: #fff;
    box-shadow: var(--shadow-accent);
  }
  .btn--primary:hover {
    background: var(--clr-accent-hover);
    box-shadow: 0 6px 24px rgba(79,124,255,0.45);
  }

  .btn--ghost {
    background: transparent;
    color: var(--clr-text-light);
    border-color: rgba(255,255,255,0.3);
  }
  .btn--ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.6);
  }

  .btn--large {
    padding: 1em 2.5em;
    font-size: var(--step-1);
  }
  .btn--full { width: 100%; justify-content: center; }

  
  .sectionLabel {
    display: inline-block;
    font-size: var(--step--1);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: var(--space-sm);
  }
  .sectionLabel--light { color: var(--clr-warm); }

  .sectionHeading {
    font-family: var(--font-heading);
    font-size: var(--step-4);
    font-weight: 800;
    line-height: 1.15;
    color: var(--clr-text-dark);
    margin-bottom: var(--space-md);
  }
  .sectionHeading--light { color: var(--clr-text-light); }

  
  .mainHero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: var(--nav-height);
  }

  .mainHero_bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .mainHero_bgImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .mainHero_bgOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(14,17,23,0.92) 0%,
      rgba(14,17,23,0.75) 50%,
      rgba(30,38,54,0.85) 100%
    );
  }

  .mainHero_content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-2xl) 0 var(--space-3xl);
    width: min(1200px, 100% - 2rem);
    margin-inline: auto;
    width: 100%;
  }

  @media (min-width: 768px) {
    .mainHero_content {
      width: min(1200px, 100% - 4rem);
      margin-inline: auto;
    }
  }

  .mainHero_label {
    font-size: var(--step--1);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-warm);
    margin-bottom: var(--space-md);
  }

  .mainHero_title {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: var(--space-lg);
  }

  .mainHero_titleClip {
    display: block;
    font-size: clamp(3.5rem, 3rem + 5vw, 7rem);
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
  }

  .mainHero_titleSub {
    display: block;
    font-size: clamp(1.8rem, 1.5rem + 2vw, 3.2rem);
    color: var(--clr-accent);
    margin-top: 0.3em;
  }

  .mainHero_desc {
    font-size: var(--step-2);
    color: var(--clr-text-light-muted);
    max-width: 55ch;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
  }

  .mainHero_actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  
  .mainHero_floatingCards {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    width: min(1200px, 100% - 2rem);
    margin-inline: auto;
    margin-top: -60px;
    padding-bottom: var(--space-2xl);
  }

  @media (min-width: 768px) {
    .mainHero_floatingCards {
      grid-template-columns: repeat(4, 1fr);
      width: min(1200px, 100% - 4rem);
      margin-top: -80px;
    }
  }

  .floatingCard {
    background: var(--clr-light-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-float);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid var(--clr-border-light);
  }

  .floatingCard[data-elevation="1"] { transform: translateY(0); }
  .floatingCard[data-elevation="2"] { transform: translateY(-16px); }
  .floatingCard[data-elevation="3"] { transform: translateY(-8px); }

  .floatingCard:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-xl);
  }

  .floatingCard_icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--clr-accent-glow);
    color: var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
  }

  .floatingCard_title {
    font-family: var(--font-heading);
    font-size: var(--step-0);
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: 0.4em;
    line-height: 1.3;
  }

  .floatingCard_text {
    font-size: var(--step--1);
    color: var(--clr-text-dark-muted);
    line-height: 1.6;
  }

  
  .decorStrip { overflow: hidden; }

  .decorStrip--dots {
    background: var(--clr-light-bg);
    padding: var(--space-lg) 0;
  }
  .decorStrip--dots .decorStrip_inner {
    height: 2px;
    background: repeating-linear-gradient(
      90deg,
      var(--clr-accent) 0px,
      var(--clr-accent) 8px,
      transparent 8px,
      transparent 24px
    );
    opacity: 0.3;
  }

  .decorStrip--line {
    height: 4px;
    background: linear-gradient(90deg, var(--clr-accent) 0%, var(--clr-warm) 50%, var(--clr-accent) 100%);
  }

  .decorStrip--wave {
    display: block;
    height: 40px;
    background: var(--clr-bg);
  }
  .decorStrip--wave svg {
    width: 100%;
    height: 100%;
  }

  
  .aboutIntro {
    background: var(--clr-light-bg);
    padding: var(--space-3xl) 0;
  }

  .aboutIntro_grid {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
  }

  @media (min-width: 900px) {
    .aboutIntro_grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  .aboutIntro_visual { position: relative; }

  .aboutIntro_atroposCard {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }

  .aboutIntro_img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-xl);
    display: block;
  }

  .aboutIntro_atroposBadge {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    background: rgba(14,17,23,0.85);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-pill);
    padding: 0.6em 1.2em;
    display: flex;
    align-items: center;
    gap: 0.5em;
    color: #fff;
    font-size: var(--step--1);
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.12);
  }
  .aboutIntro_atroposBadge i { color: var(--clr-warm); }

  .aboutIntro_atroposTag {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--clr-accent);
    color: #fff;
    border-radius: var(--radius-pill);
    padding: 0.3em 0.9em;
    font-size: var(--step--1);
    font-weight: 700;
  }

  .aboutIntro_copy {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }
  .aboutIntro_copy p {
    color: var(--clr-text-dark-muted);
    line-height: 1.8;
  }

  
  .bentoSection {
    background: var(--clr-bg-2);
    padding: var(--space-3xl) 0;
  }

  .bentoSection_header {
    text-align: center;
    max-width: 60ch;
    margin: 0 auto var(--space-2xl);
  }
  .bentoSection_intro {
    color: var(--clr-text-light-muted);
    line-height: 1.7;
  }

  .bentoGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  @media (min-width: 600px) {
    .bentoGrid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1000px) {
    .bentoGrid {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
    }
    .bentoCard--wide {
      grid-column: span 2;
    }
    .bentoCard--tall {
      grid-row: span 2;
    }
  }

  .bentoCard {
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid var(--clr-border);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    box-shadow: var(--shadow-md);
  }
  .bentoCard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79,124,255,0.25);
  }

  .bentoCard--wide { min-height: 280px; }
  .bentoCard--accent {
    background: linear-gradient(135deg, var(--clr-accent) 0%, #3a5fcc 100%);
    border-color: transparent;
  }
  .bentoCard--accent .bentoCard_content { color: #fff; }
  .bentoCard--accent .bentoCard_num { color: rgba(255,255,255,0.4); }
  .bentoCard--accent .bentoCard_title { color: #fff; }
  .bentoCard--accent .bentoCard_text { color: rgba(255,255,255,0.85); }
  .bentoCard--accent .bentoCard_icon { background: rgba(255,255,255,0.15); color: #fff; }

  .bentoCard_bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    transition: opacity var(--transition-slow);
  }
  .bentoCard--wide:hover .bentoCard_bg { opacity: 0.35; }

  .bentoCard_content {
    position: relative;
    z-index: 1;
  }

  .bentoCard_num {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 4vw, 5rem);
    font-weight: 800;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    display: block;
    margin-bottom: var(--space-sm);
    transition: color var(--transition-base);
  }
  .bentoCard:hover .bentoCard_num { color: rgba(79,124,255,0.15); }

  .bentoCard_icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--clr-accent-glow);
    color: var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
  }

  .bentoCard_title {
    font-family: var(--font-heading);
    font-size: var(--step-2);
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: 0.5em;
  }

  .bentoCard_text {
    color: var(--clr-text-light-muted);
    line-height: 1.7;
    font-size: var(--step-0);
  }

  
  .resourcesSection {
    background: var(--clr-light-bg);
    padding: var(--space-3xl) 0;
  }

  .resourcesSection_header {
    text-align: center;
    max-width: 55ch;
    margin: 0 auto var(--space-2xl);
  }
  .resourcesSection_sub {
    color: var(--clr-text-dark-muted);
    line-height: 1.7;
  }

  .resourcesGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

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

  @media (min-width: 1000px) {
    .resourcesGrid { grid-template-columns: repeat(4, 1fr); }
  }

  .resourceCard {
    background: var(--clr-light-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--clr-border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }
  .resourceCard:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }

  .resourceCard--featured {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 1px var(--clr-accent), var(--shadow-md);
  }

  .resourceCard_iconWrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--clr-accent-glow), var(--clr-warm-muted));
    color: var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
  }

  .resourceCard_body { display: flex; flex-direction: column; flex: 1; gap: 0.5em; }

  .resourceCard_tag {
    display: inline-block;
    font-size: var(--step--1);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-accent);
  }

  .resourceCard_title {
    font-family: var(--font-heading);
    font-size: var(--step-1);
    font-weight: 700;
    color: var(--clr-text-dark);
    line-height: 1.3;
  }

  .resourceCard_desc {
    color: var(--clr-text-dark-muted);
    font-size: var(--step--1);
    line-height: 1.6;
    flex: 1;
  }

  .resourceCard_link {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    color: var(--clr-accent);
    font-weight: 600;
    font-size: var(--step--1);
    margin-top: auto;
    padding-top: 0.5em;
    transition: gap var(--transition-fast), color var(--transition-fast);
  }
  .resourceCard_link:hover {
    gap: 0.7em;
    color: var(--clr-accent-hover);
  }

  
  .whoSection {
    background: var(--clr-light-bg);
    padding: var(--space-3xl) 0;
  }
  .whoSection_header {
    margin-bottom: var(--space-2xl);
  }

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

  .whoCard {
    background: var(--clr-light-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }
  .whoCard:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
  }

  .whoCard_img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
  }

  .whoCard_body {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 0.75em;
  }

  .whoCard_title {
    font-family: var(--font-heading);
    font-size: var(--step-2);
    font-weight: 700;
    color: var(--clr-text-dark);
  }

  .whoCard_text {
    color: var(--clr-text-dark-muted);
    line-height: 1.7;
  }

  .whoCard_link {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    color: var(--clr-accent);
    font-weight: 600;
    font-size: var(--step-0);
    transition: gap var(--transition-fast);
  }
  .whoCard_link:hover { gap: 0.7em; }

  
  .pageHero {
    position: relative;
    padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
    overflow: hidden;
  }

  .pageHero--about { background: linear-gradient(135deg, var(--clr-bg) 0%, var(--clr-bg-2) 100%); }
  .pageHero--solutions { background: linear-gradient(135deg, var(--clr-bg-2) 0%, var(--clr-surface) 100%); }
  .pageHero--who { background: linear-gradient(135deg, var(--clr-bg) 0%, var(--clr-surface) 100%); }
  .pageHero--contact { background: linear-gradient(135deg, var(--clr-bg-2) 0%, var(--clr-bg) 100%); }

  .pageHero_content {
    position: relative;
    z-index: 2;
    max-width: 65ch;
  }

  .pageHero_title {
    font-family: var(--font-heading);
    font-size: var(--step-5);
    font-weight: 800;
    color: var(--clr-text-light);
    line-height: 1.1;
    margin-bottom: var(--space-md);
  }

  .pageHero_desc {
    font-size: var(--step-2);
    color: var(--clr-text-light-muted);
    line-height: 1.7;
  }

  .pageHero_shapeBg {
    position: absolute;
    top: -100px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79,124,255,0.12) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
  }

  
  .aboutStory {
    background: var(--clr-light-bg);
    padding: var(--space-3xl) 0;
  }

  .aboutStory_grid {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
  }
  @media (min-width: 900px) {
    .aboutStory_grid { grid-template-columns: 1fr 1fr; }
  }

  .aboutStory_imgStack {
    position: relative;
    padding-bottom: var(--space-lg);
  }

  .aboutStory_imgMain {
    border-radius: var(--radius-xl);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
  }

  .aboutStory_imgAccent {
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--clr-light-bg);
  }
  .aboutStory_imgAccent img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
  }

  .aboutStory_copy {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }
  .aboutStory_copy p { color: var(--clr-text-dark-muted); line-height: 1.8; }

  
  .valuesSection {
    background: var(--clr-bg);
    padding: var(--space-3xl) 0;
  }

  .valuesSection_header {
    text-align: center;
    max-width: 55ch;
    margin: 0 auto var(--space-2xl);
  }

  .valuesGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  @media (min-width: 640px) {
    .valuesGrid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (min-width: 1000px) {
    .valuesGrid { grid-template-columns: repeat(4, 1fr); }
  }

  .valueCard {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--clr-border);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  }
  .valueCard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79,124,255,0.3);
  }

  .valueCard_icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: var(--clr-accent-glow);
    color: var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
  }

  .valueCard_title {
    font-family: var(--font-heading);
    font-size: var(--step-1);
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: 0.5em;
  }

  .valueCard_text {
    color: var(--clr-text-light-muted);
    line-height: 1.7;
    font-size: var(--step-0);
  }

  
  .approachSection {
    background: var(--clr-light-bg);
    padding: var(--space-3xl) 0;
  }

  .approachSection_inner {
    max-width: 800px;
    margin: 0 auto;
  }

  .approachSteps {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
  }

  .approachStep {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: var(--space-md);
    align-items: start;
  }

  .approachStep_num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--clr-accent);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: var(--step-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-accent);
  }

  .approachStep_body h3 {
    font-family: var(--font-heading);
    font-size: var(--step-2);
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: 0.5em;
  }
  .approachStep_body p {
    color: var(--clr-text-dark-muted);
    line-height: 1.8;
  }

  
  .solutionsList {
    background: var(--clr-light-bg);
    padding: var(--space-3xl) 0;
  }

  .solutionItem {
    display: grid;
    gap: var(--space-lg);
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--clr-border-light);
  }
  .solutionItem:last-child { border-bottom: none; }

  @media (min-width: 768px) {
    .solutionItem {
      grid-template-columns: 80px 1fr;
      align-items: start;
    }
  }

  .solutionItem_num {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    color: var(--clr-accent);
    opacity: 0.3;
    line-height: 1;
  }

  .solutionItem_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-md);
    gap: var(--space-md);
  }

  .solutionItem_title {
    font-family: var(--font-heading);
    font-size: var(--step-4);
    font-weight: 800;
    color: var(--clr-text-dark);
    line-height: 1.1;
  }

  .solutionItem_icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    background: var(--clr-accent-glow);
    color: var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
  }

  .solutionItem_lead {
    font-size: var(--step-2);
    color: var(--clr-text-dark);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    font-weight: 500;
  }

  .solutionItem_details {
    display: grid;
    gap: var(--space-lg);
  }
  @media (min-width: 640px) {
    .solutionItem_details { grid-template-columns: repeat(2, 1fr); }
  }

  .solutionItem_detail h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--step-0);
    color: var(--clr-text-dark);
    margin-bottom: 0.4em;
  }
  .solutionItem_detail p {
    color: var(--clr-text-dark-muted);
    line-height: 1.7;
    font-size: var(--step-0);
  }

  
  .processSection {
    background: var(--clr-bg-2);
    padding: var(--space-3xl) 0;
  }

  .processSection_header {
    text-align: center;
    max-width: 60ch;
    margin: 0 auto var(--space-2xl);
  }

  .processTimeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .processTimeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(180deg, var(--clr-accent), var(--clr-warm));
    opacity: 0.3;
  }

  @media (min-width: 768px) {
    .processTimeline::before { left: 24px; }
  }

  .processStep {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
  }

  .processStep_dot {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--clr-accent);
    border: 3px solid var(--clr-bg-2);
    flex-shrink: 0;
    z-index: 1;
    position: relative;
    box-shadow: var(--shadow-accent);
  }

  .processStep_content h3 {
    font-family: var(--font-heading);
    font-size: var(--step-2);
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: 0.4em;
    padding-top: 0.5em;
  }
  .processStep_content p {
    color: var(--clr-text-light-muted);
    line-height: 1.7;
  }

  
  .solutionsCta {
    background: var(--clr-light-bg);
    padding: var(--space-3xl) 0;
  }

  .solutionsCta_inner {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
  }
  @media (min-width: 900px) {
    .solutionsCta_inner { grid-template-columns: 1fr 1fr; }
  }

  .solutionsCta_img {
    border-radius: var(--radius-xl);
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
    box-shadow: var(--shadow-xl);
  }
  .solutionsCta_copy { display: flex; flex-direction: column; gap: var(--space-md); }
  .solutionsCta_copy p { color: var(--clr-text-dark-muted); line-height: 1.7; }

  
  .fitSection {
    background: var(--clr-light-bg);
    padding: var(--space-3xl) 0;
  }

  .fitSection_intro {
    max-width: 65ch;
    margin-bottom: var(--space-2xl);
  }
  .fitSection_intro p { color: var(--clr-text-dark-muted); line-height: 1.7; margin-top: var(--space-sm); }

  .fitCards {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
  }
  @media (min-width: 640px) {
    .fitCards { grid-template-columns: repeat(2, 1fr); }
  }

  .fitCard {
    background: var(--clr-light-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--clr-border-light);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }
  .fitCard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .fitCard--highlight {
    border-color: var(--clr-accent);
    background: linear-gradient(135deg, rgba(79,124,255,0.04) 0%, var(--clr-light-surface) 100%);
  }

  .fitCard_icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: var(--clr-accent-glow);
    color: var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
  }

  .fitCard_title {
    font-family: var(--font-heading);
    font-size: var(--step-1);
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: 0.5em;
  }

  .fitCard_text {
    color: var(--clr-text-dark-muted);
    line-height: 1.7;
  }

  
  .notFitSection {
    background: var(--clr-bg);
    padding: var(--space-3xl) 0;
  }

  .notFitSection_header {
    max-width: 60ch;
    margin: 0 auto var(--space-2xl);
    text-align: center;
  }
  .notFitSection_intro {
    color: var(--clr-text-light-muted);
    line-height: 1.7;
    margin-top: var(--space-sm);
  }

  .notFitGrid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
  }
  @media (min-width: 640px) {
    .notFitGrid { grid-template-columns: repeat(2, 1fr); }
  }

  .notFitItem {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    border: 1px solid var(--clr-border);
  }
  .notFitItem i {
    color: #e55;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .notFitItem p {
    color: var(--clr-text-light-muted);
    line-height: 1.6;
  }

  
  .industriesSection {
    background: var(--clr-light-bg);
    padding: var(--space-3xl) 0;
  }
  .industriesSection_header {
    max-width: 60ch;
    margin-bottom: var(--space-2xl);
  }
  .industriesSection_header p {
    color: var(--clr-text-dark-muted);
    line-height: 1.7;
    margin-top: var(--space-sm);
  }

  .industriesGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  @media (min-width: 640px) {
    .industriesGrid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (min-width: 900px) {
    .industriesGrid { grid-template-columns: repeat(6, 1fr); }
  }

  .industryItem {
    background: var(--clr-light-surface);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-md);
    border: 1px solid var(--clr-border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75em;
    text-align: center;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  }
  .industryItem:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-accent);
  }
  .industryItem i {
    font-size: 1.5rem;
    color: var(--clr-accent);
  }
  .industryItem span {
    font-size: var(--step--1);
    font-weight: 600;
    color: var(--clr-text-dark);
    line-height: 1.3;
  }

  
  .whoCtaSection {
    background: var(--clr-light-bg);
    padding: var(--space-3xl) 0 var(--space-3xl);
  }

  .whoCta_inner {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
  }
  @media (min-width: 900px) {
    .whoCta_inner { grid-template-columns: 1fr 1fr; }
  }

  .whoCta_img {
    border-radius: var(--radius-xl);
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
  }
  .whoCta_copy {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }
  .whoCta_copy p {
    color: var(--clr-text-dark-muted);
    line-height: 1.7;
  }

  
  .contactSection {
    background: var(--clr-light-bg);
    padding: var(--space-3xl) 0;
  }

  .contactGrid {
    display: grid;
    gap: var(--space-2xl);
    align-items: start;
  }
  @media (min-width: 900px) {
    .contactGrid { grid-template-columns: 1fr 1fr; }
  }

  .contactGrid_map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
    height: 100%;
  }

  .contactGrid_formTitle {
    font-family: var(--font-heading);
    font-size: var(--step-3);
    font-weight: 800;
    color: var(--clr-text-dark);
    margin-bottom: 0.3em;
  }

  .contactGrid_formDesc {
    color: var(--clr-text-dark-muted);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
  }

  .contactForm {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .formField {
    display: flex;
    flex-direction: column;
    gap: 0.4em;
  }

  .formField_label {
    font-size: var(--step--1);
    font-weight: 600;
    color: var(--clr-text-dark);
  }

  .formField_input,
  .formField_textarea {
    padding: 0.75em 1em;
    border: 2px solid var(--clr-border-light);
    border-radius: var(--radius-md);
    font-size: var(--step-0);
    color: var(--clr-text-dark);
    background: var(--clr-light-surface);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    min-height: 44px;
  }
  .formField_input:focus,
  .formField_textarea:focus {
    outline: none;
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px var(--clr-accent-glow);
  }

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

  .formField--checkbox .formField_checkLabel {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    cursor: pointer;
    font-size: var(--step--1);
    color: var(--clr-text-dark-muted);
    line-height: 1.5;
  }
  .formField_check {
    width: 18px; height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    accent-color: var(--clr-accent);
    cursor: pointer;
  }
  .formField_checkLabel a {
    color: var(--clr-accent);
    text-decoration: underline;
  }

  
  .contactFaq {
    background: var(--clr-light-surface);
    padding: var(--space-3xl) 0;
  }

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

  .faqGrid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
  }
  @media (min-width: 640px) {
    .faqGrid { grid-template-columns: repeat(2, 1fr); }
  }

  .faqItem {
    background: var(--clr-light-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--clr-border-light);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  }
  .faqItem:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  .faqItem_q {
    font-family: var(--font-heading);
    font-size: var(--step-1);
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: 0.6em;
    display: flex;
    gap: 0.5em;
    align-items: flex-start;
    line-height: 1.3;
  }
  .faqItem_q i { color: var(--clr-accent); flex-shrink: 0; margin-top: 3px; }

  .faqItem_a {
    color: var(--clr-text-dark-muted);
    line-height: 1.7;
    font-size: var(--step-0);
  }

  
  .pageFooter { background: var(--clr-bg); }

  .pageFooter_cta {
    background: linear-gradient(135deg, var(--clr-accent) 0%, #3a5fcc 100%);
    padding: var(--space-3xl) 0;
    text-align: center;
  }

  .pageFooter_ctaHeading {
    font-family: var(--font-heading);
    font-size: var(--step-5);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: var(--space-md);
  }

  .pageFooter_ctaDesc {
    color: rgba(255,255,255,0.85);
    max-width: 50ch;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
    font-size: var(--step-1);
  }

  .pageFooter_body {
    padding: var(--space-2xl) 0 var(--space-lg);
  }

  .pageFooter_grid {
    display: grid;
    gap: var(--space-xl);
    grid-template-columns: 1fr;
    margin-bottom: var(--space-xl);
  }
  @media (min-width: 640px) {
    .pageFooter_grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (min-width: 1000px) {
    .pageFooter_grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  }

  .pageFooter_logo { height: 32px; width: auto; margin-bottom: var(--space-sm); }
  .pageFooter_tagline { color: var(--clr-text-light-muted); font-size: var(--step--1); line-height: 1.6; max-width: 28ch; }

  .pageFooter_colTitle {
    font-family: var(--font-heading);
    font-size: var(--step--1);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-text-light-muted);
    margin-bottom: var(--space-md);
  }

  .pageFooter_links {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
  }
  .pageFooter_links a {
    color: var(--clr-text-light-muted);
    font-size: var(--step-0);
    transition: color var(--transition-fast);
    padding: 2px 0;
  }
  .pageFooter_links a:hover { color: var(--clr-accent); }

  .pageFooter_address {
    display: flex;
    flex-direction: column;
    gap: 0.6em;
  }
  .pageFooter_address p,
  .pageFooter_address a {
    color: var(--clr-text-light-muted);
    font-size: var(--step-0);
    display: flex;
    gap: 0.5em;
    align-items: flex-start;
    transition: color var(--transition-fast);
  }
  .pageFooter_address a:hover { color: var(--clr-accent); }
  .pageFooter_address i { color: var(--clr-accent); flex-shrink: 0; margin-top: 3px; }

  .pageFooter_bottom {
    border-top: 1px solid var(--clr-border);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
  }
  .pageFooter_bottom p {
    font-size: var(--step--1);
    color: var(--clr-text-light-muted);
  }

  
  .thanksMain {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-light-bg);
    padding: var(--nav-height) var(--space-md) var(--space-2xl);
  }

  .thanksPage {
    text-align: center;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
  }

  .thanksPage_envelope { margin-bottom: var(--space-md); }

  .envelope {
    width: 120px;
    height: 90px;
    position: relative;
  }

  .envelope_body {
    width: 100%;
    height: 100%;
    background: var(--clr-accent);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-accent);
  }

  .envelope_flap {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: #3a5fcc;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    transform-origin: top center;
    animation: flapOpen 0.6s 0.5s ease-out forwards;
  }

  @keyframes flapOpen {
    from { transform: rotateX(0deg); }
    to { transform: rotateX(-160deg); }
  }

  .envelope_letter {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 75%;
    background: #fff;
    border-radius: 4px;
    animation: letterRise 0.5s 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
  }

  @keyframes letterRise {
    from { transform: translateX(-50%) translateY(20px); opacity: 0; }
    to { transform: translateX(-50%) translateY(-30px); opacity: 1; }
  }

  .envelope_letterLines span {
    display: block;
    height: 3px;
    background: var(--clr-accent);
    border-radius: 2px;
    opacity: 0.4;
    margin-bottom: 4px;
  }
  .envelope_letterLines span:nth-child(2) { width: 80%; }
  .envelope_letterLines span:nth-child(3) { width: 60%; }

  .thanksPage_heading {
    font-family: var(--font-heading);
    font-size: var(--step-5);
    font-weight: 800;
    color: var(--clr-text-dark);
    animation: fadeUp 0.5s 1.5s ease-out both;
  }

  .thanksPage_text {
    color: var(--clr-text-dark-muted);
    font-size: var(--step-1);
    line-height: 1.6;
    animation: fadeUp 0.5s 1.7s ease-out both;
  }

  .thanksPage_actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    animation: fadeUp 0.5s 1.9s ease-out both;
  }

  .thanksPage_actions .btn--ghost {
    color: var(--clr-text-dark);
    border-color: var(--clr-border-light);
  }
  .thanksPage_actions .btn--ghost:hover {
    background: rgba(0,0,0,0.05);
  }

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

  
  .legalHero {
    background: linear-gradient(135deg, var(--clr-bg) 0%, var(--clr-bg-2) 100%);
    padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-xl);
  }

  .legalHero_title {
    font-family: var(--font-heading);
    font-size: var(--step-5);
    font-weight: 800;
    color: var(--clr-text-light);
    margin-bottom: 0.3em;
  }

  .legalHero_meta {
    color: var(--clr-text-light-muted);
    font-size: var(--step-0);
  }

  .legalContent {
    background: var(--clr-light-bg);
    padding: var(--space-3xl) 0;
  }

  .legalLayout { max-width: 780px; }

  .legalArticle {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .legalArticle_lead {
    font-size: var(--step-1);
    color: var(--clr-text-dark);
    line-height: 1.8;
    border-left: 3px solid var(--clr-accent);
    padding-left: var(--space-md);
  }

  .legalArticle h2 {
    font-family: var(--font-heading);
    font-size: var(--step-3);
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--clr-border-light);
  }
  .legalArticle h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }

  .legalArticle p { color: var(--clr-text-dark-muted); line-height: 1.8; }
  .legalArticle ul { color: var(--clr-text-dark-muted); line-height: 1.8; list-style: disc; padding-left: 1.5em; display: flex; flex-direction: column; gap: 0.4em; }

  .legalTerm {
    color: var(--clr-accent);
    font-weight: 700;
    border-bottom: 1px dashed var(--clr-accent);
    cursor: help;
  }

  .legalGlossary {
    background: linear-gradient(135deg, rgba(79,124,255,0.06) 0%, rgba(79,124,255,0.02) 100%);
    border: 1px solid rgba(79,124,255,0.2);
    border-left: 3px solid var(--clr-accent);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    font-size: var(--step--1);
    color: var(--clr-text-dark-muted);
    line-height: 1.7;
    margin: var(--space-sm) 0;
  }
  .legalGlossary strong { color: var(--clr-accent); display: block; margin-bottom: 0.3em; }

  
  .legalTermBox {
    background: var(--clr-light-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--clr-border-light);
    margin: var(--space-md) 0;
  }
  .legalTermBox h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: var(--space-md);
  }
  .legalTermBox dl { display: flex; flex-direction: column; gap: var(--space-sm); }
  .legalTermBox dt { font-weight: 700; color: var(--clr-accent); font-size: var(--step--1); }
  .legalTermBox dd { color: var(--clr-text-dark-muted); font-size: var(--step-0); padding-left: var(--space-md); line-height: 1.6; }

  .legalClause { margin: var(--space-md) 0; }
  .legalClause h2 {
    font-family: var(--font-heading);
    font-size: var(--step-2);
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--clr-accent);
    display: inline-block;
    margin-top: var(--space-xl);
  }
  .legalClause p { margin-bottom: 0.6em; color: var(--clr-text-dark-muted); line-height: 1.8; }

  
  .cookieTechBox {
    background: var(--clr-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--clr-border);
    margin: var(--space-md) 0;
  }
  .cookieTechBox h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: var(--space-sm);
    display: flex;
    gap: 0.5em;
    align-items: center;
  }
  .cookieTechBox h3 i { color: var(--clr-accent); }
  .cookieTechBox p { color: var(--clr-text-light-muted); line-height: 1.7; }

  .cookieCategory {
    margin: var(--space-lg) 0;
    background: var(--clr-light-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--clr-border-light);
  }
  .cookieCategory h3 {
    font-family: var(--font-heading);
    font-size: var(--step-1);
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: 0.5em;
    flex-wrap: wrap;
  }

  .cookieCategory_badge {
    display: inline-block;
    padding: 0.2em 0.8em;
    border-radius: var(--radius-pill);
    font-size: var(--step--1);
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .cookieCategory_badge--required { background: rgba(79,124,255,0.15); color: var(--clr-accent); }
  .cookieCategory_badge--analytics { background: rgba(240,164,74,0.15); color: var(--clr-warm); }
  .cookieCategory_badge--marketing { background: rgba(100,180,100,0.15); color: #4a9a5a; }

  .cookieTable {
    margin-top: var(--space-md);
    font-size: var(--step--1);
  }
  .cookieTable th {
    text-align: left;
    padding: 0.5em 0.75em;
    background: var(--clr-light-bg);
    color: var(--clr-text-dark);
    font-weight: 700;
    border-bottom: 2px solid var(--clr-border-light);
  }
  .cookieTable td {
    padding: 0.5em 0.75em;
    color: var(--clr-text-dark-muted);
    border-bottom: 1px solid var(--clr-border-light);
  }
  .cookieTable code {
    background: var(--clr-light-bg);
    padding: 0.1em 0.4em;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
    color: var(--clr-accent);
  }

  
  .cookieConsent {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    transition: all var(--transition-slow);
  }

  .cookieConsent--pill {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-pill);
    padding: 0.6em 1.2em;
    display: flex;
    align-items: center;
    gap: 1em;
    box-shadow: var(--shadow-xl);
    white-space: nowrap;
    max-width: calc(100vw - 2rem);
  }

  .cookieConsent_pillText {
    font-size: var(--step--1);
    color: var(--clr-text-light-muted);
  }

  .cookieConsent_pillBtns {
    display: flex;
    gap: 0.5em;
  }

  .cookieConsent_accept {
    background: var(--clr-accent);
    color: #fff;
    border-radius: var(--radius-pill);
    padding: 0.35em 0.9em;
    font-size: var(--step--1);
    font-weight: 700;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .cookieConsent_accept:hover {
    background: var(--clr-accent-hover);
    transform: scale(1.03);
  }

  .cookieConsent_customize {
    background: transparent;
    color: var(--clr-text-light-muted);
    border-radius: var(--radius-pill);
    padding: 0.35em 0.9em;
    font-size: var(--step--1);
    font-weight: 600;
    border: 1px solid var(--clr-border);
    transition: background-color var(--transition-fast), color var(--transition-fast);
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .cookieConsent_customize:hover {
    background: rgba(255,255,255,0.08);
    color: var(--clr-text-light);
  }

  
  .cookieConsent--modal {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-xl);
    width: min(480px, calc(100vw - 2rem));
  }

  .cookieConsent_modalTitle {
    font-family: var(--font-heading);
    font-size: var(--step-2);
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: var(--space-sm);
  }

  .cookieConsent_modalDesc {
    font-size: var(--step--1);
    color: var(--clr-text-light-muted);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
  }

  .cookieConsent_categories {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
  }

  .cookieConsent_category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--clr-surface-2);
    border-radius: var(--radius-md);
    padding: 0.75em 1em;
  }

  .cookieConsent_categoryLabel {
    font-size: var(--step--1);
    font-weight: 600;
    color: var(--clr-text-light);
  }
  .cookieConsent_categoryLabel span {
    display: block;
    font-weight: 400;
    color: var(--clr-text-light-muted);
    font-size: 0.85em;
    margin-top: 2px;
  }

  .cookieConsent_toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
  }
  .cookieConsent_toggle input {
    opacity: 0;
    width: 0; height: 0;
    position: absolute;
  }
  .cookieConsent_toggleSlider {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: background-color var(--transition-fast);
  }
  .cookieConsent_toggleSlider::before {
    content: '';
    position: absolute;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #fff;
    left: 3px; top: 3px;
    transition: transform var(--transition-fast);
  }
  .cookieConsent_toggle input:checked + .cookieConsent_toggleSlider {
    background: var(--clr-accent);
  }
  .cookieConsent_toggle input:checked + .cookieConsent_toggleSlider::before {
    transform: translateX(20px);
  }
  .cookieConsent_toggle input:disabled + .cookieConsent_toggleSlider {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .cookieConsent_modalBtns {
    display: flex;
    gap: 0.75em;
    flex-wrap: wrap;
  }

  .cookieConsent_saveBtn {
    flex: 1;
    background: var(--clr-accent);
    color: #fff;
    border-radius: var(--radius-pill);
    padding: 0.6em 1.2em;
    font-weight: 700;
    font-size: var(--step--1);
    transition: background-color var(--transition-fast), transform var(--transition-fast);
    min-height: 44px;
    text-align: center;
  }
  .cookieConsent_saveBtn:hover {
    background: var(--clr-accent-hover);
    transform: scale(1.02);
  }

  .cookieConsent_acceptAll {
    flex: 1;
    background: var(--clr-warm);
    color: var(--clr-bg);
    border-radius: var(--radius-pill);
    padding: 0.6em 1.2em;
    font-weight: 700;
    font-size: var(--step--1);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    min-height: 44px;
    text-align: center;
  }
  .cookieConsent_acceptAll:hover {
    opacity: 0.85;
    transform: scale(1.02);
  }

  .cookieConsent--hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
  }

  
  .atropos { display: block; }
  .atropos-inner { border-radius: var(--radius-xl); }

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

@layer utilities {
  .u-textCenter { text-align: center; }
  .u-mt-lg { margin-top: var(--space-lg); }
  .u-mb-lg { margin-bottom: var(--space-lg); }

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