:root {
      --bg: #0d1117;
      --bg-2: #121316;
      --panel: rgba(255,255,255,.045);
      --panel-2: rgba(255,255,255,.025);
      --text: #f0f6fc;
      --muted: #8b949e;
      --muted-2: #b7c0cc;
      --line: rgba(255,255,255,.07);
      --accent: #7c5cff;
      --accent-2: #57bff3;
      --white: #ffffff;
      --shadow: 0 24px 80px rgba(0,0,0,.38);
      --radius: 24px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      background:
        radial-gradient(circle at top left, rgba(124,92,255,.19), transparent 34rem),
        radial-gradient(circle at top right, rgba(87,191,243,.10), transparent 30rem),
        linear-gradient(180deg, #0d1117 0%, #121316 46%, #0d1117 100%);
      color: var(--text);
      font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    .noise {
      pointer-events: none;
      position: fixed;
      inset: 0;
      opacity: .04;
      background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(to bottom, #000, transparent 76%);
      z-index: 0;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(18px);
      background: rgba(13,17,23,.72);
      border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .nav {
      max-width: var(--max);
      margin: 0 auto;
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      letter-spacing: -.03em;
    }

    .brand-mark {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      background:
        linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.2)),
        linear-gradient(135deg, var(--accent), var(--accent-2));
      box-shadow: 0 12px 30px rgba(124,92,255,.24);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      color: var(--muted-2);
      font-size: 14px;
    }

    .nav-links a:hover { color: var(--white); }

    .nav-cta {
      padding: 9px 14px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,.045);
    }

    main { position: relative; z-index: 1; }
    section { padding: 120px 24px; }
    .container { max-width: var(--max); margin: 0 auto; }

    .hero {
      min-height: 86vh;
      display: grid;
      align-items: center;
      padding-top: 120px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: rgba(183, 192, 204, 0.85);
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 22px;
    }

    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent-2);
      box-shadow: 0 0 24px var(--accent-2);
    }

    h1, h2, h3 {
      margin: 0;
      letter-spacing: -.055em;
      line-height: .98;
    }

    h1 {
      max-width: 880px;
      font-size: clamp(52px, 8vw, 112px);
      font-weight: 760;
    }

    .hero h1 + h1 { margin-top: -0.06em; }

    h2 {
      font-size: clamp(38px, 5vw, 76px);
      font-weight: 740;
      max-width: 820px;
    }

    h3 {
      font-size: 22px;
      letter-spacing: -.035em;
      line-height: 1.15;
      margin-bottom: 12px;
    }

    .lead {
      max-width: 740px;
      color: var(--muted-2);
      font-size: clamp(18px, 2vw, 23px);
      margin: 28px 0 0;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 38px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 650;
      transition: transform .2s ease;
    }

    .btn:hover { transform: translateY(-2px); }
    .btn-primary { background: linear-gradient(135deg, var(--accent), #9d8cff); color: #fff; box-shadow: 0 16px 40px rgba(124,92,255,.18); }
    .btn-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.045); color: var(--text); }

    .hero-panel {
      margin-top: 72px;
      display: grid;
      grid-template-columns: 1.25fr .75fr;
      gap: 18px;
    }

    .glass {
      background: linear-gradient(135deg, var(--panel), var(--panel-2));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      backdrop-filter: blur(22px);
    }

    .terminal { padding: 24px; min-height: 260px; overflow: hidden; }
    .terminal-top { display: flex; gap: 7px; margin-bottom: 24px; }
    .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.25); }
    .dot:nth-child(1) { background: #ff5f57; }
    .dot:nth-child(2) { background: #ffbd2e; }
    .dot:nth-child(3) { background: #28c840; }

    .code-line {
      color: var(--muted);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: 14px;
      margin: 10px 0;
    }

    .code-line span { color: var(--accent-2); }

    .stat-panel { padding: 24px; display: grid; align-content: space-between; gap: 22px; }
    .stat { border-bottom: 1px solid var(--line); padding-bottom: 18px; }
    .stat:last-child { border-bottom: 0; padding-bottom: 0; }
    .stat strong { display: block; font-size: 34px; letter-spacing: -.05em; }
    .stat small { color: var(--muted); font-size: 13px; }

    .section-head { margin-bottom: 44px; }
    .section-head p { color: var(--muted); max-width: 720px; font-size: 18px; }

    .grid { display: grid; gap: 18px; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }

    .card {
      padding: 30px;
      min-height: 230px;
      position: relative;
      overflow: hidden;
    }

    .card::after {
      content: "";
      position: absolute;
      inset: auto -20% -40% auto;
      width: 190px;
      height: 190px;
      background: radial-gradient(circle, rgba(124,92,255,.16), transparent 70%);
      pointer-events: none;
    }

    .card p { color: var(--muted); margin: 0; }

    .card-content {
      position: relative;
      z-index: 1;
    }

    .tag {
      display: inline-flex;
      margin-bottom: 24px;
      padding: 6px 10px;
      border-radius: 999px;
      color: var(--muted-2);
      background: rgba(255,255,255,.045);
      border: 1px solid var(--line);
      font-size: 12px;
    }

    .divider {
      padding: 104px 24px;
      text-align: center;
      background:
        linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent),
        radial-gradient(circle at center, rgba(124,92,255,.08), transparent 36rem);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .divider h2 { margin: 0 auto; font-size: clamp(34px, 4vw, 62px); }
    .divider p { margin: 20px auto 0; max-width: 780px; color: var(--muted-2); font-size: 18px; }

    .timeline { display: grid; gap: 16px; margin-top: 34px; }
    .timeline-item { display: grid; grid-template-columns: 170px 1fr; gap: 26px; padding: 24px; }
    .timeline-item .year { color: var(--accent-2); font-weight: 700; letter-spacing: -.03em; }
    .timeline-item p { margin: 6px 0 0; color: var(--muted); }

    .founder { display: grid; grid-template-columns: .85fr 1.15fr; gap: 32px; align-items: stretch; }

    .founder-portrait {
      position: relative;
      min-height: 500px;
      overflow: hidden;
      padding: 0;
      background: #0f1218;
    }

    .founder-portrait img {
      width: 100%;
      height: 100%;
      min-height: 500px;
      object-fit: cover;
      object-position: 58% 22%;
      display: block;
      filter:
        grayscale(100%)
        contrast(106%)
        brightness(.90)
        saturate(0%);
      opacity: .92;
    }

    .founder-portrait::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(
          180deg,
          rgba(13,17,23,.08),
          rgba(13,17,23,.32)
        ),
        linear-gradient(
          135deg,
          rgba(124,92,255,.06),
          rgba(87,191,243,.04)
        );
    }

    .portrait-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      padding: 30px;
      background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.14));
    }

    .portrait-caption strong {
      display: block;
      font-size: 16px;
      letter-spacing: -.02em;
    }

    .portrait-label { color: var(--muted-2); font-size: 14px; }
    .founder-social {
      margin-top: 12px;
      font-size: 12px;
      color: var(--muted);
    }
    .founder-social a {
      color: var(--muted);
      transition: color .2s ease;
    }
    .founder-social a:hover { color: var(--white); }
    .founder-copy { padding: 44px; }
    .founder-copy p { color: var(--muted); font-size: 18px; }

    .contact-list { display: grid; gap: 14px; color: var(--muted-2); margin-top: 24px; }
    .contact-list span { display: block; padding-bottom: 14px; border-bottom: 1px solid var(--line); }

    footer { padding: 56px 24px; border-top: 1px solid var(--line); color: var(--muted); }
    .footer-inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 14px; }
    .footer-social {
      max-width: var(--max);
      margin: 18px auto 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: var(--muted);
    }
    .footer-social-label { color: var(--muted); }
    .footer-social-links a {
      color: var(--muted);
      transition: color .2s ease;
    }
    .footer-social-links a:hover { color: var(--white); }
    .social-sep { color: var(--muted); opacity: .72; }
    .footer-links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: center; }
    .footer-links a { color: var(--muted); transition: color .2s ease; }
    .footer-links a:hover { color: var(--white); }
    .footer-links-list,
    .footer-links ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .footer-links-list li,
    .footer-links li { margin: 0; }

    @media (max-width: 900px) {
      .nav-links { display: none; }
      .footer-inner { flex-direction: column; text-align: center; }
      .hero-panel, .grid-3, .grid-2, .founder { grid-template-columns: 1fr; }
      .timeline-item { grid-template-columns: 1fr; }
      section { padding: 80px 20px; }
      .hero { min-height: auto; padding-top: 110px; }
      .founder-portrait,
      .founder-portrait img { min-height: 340px; }
    }

