/* ===================== TOKENS ===================== */
:root {
  --ink: #f4f6fa;
  --ink-2: #c7ccd6;
  --muted: #8b93a3;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.22);
  --bg: #000000;
  --bg-soft: #08090c;
  --bg-card: #0c0e13;
  --bg-dark: #000000;

  --accent: #5ec4f0;
  --accent-2: #7ed4f7;
  --grad: linear-gradient(120deg, #7ed4f7 0%, #5ec4f0 55%, #38a8e0 100%);

  --radius: 18px;
  --radius-lg: 26px;
  --container: 1180px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 24px 60px -24px rgba(0, 0, 0, 0.75);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===================== BASE ===================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: "Futura", "Futura PT", "Jost", "Century Gothic", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; line-height: 1.08; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--accent-2); }
.nowrap { white-space: nowrap; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--dark { background: #ffffff; color: #08090c; }
.btn--dark:hover { background: #e6ecf5; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: #ffffff; }
.btn--lg { padding: 15px 26px; font-size: 1rem; }

/* ===================== NAV ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: inset 0 -1px 0 transparent;
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.is-scrolled { box-shadow: inset 0 -1px 0 var(--line); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { width: 30px; height: 30px; }
.brand__name { font-weight: 800; font-size: 1.18rem; letter-spacing: -0.03em; }

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--grad);
  transition: width 0.25s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 10px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 24px;
  border-bottom: 1px solid var(--line);
  background: #000;
}
.mobile-menu a {
  padding: 12px 4px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu__cta { margin-top: 12px; text-align: center; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 72px);
  min-height: calc(100svh - 72px);
  padding: 40px 0;
}
.hero__glow {
  position: absolute;
  top: -260px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(closest-side, rgba(94, 196, 240, 0.35), rgba(56, 168, 224, 0.12) 55%, transparent 75%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 88px);
}
.hero__logo-wrap { flex-shrink: 0; }
.hero__logo {
  width: clamp(240px, 32vw, 420px);
  height: auto;
  filter: drop-shadow(0 16px 60px rgba(56, 168, 224, 0.4));
}
.hero__content {
  flex: 1;
  min-width: 0;
  max-width: 620px;
}
.hero__wordmark {
  font-family: "Futura", "Futura PT", "Jost", "Century Gothic", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #f4f6fa;
  margin-bottom: 8px;
}
.hero__slogan {
  font-family: "Futura", "Futura PT", "Jost", "Century Gothic", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.02em;
  color: var(--accent-2);
}

/* ---- Chat box ---- */
.chatbox {
  width: 100%;
  max-width: 720px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 16px 18px 12px;
  text-align: left;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.chatbox:focus-within {
  border-color: rgba(94, 196, 240, 0.55);
  box-shadow: 0 0 0 4px rgba(94, 196, 240, 0.14), var(--shadow-md);
}
.chatbox__input {
  width: 100%;
  border: 0;
  outline: 0;
  resize: none;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1.05rem;
  line-height: 1.5;
  max-height: 200px;
  padding: 6px 4px;
}
.chatbox__input::placeholder { color: var(--muted); }
.chatbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}
.chatbox__hint { color: var(--muted); font-size: 0.82rem; }
.chatbox__send {
  flex-shrink: 0;
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #5ec4f0;
  color: #0a1428;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease), filter 0.2s var(--ease);
}
.chatbox__send:hover { transform: translateY(-1px); filter: brightness(1.08); }
.chatbox__send:disabled { opacity: 0.45; cursor: not-allowed; }

/* ---- Suggestion chips ---- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 20px; }
.chip {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink-2);
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}
.chip:hover { border-color: var(--line-strong); color: var(--ink); background: rgba(94, 196, 240, 0.08); }

.chatbox__note {
  margin-top: 22px;
  color: var(--accent-2);
  font-size: 0.95rem;
}
.chatbox__note a { text-decoration: underline; text-underline-offset: 3px; }

/* ===================== STRIP ===================== */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 22px 24px;
  flex-wrap: wrap;
}
.strip__inner > span { color: var(--muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; }
.strip__names { display: flex; gap: 34px; flex-wrap: wrap; }
.strip__names span { font-weight: 700; color: #aab0ba; font-size: 1.05rem; letter-spacing: -0.01em; }

/* ===================== SECTIONS ===================== */
.section { padding: 100px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: #eef1f6; }

.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
#research .container { max-width: 1480px; }
#research .section__head { max-width: 1000px; }
.section__title { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; margin-bottom: 16px; }
.section__title--giants {
  color: #ffffff;
  white-space: normal;
}
.giants__cot {
  color: #5ec4f0;
}
.section__lead { color: var(--muted); font-size: 1.1rem; }
.section__head--light .section__lead { color: #9aa4b2; }

.section__lead--wide {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  max-width: 1480px;
  margin: 48px auto 0;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.8;
}

.coming-soon {
  font-family: "Futura", "Futura PT", "Jost", "Century Gothic", sans-serif;
  text-align: center;
  color: var(--accent-2);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.03em;
  margin: 0;
  padding: 32px 0 8px;
}

/* ===================== CARDS ===================== */
.cards { display: grid; gap: 22px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(94, 196, 240, 0.12);
  color: var(--accent-2);
  margin-bottom: 22px;
}
.card__icon svg { width: 26px; height: 26px; }
.card__tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(56, 168, 224, 0.08);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.card__title { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
.card__text { color: var(--muted); margin-bottom: 18px; }
.card__link { margin-top: auto; font-weight: 600; color: var(--accent); }
.card__link:hover { color: var(--ink); }

/* ===================== GIANTS (STANDING ON SHOULDERS) ===================== */
.giants {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  width: 100%;
  margin: 0 auto;
}
.giants__item {
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  transition: transform 0.3s var(--ease);
}
.giants__item:hover {
  transform: translateY(-4px);
}
.giants__item img {
  width: 100%;
  height: auto;
  display: block;
}
.giants__caption {
  padding: 20px 18px 22px;
  text-align: center;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 700;
  color: var(--ink);
  border-top: 0;
  letter-spacing: -0.01em;
}

/* ===================== ISAAC FRAMEWORK ===================== */
#isaac .section__head { max-width: 1100px; }
.section__title--isaac {
  white-space: normal;
  font-size: clamp(1.55rem, 3.2vw, 2.5rem);
  line-height: 1.2;
}
#isaac .container.isaac__container,
.isaac__container { max-width: 1480px; }
.isaac__figure {
  margin: 0 auto;
  max-width: 1080px;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}
.isaac__figure img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================== TECH (WHAT MAKES US DIFFERENT) ===================== */
.tech { display: flex; flex-direction: column; gap: clamp(40px, 6vw, 72px); }
.tech__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  min-height: 320px;
}
.tech__body { max-width: 460px; }
.tech__title {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--accent);
  margin-bottom: 22px;
}
.tech__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.tech__list li {
  position: relative;
  padding-left: 22px;
  font-size: 1.12rem;
  color: var(--ink);
}
.tech__list li::before {
  content: "";
  position: absolute; left: 2px; top: 0.65em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}
.tech__media {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  min-height: 260px;
}
.tech__media img {
  width: auto;
  max-width: 240px;
  max-height: 240px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 44px rgba(56, 168, 224, 0.22));
}

/* ===================== SPLIT (MODEL) ===================== */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b0e14;
  box-shadow: var(--shadow-md);
}
.feature { display: flex; gap: 18px; margin-bottom: 28px; }
.feature__no {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--accent);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px 10px;
  height: fit-content;
  background: var(--bg-card);
}
.feature h3 { font-size: 1.25rem; margin-bottom: 6px; }
.feature p { color: var(--muted); }

.pills { list-style: none; padding: 0; margin: 30px 0 0; display: flex; flex-direction: column; gap: 10px; }
.pills li {
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  font-weight: 500;
  position: relative;
  padding-left: 40px;
}
.pills li::before {
  content: "";
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--grad);
}

/* ===================== BENCHMARKS ===================== */
.bench {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.bench__card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.bench__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.bench__card--wide { grid-column: 1 / -1; }
.bench__card img { width: 100%; background: #0a0a0a; }
.bench__card figcaption {
  padding: 16px 22px;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
}
.bench__card figcaption strong { color: var(--accent); }

/* ===================== RESEARCH PAGE ===================== */
.page-hero { padding: 84px 0 8px; text-align: center; }
.page-hero__title {
  font-family: "Futura", "Futura PT", "Jost", "Century Gothic", sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: #f4f6fa;
}
.page-hero__lead { color: var(--muted); font-size: 1.15rem; margin-top: 14px; }
.section--top { padding-top: 48px; }

.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.post__media {
  aspect-ratio: 16 / 10;
  background: #000;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.post__media img { width: 100%; height: 100%; object-fit: contain; padding: 18px; }
.post__media--icon { background: linear-gradient(140deg, rgba(94,196,240,0.16), rgba(56,168,224,0.06)); color: var(--accent-2); }
.post__media--icon svg { width: 64px; height: 64px; }
.post__body { display: flex; flex-direction: column; gap: 10px; padding: 22px 24px 24px; flex: 1; }
.post__tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(56, 168, 224, 0.10);
  padding: 5px 11px;
  border-radius: 999px;
}
.post__title { font-size: 1.2rem; font-weight: 700; line-height: 1.2; }
.post__excerpt { color: var(--muted); font-size: 0.95rem; flex: 1; }
.post__date { color: #6a7383; font-size: 0.82rem; letter-spacing: 0.02em; }

/* Featured */
.post--featured {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  margin-bottom: 24px;
}
.post--featured .post__media {
  aspect-ratio: auto;
  height: 100%;
  min-height: 320px;
  border-bottom: 0;
  border-right: 1px solid var(--line);
}
.post--featured .post__media img { padding: 40px; }
.post--featured .post__body { justify-content: center; padding: 40px; gap: 14px; }
.post--featured .post__title { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.post--featured .post__excerpt { font-size: 1.05rem; flex: 0; }

/* ===================== BLOG ARTICLE (Seed-like Inter + airy rhythm) ===================== */
.article {
  padding: 56px 0 96px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.article__inner { max-width: 860px; }
.article__back {
  display: inline-block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 36px;
}
.article__back:hover { color: var(--accent-2); }
.article__head { margin-bottom: 40px; }
.article__title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 16px 0 14px;
  color: #f4f6fa;
}
.article__subtitle {
  color: var(--muted);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}
.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  color: #6a7383;
  font-size: 0.92rem;
}
.article__hero {
  margin: 0 0 56px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}
.article__hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.post--featured .post__media img {
  object-fit: cover;
  padding: 0;
}
.article__body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #c8ced8;
  font-weight: 400;
}
.article__body p { margin: 0 0 1.35em; }
.article__body h2 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #f4f6fa;
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 3.2em 0 1.15em;
  padding-top: 0.35em;
}
.article__body h2:first-child { margin-top: 0; }
.article__body a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
.article__body strong { color: #e8ecf2; font-weight: 600; }
.article__body ol { margin: 0.4em 0 1.5em; padding-left: 1.35em; }
.article__body li { margin-bottom: 0.75em; }
.article__figure {
  margin: 2.2em 0 2.6em;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}
.article__figure img { width: 100%; height: auto; display: block; }
.article__figure figcaption {
  padding: 14px 20px;
  border-top: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.article__closing { margin-top: 2.4em; color: var(--muted); }

/* ===================== RESULTS (HOW GOOD ARE WE) ===================== */
#benchmarks .container { max-width: 1360px; }
.results {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
}
.results__card {
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  transition: transform 0.3s var(--ease);
}
.results__card:hover { transform: translateY(-4px); }
.results__card img { width: 100%; height: auto; display: block; }
.results__card figcaption {
  padding: 18px 24px 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  border-top: 0;
}
.results__card figcaption strong { color: var(--ink); font-weight: 600; }
.results__subhead { margin: 24px auto 40px; }

/* ===================== DEPLOY ===================== */
.deploy { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.deploy__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.deploy__item:hover { transform: translateY(-4px); background: rgba(94, 196, 240, 0.08); border-color: rgba(94, 196, 240, 0.35); }
.deploy__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--grad);
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.deploy__item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.deploy__item p { color: #9aa4b2; font-size: 0.95rem; }

/* ===================== ABOUT ===================== */
.about { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.about__body p { color: var(--muted); font-size: 1.08rem; margin-top: 18px; }
.about__body .section__title { text-align: left; margin-bottom: 8px; }
.about__stats { display: flex; flex-direction: column; gap: 14px; }
.mini-stat {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  background: var(--bg-card);
}
.mini-stat span { display: block; font-weight: 700; font-size: 1.2rem; }
.mini-stat small { color: var(--muted); }

/* ===================== CTA ===================== */
.cta { padding: 110px 0; background: var(--bg-dark); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 50% -10%, rgba(56, 168, 224, 0.4), transparent 70%);
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; margin-bottom: 18px; }
.cta p { color: #9aa4b2; font-size: 1.15rem; margin-bottom: 32px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.25); }
.cta .btn--ghost:hover { border-color: #fff; }

/* ===================== FOOTER ===================== */
.footer { background: #060810; color: #c4cbd6; padding: 64px 0 30px; }
.footer__inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { color: #7a8494; margin-top: 14px; font-size: 0.95rem; max-width: 34ch; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__cols h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer__cols a { display: block; color: #97a1b0; padding: 6px 0; font-size: 0.95rem; transition: color 0.2s var(--ease); }
.footer__cols a:hover { color: #fff; }
.footer__bar { display: flex; justify-content: space-between; padding-top: 24px; color: #6a7383; font-size: 0.85rem; flex-wrap: wrap; gap: 10px; }

/* ===================== REVEAL ANIMATION ===================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 940px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .hero__inner { flex-direction: column; text-align: center; }
  .hero__content { max-width: 620px; width: 100%; }
  .hero__logo { width: clamp(180px, 46vw, 300px); }
  .chatbox { margin-left: auto; margin-right: auto; }
  .chatbox__note { text-align: center; }
  .cards--3 { grid-template-columns: 1fr; }
  .posts { grid-template-columns: 1fr; }
  .post--featured { grid-template-columns: 1fr; }
  .post--featured .post__media { border-right: 0; border-bottom: 1px solid var(--line); min-height: 240px; }
  .tech__row { grid-template-columns: 1fr; gap: 24px; text-align: center; min-height: 0; }
  .tech__row--rev .tech__media { order: 2; }
  .tech__body { max-width: none; margin: 0 auto; }
  .tech__row--rev .tech__body { margin: 0 auto; }
  .tech__media, .tech__row--rev .tech__media { justify-content: center; }
  .tech__title { max-width: none; margin-left: auto; margin-right: auto; }
  .tech__list { display: inline-flex; text-align: left; }
  .giants { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .bench { grid-template-columns: 1fr; }
  .deploy { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 36px; }
  .footer__inner { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
}
@media (max-width: 520px) {
  .hero { padding: 64px 0 56px; }
  .hero__stats { gap: 32px; }
  .deploy { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .strip__names { gap: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
