
/*** T3SB identifier: t3sbs_footerSticky */

html {
	position:relative;
	min-height:100%
}
#page-footer {
	position:absolute;
	bottom:0;
	width:100%
}



/*** T3SB identifier: t3sbsCSSassets_61 */

/* t3sbs_assets_61 */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --bg:           #0A0B10;
      --surface:      #111420;
      --surface2:     #171B28;
      --border:       #1E2638;
      --border-soft:  #252F42;
      --orange:       #FF8700;
      --orange-dim:   rgba(255, 135, 0, 0.10);
      --orange-ring:  rgba(255, 135, 0, 0.22);
      --text:         #DCE4EE;
      --muted:        #6A7A8E;
      --muted2:       #4E5D6E;
      --white:        #FFFFFF;
      --font-display: 'Raleway', sans-serif;
      --font-body:    'DM Sans', sans-serif;
      --font-mono:    'JetBrains Mono', monospace;
      --radius:       10px;
      --radius-sm:    6px;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.65;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* ── Header ─────────────────────────────────── */
    header {
      border-bottom: 1px solid var(--border);
      padding: 1.1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      background: rgba(10, 11, 16, 0.92);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      z-index: 10;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      text-decoration: none;
    }

    .logo-mark {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.15rem;
      color: var(--orange);
      letter-spacing: -0.03em;
      line-height: 1;
    }

    .logo-mark sup {
      font-size: 0.6em;
      vertical-align: super;
      font-weight: 700;
    }

    .logo-sep {
      width: 1px;
      height: 18px;
      background: var(--border-soft);
    }

    .logo-name {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: 1rem;
      color: var(--text);
      letter-spacing: -0.01em;
      line-height: 1;
    }

    .logo-name strong {
      color: var(--orange);
      font-weight: 700;
    }

    .back-link {
      font-family: var(--font-mono);
      font-size: 0.76rem;
      color: var(--muted);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      transition: color 0.18s;
    }

    .back-link:hover { color: var(--orange); }

    /* ── Main ────────────────────────────────────── */
    main {
      max-width: 780px;
      margin: 0 auto;
      padding: 3.5rem 2rem 5rem;
      width: 100%;
      flex: 1;
    }

    /* ── Page head ───────────────────────────────── */
    .page-eyebrow {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--orange);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      margin-bottom: 0.5rem;
    }

    .page-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.4rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--white);
      margin-bottom: 2.5rem;
      line-height: 1.05;
    }

    /* ── Contact card ────────────────────────────── */
    .contact-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.6rem;
      margin-bottom: 3rem;
    }

    .contact-identity {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.4rem;
    }

    .avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--orange-dim);
      border: 1.5px solid var(--orange-ring);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
      color: var(--orange);
      flex-shrink: 0;
      letter-spacing: -0.02em;
    }

    .identity-name {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--white);
      margin-bottom: 0.2rem;
      letter-spacing: -0.01em;
    }

    .identity-role {
      font-size: 0.8rem;
      color: var(--muted);
      font-family: var(--font-mono);
    }

    .card-divider {
      height: 1px;
      background: var(--border);
      margin-bottom: 1.3rem;
    }

    .tmg-label {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      color: var(--muted2);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-bottom: 1rem;
    }

    .contact-rows {
      display: grid;
      grid-template-columns: max-content 1fr;
      gap: 0.55rem 2rem;
      align-items: baseline;
    }

    .c-key {
      font-size: 0.76rem;
      color: var(--muted);
      white-space: nowrap;
    }

    .c-val {
      font-family: var(--font-mono);
      font-size: 0.82rem;
      color: var(--text);
    }

    .c-val a {
      color: var(--orange);
      text-decoration: none;
      transition: opacity 0.15s;
    }

    .c-val a:hover { opacity: 0.8; }

    /* ── Sections ────────────────────────────────── */
    .section {
      margin-bottom: 0;
      padding: 1.75rem 0;
      border-top: 1px solid var(--border);
    }

    .section:last-child {
      border-bottom: 1px solid var(--border);
    }

    .section-head {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.8rem;
    }

    .section-bar {
      width: 3px;
      height: 20px;
      background: var(--orange);
      border-radius: 2px;
      flex-shrink: 0;
    }

    .section-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.98rem;
      color: var(--white);
      letter-spacing: -0.01em;
    }

    .section-body {
      font-size: 0.875rem;
      color: var(--muted);
      line-height: 1.75;
      padding-left: 1.5rem;
    }

    .section-body a {
      color: var(--orange);
      text-decoration: none;
      border-bottom: 1px solid var(--orange-ring);
      transition: border-color 0.15s;
    }

    .section-body a:hover {
      border-color: var(--orange);
    }

    .verant-box {
      background: var(--surface2);
      border-left: 2px solid var(--border-soft);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      padding: 0.85rem 1rem;
      margin-top: 0.75rem;
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ── Footer ──────────────────────────────────── 
    footer {
      border-top: 1px solid var(--border);
      padding: 1.4rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: var(--font-mono);
      font-size: 0.72rem;
      color: var(--muted2);
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .footer-links {
      display: flex;
      gap: 1.5rem;
    }

    .footer-links a {
      color: var(--muted2);
      text-decoration: none;
      transition: color 0.15s;
    }

    .footer-links a:hover { color: var(--orange); }
*/
    /* ── Reveal animation ────────────────────────── */
    @media (prefers-reduced-motion: no-preference) {
      .contact-card {
        opacity: 0;
        transform: translateY(20px);
        animation: revealUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
      }

      .section {
        opacity: 0;
        transform: translateY(14px);
        animation: revealUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      }

      .section:nth-child(1) { animation-delay: 0.18s; }
      .section:nth-child(2) { animation-delay: 0.25s; }
      .section:nth-child(3) { animation-delay: 0.32s; }
      .section:nth-child(4) { animation-delay: 0.39s; }

      @keyframes revealUp {
        to { opacity: 1; transform: translateY(0); }
      }
    }

    /* ── Responsive ──────────────────────────────── */
    @media (max-width: 620px) {
      header { padding: 1rem; }
      main { padding: 2.5rem 1.25rem 4rem; }

      .contact-rows {
        grid-template-columns: 1fr;
        gap: 0.2rem;
      }

      .c-key {
        font-size: 0.7rem;
        color: var(--muted2);
        margin-top: 0.4rem;
      }

      footer {
        flex-direction: column;
        text-align: center;
      }

      .footer-links { justify-content: center; }
    }
	

