<!DOCTYPE html>
<html lang="en">
<head>
<style>
    :root {
      --bg-dark: #021024;
      --bg-darker: #000814;
      --bg-light: #f5f7fb;
      --accent-blue: #1e9fff;
      --accent-red: #ff4b4b;
      --accent-gold: #d6a842;
      --text-main: #f7f9ff;
      --text-muted: #c1c7d4;
      --border-soft: rgba(255,255,255,0.08);
      --max-width: 1080px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #042750 0, var(--bg-dark) 48%, var(--bg-darker) 100%);
      color: var(--text-main);
      -webkit-font-smoothing: antialiased;
    }

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

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

    .page-wrap {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 1.5rem;
    }
header a {
  color: #e8eaed;
}
header a:hover {
  color: #ffffff;
}

/* Logo container */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(-1px); /* micro-alignment adjustment */
}

/* Logo image */
.site-logo img {
  height: 42px;       /* tuned for ideal header balance */
  width: auto;
  image-rendering: smooth;
}

/* Logo text */
.logo-type {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-top: 1px;
  color: #E0E8FF;
}


    /* Header / Navigation */

    header {
      border-bottom: 1px solid var(--border-soft);
      backdrop-filter: blur(14px);
      background: linear-gradient(to bottom, rgba(2,16,36,0.98), rgba(2,16,36,0.92));
      position: sticky;
      top: 0;
      z-index: 40;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 0;
    }

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

    .nav-logo-lockup {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .nav-logo {
      width: 44px;
      height: 44px;
      border-radius: 999px;
      overflow: hidden;
      box-shadow: 0 8px 18px rgba(0,0,0,0.35);
      background: #0057cf;
    }

    .nav-title-group {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .nav-title {
      font-size: 1.05rem;
      font-weight: 650;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    .nav-tagline {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.9rem;
    }

    .nav-links a {
      position: relative;
      padding-bottom: 0.1rem;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: var(--accent-blue);
      transition: width 0.2s ease-out;
    }

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

    .nav-cta {
      padding: 0.45rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.22);
      background: radial-gradient(circle at top left, rgba(30,159,255,0.35), rgba(2,16,36,0.95));
      font-size: 0.85rem;
      font-weight: 550;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .nav-cta-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #4ade80;
    }

    /* Hero */

    main {
      flex: 1;
    }

    .hero {
      padding: 3rem 0 2.75rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 2.5rem;
      align-items: center;
    }

    .eyebrow {
      font-size: 0.8rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent-blue);
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    .hero-title {
      font-size: clamp(2.15rem, 3vw, 2.6rem);
      line-height: 1.05;
      margin: 0 0 0.75rem;
    }

    .hero-highlight {
      color: var(--accent-gold);
    }

    .hero-subtitle {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 32rem;
      margin-bottom: 1.5rem;
    }

    .hero-bullets {
      margin: 0 0 1.5rem;
      padding-left: 1.1rem;
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
    }

    .btn-primary {
      background: linear-gradient(135deg, #1e9fff, #4f46e5);
      color: white;
      border-radius: 999px;
      padding: 0.7rem 1.4rem;
      border: none;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    }

    .btn-primary span.icon {
      font-size: 1.1rem;
    }

    .hero-meta {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .hero-card {
      background: radial-gradient(circle at top, rgba(255,255,255,0.14), rgba(5,16,32,0.98));
      border-radius: 1.5rem;
      padding: 1.5rem;
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }

    .hero-card-tag {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--accent-gold);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .hero-card-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
    }

    .hero-card-sub {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 0.75rem;
    }

    .hero-card-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.75rem;
      padding: 0.35rem 0.7rem;
      border-radius: 999px;
      background: rgba(4,120,87,0.22);
      color: #bbf7d0;
    }

    .hero-card-badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
    }

    .hero-card-image {
      margin-top: 1rem;
      border-radius: 1.2rem;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.12);
      background: #0057cf;
    }

    /* Sections */

    .section {
      padding: 2.75rem 0;
    }

    .section-light {
      background: var(--bg-light);
      color: #020617;
    }

    .section-dark {
      border-top: 1px solid var(--border-soft);
    }

    .section-header {
      max-width: 40rem;
      margin-bottom: 1.75rem;
    }

    .section-kicker {
      font-size: 0.8rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent-gold);
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .section-title {
      font-size: 1.5rem;
      margin: 0 0 0.5rem;
    }

    .section-body {
      font-size: 0.96rem;
      color: var(--text-muted);
    }

    .split-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 2.25rem;
      align-items: flex-start;
    }

    .card {
      border-radius: 1.2rem;
      padding: 1.25rem 1.35rem;
      border: 1px solid rgba(15,23,42,0.08);
      background: #ffffff;
      box-shadow: 0 18px 35px rgba(15,23,42,0.08);
    }
	  
   	.section-dark .card {
  		border-radius: 1.2rem;
  		padding: 1.25rem 1.35rem;
  		border: 1px solid rgba(148,163,184,0.45);
  		background: radial-gradient(circle at top, rgba(148,163,184,0.12), #020617);
  		box-shadow: 0 18px 35px rgba(15,23,42,0.35);
  		color: var(--text-main);
	}

    .card-dark {
      border: 1px solid rgba(255,255,255,0.12);
      background: radial-gradient(circle at top left, rgba(30,159,255,0.16), rgba(2,10,25,0.98));
      box-shadow: 0 18px 40px rgba(0,0,0,0.6);
    }

    .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.75rem;
      font-size: 0.8rem;
    }

    .pill {
      padding: 0.35rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.6);
      background: rgba(15,23,42,0.03);
    }

    .pill-strong {
      border-color: rgba(37,99,235,0.8);
      background: rgba(59,130,246,0.08);
    }

    /* Product stack */

    .stack-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 1.25rem;
    }

    .stack-item {
      border-radius: 1.1rem;
      padding: 1rem 1rem 1.1rem;
      border: 1px solid rgba(148,163,184,0.45);
      background: radial-gradient(circle at top, rgba(148,163,184,0.12), rgba(15,23,42,0.98));
      color: var(--text-main);
      font-size: 0.9rem;
    }

    .stack-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--accent-blue);
      margin-bottom: 0.35rem;
    }

    .stack-name {
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    /* Sentinel Column */

    .column-meta {
      font-size: 0.8rem;
      color: #64748b;
      margin-bottom: 0.75rem;
    }

    .column-body {
      font-size: 0.94rem;
      line-height: 1.6;
      color: #0f172a;
    }

    .column-body h3 {
      margin-top: 0;
      margin-bottom: 0.4rem;
      font-size: 1.1rem;
    }

    /* Join form */

    .join-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 2rem;
      align-items: center;
    }

    form {
      margin-top: 0.5rem;
    }

    .field-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .field {
      flex: 1 1 160px;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    label {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-muted);
    }

    input[type="text"],
    input[type="email"] {
      padding: 0.6rem 0.75rem;
      border-radius: 0.6rem;
      border: 1px solid rgba(148,163,184,0.9);
      background: rgba(15,23,42,0.9);
      color: var(--text-main);
      font-size: 0.9rem;
      outline: none;
    }

    input[type="text"]::placeholder,
    input[type="email"]::placeholder {
      color: #64748b;
    }

    .join-footnote {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.75rem;
    }

	  .hero-card-image-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.hero-pup-image {
  max-width: 160px;         /* tweak as needed */
  height: auto;
  display: block;
}

