﻿@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/font_3.woff2') format('woff2');
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/font_6.woff2') format('woff2');
}

:root {
  color-scheme: dark;
  --bg: #07090d;
  --bg-2: #0d1118;
  --bg-3: #0b1620;
  --text: #eef2f7;
  --muted: #b4c0d4;
  --accent: #2ee6ff;
  --accent-2: #ffb74a;
  --accent-3: #5cffb7;
  --line: rgba(255, 255, 255, 0.08);
  --card: rgba(12, 17, 26, 0.9);
  --shadow: 0 32px 80px rgba(5, 10, 22, 0.45);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  background: radial-gradient(circle at 15% 20%, rgba(46, 230, 255, 0.14), transparent 40%),
    radial-gradient(circle at 85% 0%, rgba(255, 183, 74, 0.16), transparent 35%),
    linear-gradient(180deg, var(--bg) 0%, #080c13 40%, #05070b 100%);
  color: var(--text);
}

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

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

p {
  color: var(--muted);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Georgia', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.8rem, 4.2vw, 4.5rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 3.1vw, 3.3rem);
}

h3 {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
}

.smallcaps {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
}

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(7, 9, 13, 0.85);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand.logo-chip img {
  background: #ffffff;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 24px rgba(5, 10, 22, 0.35);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.brand-name {
  color: var(--text);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.brand:hover .brand-name,
.brand:focus-visible .brand-name,
.brand.active .brand-name {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(46, 230, 255, 0.4);
}

.brand:hover.logo-chip img,
.brand:focus-visible.logo-chip img,
.brand.active.logo-chip img {
  border-color: rgba(46, 230, 255, 0.65);
  box-shadow: 0 10px 28px rgba(46, 230, 255, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.98rem;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(12, 17, 26, 0.9);
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  display: block;
}

.mobile-nav-cta {
  display: none;
}

.cta {
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #05070b;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(46, 230, 255, 0.3);
}

.hero {
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card strong {
  color: var(--accent-2);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag {
  border: 1px solid rgba(46, 230, 255, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text);
  background: rgba(46, 230, 255, 0.08);
}

.section {
  padding: 84px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(14, 18, 26, 0.96), rgba(6, 9, 12, 0.96));
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.card {
  background: rgba(11, 17, 26, 0.92);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(2, 8, 20, 0.35);
}

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(46, 230, 255, 0.2), rgba(255, 183, 74, 0.2));
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.stat {
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(8, 12, 18, 0.88);
}

.stat h3 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 183, 74, 0.28);
  background: rgba(255, 183, 74, 0.08);
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 600;
}

.flow {
  border: 1px dashed rgba(46, 230, 255, 0.4);
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(8, 14, 22, 0.6);
}

.workflow-visual {
  border: 1px solid rgba(46, 230, 255, 0.28);
  border-radius: var(--radius-lg);
  padding: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(46, 230, 255, 0.16), transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(255, 183, 74, 0.14), transparent 45%),
    rgba(7, 13, 21, 0.92);
  box-shadow: 0 28px 48px rgba(2, 8, 20, 0.42);
}

.workflow-node {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  background: rgba(11, 17, 26, 0.95);
}

.workflow-node + .workflow-node {
  margin-top: 10px;
}

.workflow-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.workflow-node strong {
  display: block;
  margin-bottom: 8px;
}

.workflow-node p {
  margin: 0;
  line-height: 1.55;
}

.workflow-arrow {
  color: var(--accent-2);
  font-size: 1.2rem;
  text-align: center;
  margin: 10px 0;
}

.workflow-metrics {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workflow-metric {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px;
  background: rgba(9, 15, 24, 0.92);
}

.workflow-metric span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.workflow-metric strong {
  display: block;
  font-size: 1.05rem;
}

.mcp-visual .workflow-node {
  background: rgba(9, 16, 26, 0.94);
}

.mcp-visual .workflow-metric strong {
  color: var(--accent-3);
}

.map-card {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.list {
  display: grid;
  gap: 10px;
}

.list li {
  list-style: none;
  padding-left: 24px;
  position: relative;
  color: var(--muted);
}

.list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn-secondary {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
}

.footer {
  padding: 48px 0 64px;
  border-top: 1px solid var(--line);
}

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

.footer small {
  color: rgba(255, 255, 255, 0.6);
}

input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

form .grid {
  gap: 16px;
}

.notice {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 183, 74, 0.3);
  background: rgba(255, 183, 74, 0.08);
  color: var(--accent-2);
  font-size: 0.92rem;
}

.pill-nav {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill-nav button {
  border: 1px solid var(--line);
  background: rgba(8, 12, 18, 0.85);
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pill-nav button.active {
  color: var(--text);
  border-color: rgba(46, 230, 255, 0.5);
  background: rgba(46, 230, 255, 0.12);
}

.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-bullets {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
}

.hero-bullets li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
}

.hero-bullets span {
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(46, 230, 255, 0.3);
}

@media (max-width: 880px) {
  .nav .container {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .desktop-cta {
    display: none;
  }

  .nav-inner {
    position: relative;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(8, 12, 18, 0.96);
    box-shadow: 0 24px 46px rgba(2, 8, 20, 0.45);
  }

  .nav-links.is-open {
    display: flex;
  }

  .mobile-nav-cta {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 999px;
    padding: 12px 18px;
    margin-top: 4px;
    color: #05070b;
    font-weight: 700;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
  }

  .nav-links .mobile-nav-cta,
  .nav-links .mobile-nav-cta:hover,
  .nav-links .mobile-nav-cta:focus-visible {
    color: #05070b;
  }

  .hero {
    padding-top: 72px;
  }

  .workflow-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .button-row .cta,
  .button-row .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .button-row {
    flex-direction: column;
  }
}


.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 230, 255, 0.24) 0%, rgba(46, 230, 255, 0.05) 45%, rgba(46, 230, 255, 0) 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.page-layer {
  position: relative;
  z-index: 1;
}


@keyframes brandGlow {
  0% {
    text-shadow: 0 0 0 rgba(46, 230, 255, 0.0);
    transform: translateY(8px) scale(0.98);
    opacity: 0.0;
  }
  50% {
    text-shadow: 0 0 30px rgba(46, 230, 255, 0.7), 0 0 10px rgba(255, 183, 74, 0.4);
    transform: translateY(0) scale(1.02);
    opacity: 1;
  }
  100% {
    text-shadow: 0 0 14px rgba(46, 230, 255, 0.35);
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.brand-name {
  display: inline-block;
  font-weight: 700;
}

.brand-name.animate {
  animation: brandGlow 1.6s ease-out forwards;
}