/* WordPress theme additions */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f0f6fc;
  clip: auto !important;
  clip-path: none;
  color: #0d1117;
  display: block;
  font-size: 14px;
  font-weight: 600;
  height: auto;
  left: 12px;
  line-height: normal;
  padding: 12px 18px;
  text-decoration: none;
  top: 12px;
  width: auto;
  z-index: 100000;
}

.site-header.is-scrolled {
  background: rgba(13, 17, 23, 0.88);
}

.custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
}

.custom-logo {
  max-height: 40px;
  width: auto;
  max-width: 200px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle-bar::before { top: -6px; }
.nav-toggle-bar::after { top: 6px; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

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

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 24px;
    left: 24px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(13, 17, 23, 0.96);
    backdrop-filter: blur(18px);
  }
  .nav-links.is-open { display: flex; }
  .nav { position: relative; }
  body.nav-open { overflow: hidden; }
}

ul.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links li {
  margin: 0;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(13,17,23,.72);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.legal-section { padding: 120px 24px 96px; }
.legal-card { max-width: 760px; margin: 0 auto; padding: 48px 44px; }
.legal-effective {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.legal-card h1 {
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 0 0 24px;
}
.legal-card h2 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -.02em;
  margin: 32px 0 12px;
  color: var(--text);
}
.legal-card p,
.legal-card li {
  color: var(--muted-2);
  font-size: 16px;
  line-height: 1.75;
}
.legal-card p { margin: 0 0 16px; }
.legal-card ul {
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--muted-2);
}
.legal-card li { margin-bottom: 8px; }
.legal-card a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-card a:hover { color: var(--white); }

@media (max-width: 900px) {
  .legal-section { padding: 96px 20px 72px; }
  .legal-card { padding: 32px 24px; }
}