.hero-pup-caption {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-pup-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-pup-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: #4ff2b4;           /* your mint accent */
}

/* Stack vertically on small screens */
@media (max-width: 640px) {
  .hero-card-image-row {
    flex-direction: column;
    text-align: center;
  }
}
	  
/* Sentinel Column Block */
.sentinel-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  padding: 60px 0;
}

/* Alder Portrait */
.alder-image-wrap {
  flex-shrink: 0;
  width: 180px;
}

.alder-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.92;
  filter: contrast(110%) saturate(80%);
}

/* Text Area */
.sentinel-text {
  flex-grow: 1;
  max-width: 600px;
}

.sentinel-text h2 {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.sentinel-desc {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 12px;
}	  

.sentinel-image img:hover {
  opacity: 1;
  transform: scale(1.02);
  transition: .25s ease-out;
}	  
	  
    /* Footer */

    footer {
      border-top: 1px solid var(--border-soft);
      padding: 1.4rem 0 1.8rem;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .footer-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
      justify-content: space-between;
    }

    .footer-logos {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
    }

    .footer-logo {
      height: 26px;
      opacity: 0.92;
    }

    @media (max-width: 840px) {
      .hero-grid,
      .split-grid,
      .join-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero {
        padding-top: 2.4rem;
      }

      .nav-links {
        display: none;
      }
		.footer-legal {
  margin-top: 15px;
  font-size: 0.85rem;
  color: #999;
  line-height: 1.4;
  padding-bottom: 10px;
}

.footer-links {
  margin-top: 8px;
  font-size: 0.9rem;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}
	/* Force header/nav colors on all pages */
.site-header .nav-title,
.site-header .nav-tagline,
.site-header .nav-links a,
.site-header .nav-cta {
  color: #f9fafb;
}

.site-header .nav-cta {
  border-color: rgba(249, 250, 251, 0.7);
}	
/* Legal pages: keep content at a readable width */
.page-legal .container,
.page-legal .legal-container {
  max-width: 800px;   /* adjust 760–900px to taste */
  margin: 0 auto;
}	
		
		
    }
  </style>
</head>