@layer reset,base,components,utilities;@layer reset{*, *::before, *::after { box-sizing: border-box; }

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

  body { margin: 0; }

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

  input, button, textarea, select { font: inherit; }
}@layer base{:root {
    --font-body: Manrope, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  --font-head: Rubik, Manrope, ui-sans-serif, system-ui;
    color-scheme: light dark;

    
    --brand:  #2dd4bf;
    --brand-2:#122b59;

    --focus-ring: color-mix(in srgb, var(--brand) 75%, white);
    --focus-glow: color-mix(in srgb, var(--brand) 18%, transparent);

    
    --bg: #0b0d10;
    --bg-elev: #10141a;
    --text: #e9eef7;
    --muted: #b8c0cc;
    --line: color-mix(in srgb, #ffffff 14%, transparent);

    --radius: 16px;
    --radius-sm: 12px;

    --shadow: 0 14px 40px rgba(0,0,0,.35);
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, .28);

    --container: 1100px;

    --step--1: clamp(.95rem, .85rem + .3vw, 1.05rem);
    --step-0:  clamp(1.05rem, .95rem + .45vw, 1.2rem);
    --step-1:  clamp(1.35rem, 1.1rem + 1vw, 1.9rem);
    --step-2:  clamp(1.8rem, 1.4rem + 1.8vw, 2.6rem);
    --step-3:  clamp(2.3rem, 1.7rem + 2.6vw, 3.2rem);
  }

  @media (prefers-color-scheme: light) {
    :root {
      --bg: #f6f7fb;
      --bg-elev: #ffffff;
      --text: #0d1320;
      --muted: #4c5a6b;
      --line: rgba(15, 20, 28, .12);
      --shadow: 0 18px 50px rgba(10, 18, 30, .12);
      --shadow-sm: 0 12px 30px rgba(10, 18, 30, .08);
    }
  }

  body {
    font-size: var(--step-0);
    line-height: 1.6;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
  }

  body.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .site-main {
    flex: 1 0 auto;
  }

  a {
    color: inherit;
    text-decoration-color: color-mix(in srgb, currentColor 50%, transparent);
    text-underline-offset: .18em;

    &:hover { text-decoration-color: currentColor; }
  }

  :focus-visible {
    outline: 3px solid color-mix(in srgb, var(--brand) 75%, white);
    outline-offset: 3px;
    border-radius: 10px;
  }

  
  @supports not selector(:focus-visible) {
    :focus { outline: 3px solid color-mix(in srgb, var(--brand) 75%, white); outline-offset: 3px; }
  }

  h1, h2, h3 {
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 .6rem 0;
    font-family: var(--font-head);
  }

  h1 { font-size: var(--step-3); }
  h2 { font-size: var(--step-2); }
  h3 { font-size: var(--step-1); }

  p { margin: 0 0 1rem 0; }

  .muted { color: var(--muted); }
  .small { font-size: var(--step--1); }

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

  .section {
    padding: clamp(2.5rem, 2rem + 2vw, 4.5rem) 0;

    &.alt {
      background: linear-gradient(to bottom, transparent, color-mix(in srgb, var(--bg-elev) 55%, transparent), transparent);
    }
  }

  .section-head {
    margin-bottom: 1.5rem;

    & > .muted { max-width: 65ch; }
  }

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

  .list {
    padding-left: 1.1rem;
    margin: .8rem 0 0;

    & li { margin: .25rem 0; }
  }

  .skip-link {
    position: absolute;
    left: .75rem;
    top: .75rem;
    padding: .6rem .8rem;
    border-radius: 12px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-200%);
    transition: transform .2s ease;

    &:focus { transform: translateY(0); }
  }

  @media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; transition: none !important; }
  }
}@layer components{.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: color-mix(in srgb, var(--bg) 70%, transparent);
    border-bottom: 1px solid var(--line);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 0;
    gap: 1rem;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-weight: 700;
    text-decoration: none;

    & .brand-mark {
      display: grid;
      place-items: center;
      border-radius: 12px;
    }

    & .brand-mark img {
      height: 50px;
    }

    & .brand-text { letter-spacing: .2px; }
  }

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

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .35rem;

    & a {
      display: block;
      padding: .55rem .65rem;
      border-radius: 12px;
      text-decoration: none;

      &:hover {
        background: color-mix(in srgb, var(--bg-elev) 70%, transparent);
      }
    }
  }

  
  .nav-drawer {
    position: relative;

    & > summary {
      list-style: none;
      cursor: pointer;
      user-select: none;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .55rem .7rem;
      border-radius: 12px;
      border: 1px solid var(--line);
      background: color-mix(in srgb, var(--bg-elev) 80%, transparent);

      &::-webkit-details-marker { display: none; }
    }

    &[open] > summary {
      border-color: color-mix(in srgb, var(--brand) 40%, var(--line));
    }

    & .nav-list {
      position: absolute;
      right: 0;
      top: calc(100% + .5rem);
      width: min(260px, calc(100vw - 2rem));
      padding: .5rem;
      border-radius: var(--radius-sm);
      border: 1px solid var(--line);
      background: var(--bg-elev);
      box-shadow: var(--shadow);
    }
  }

  .nav-list--desktop { display: none; }

  @media (min-width: 54rem) {
    .nav-drawer { display: none; }
    .nav-list--desktop {
      display: flex;
      gap: .25rem;
      align-items: center;

      & a { padding: .5rem .65rem; }
    }
  }

  .btn {
    max-inline-size: 100%;
    display: inline-block;
    padding: .55em 1.05em;
    border-radius: 999px;
    vertical-align: middle;
    text-decoration: none;
    text-align: center;
    white-space: normal;
    cursor: pointer;

    background: var(--bg-elev);
    border: 1px solid var(--line);
    color: inherit;

    line-height: 1.5;
    font: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-sizing: border-box;

    outline-offset: .35em;

    &:hover {
      background: color-mix(in srgb, var(--bg-elev) 92%, var(--brand) 8%);
      border-color: color-mix(in srgb, var(--line) 60%, var(--brand) 40%);
      transform: none;
    }

    &:active { transform: none; }
  }

  .btn-primary {
    background: var(--brand);
    border-color: var(--brand);
    color: #081014;

    &:hover {
      background: color-mix(in srgb, var(--brand) 92%, black 8%);
      border-color: color-mix(in srgb, var(--brand) 85%, black 15%);
    }
  }

  .btn-ghost {
    background: transparent;

    &:hover {
      background: color-mix(in srgb, var(--bg-elev) 88%, var(--brand-2) 12%);
      border-color: color-mix(in srgb, var(--line) 55%, var(--brand-2) 45%);
    }
  }

  .kicker {
    display: inline-flex;
    gap: .5rem;
    align-items: center;
    font-weight: 650;
    color: color-mix(in srgb, var(--brand) 70%, var(--text));
    margin-bottom: .6rem;
  }

  .lead {
    font-size: var(--step-1);
    color: color-mix(in srgb, var(--text) 88%, var(--muted));
    max-width: 58ch;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin: 1.2rem 0 1rem;
  }

  .hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .75rem;
    padding: 0;
    margin: 0;
    list-style: none;

    & li {
      padding: .35rem .6rem;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: color-mix(in srgb, var(--bg-elev) 85%, transparent);
      font-size: var(--step--1);
      color: var(--muted);
    }
  }

  .page-hero {
    padding: clamp(3rem, 2.2rem + 3vw, 5.5rem) 0;
    background: radial-gradient(circle at top, color-mix(in srgb, var(--brand) 12%, transparent), transparent 55%);
  }

  .page-hero__inner {
    display: grid;
    gap: 1.5rem;

    @media (min-width: 54rem) {
      grid-template-columns: 1.1fr .9fr;
      gap: 2.5rem;
    }
  }

  .page-hero__panel {
    display: grid;
    gap: 1rem;
  }

  .cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .card {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--bg-elev) 92%, transparent);
    padding: 1.1rem;
    box-shadow: 0 12px 35px rgba(0,0,0,.12);

    & p { color: color-mix(in srgb, var(--text) 85%, var(--muted)); }
  }

  .article-grid {
    display: grid;
    gap: 1.5rem;

    @media (min-width: 54rem) {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  .article {
    background: transparent;
    padding: 0;
  }

  .form {
    & .form-grid {
      grid-template-columns: 1fr;
      gap: .9rem;

      @media (min-width: 54rem) {
        grid-template-columns: 1fr 1fr;

        & .field--full { grid-column: 1 / -1; }
      }
    }

    & .field {
      display: grid;
      gap: .35rem;

      & label { font-weight: 650; }

      & input, & textarea {
        border-radius: 14px;
        border: 1px solid var(--line);
        background: color-mix(in srgb, var(--bg-elev) 92%, transparent);
        padding: .75rem .85rem;
        color: var(--text);

        &:hover { border-color: color-mix(in srgb, var(--brand) 25%, var(--line)); }
        &:focus-visible { border-color: color-mix(in srgb, var(--brand) 45%, var(--line)); }
      }

      & textarea { resize: vertical; min-height: 140px; }

      & .help { margin: .25rem 0 0; font-size: var(--step--1); color: var(--muted); }
    }

    & .form-actions {
      margin-top: 1rem;
      display: flex;
      flex-wrap: wrap;
      gap: .8rem;
      align-items: center;
      justify-content: space-between;
    }
  }

  .site-footer {
    border-top: 1px solid var(--line);
    padding: 1.5rem 0;
    background: color-mix(in srgb, var(--bg-elev) 60%, transparent);

    & .footer-inner {
      display: flex;
      flex-wrap: wrap;
      gap: .75rem 1rem;
      align-items: center;
      justify-content: space-between;
      color: var(--muted);

      & nav {
        display: flex;
        gap: .9rem;

        & a { padding: .35rem .2rem; }
      }
    }
  }
}@layer utilities{.inline-link {
    color: color-mix(in srgb, var(--brand) 70%, var(--text));
    text-decoration-color: color-mix(in srgb, var(--brand) 55%, transparent);
    text-decoration-thickness: 2px;
    text-underline-offset: .2em;
    padding: 0 .15em;
    border-radius: 6px;
    background: color-mix(in srgb, var(--brand) 12%, transparent);
    transition: color .2s ease, background .2s ease, text-decoration-color .2s ease;
  }

  .inline-link:hover {
    color: var(--text);
    background: color-mix(in srgb, var(--brand) 22%, transparent);
    text-decoration-color: currentColor;
  }

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