:root {
  color-scheme: dark;
  --ink: #f5f4ef;
  --ink-muted: #b7bbb4;
  --ink-soft: #7d857e;
  --paper: #f1f1e8;
  --paper-ink: #0d1110;
  --paper-muted: #5a625e;
  --black: #080a0a;
  --black-2: #0d1211;
  --line: rgba(245, 244, 239, 0.16);
  --line-dark: rgba(8, 10, 10, 0.14);
  --green: #7cffba;
  --cyan: #66dcff;
  --amber: #f6c66b;
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--green);
  color: var(--paper-ink);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px 28px;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(8, 10, 10, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 720;
  font-size: 1rem;
}

.brand img,
.site-footer img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  color: rgba(245, 244, 239, 0.78);
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.site-nav a.is-current {
  color: var(--ink);
}

.site-nav .nav-cta {
  color: var(--paper-ink);
  background: var(--green);
  font-weight: 680;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--paper-ink);
  background: #a2ffd0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 720px;
  height: 88svh;
  max-height: 980px;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 132px 28px 72px;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(1.08) contrast(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 10, 10, 0.92) 0%, rgba(8, 10, 10, 0.76) 42%, rgba(8, 10, 10, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 10, 10, 0.86) 0%, rgba(8, 10, 10, 0.08) 52%, rgba(8, 10, 10, 0.52) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  min-width: 0;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-weight: 720;
  font-size: 0.9rem;
}

.eyebrow.dark {
  color: #0b6f4d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 4.6rem;
  line-height: 0.98;
  font-weight: 760;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.8rem;
  line-height: 1.06;
  font-weight: 740;
}

h3 {
  font-size: 1.32rem;
  line-height: 1.18;
  font-weight: 720;
}

.hero-copy {
  max-width: 710px;
  color: rgba(245, 244, 239, 0.82);
  font-size: 1.22rem;
}

.hero-copy a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button.primary {
  color: var(--paper-ink);
  background: var(--green);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #a2ffd0;
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 190px));
  gap: 12px;
  margin: 0;
}

.hero-metrics div {
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 10, 10, 0.55);
  backdrop-filter: blur(12px);
}

.hero-metrics dt {
  margin-bottom: 4px;
  color: var(--green);
  font-size: 1.7rem;
  font-weight: 780;
}

.hero-metrics dd {
  margin: 0;
  color: rgba(245, 244, 239, 0.7);
  font-size: 0.9rem;
}

.section {
  padding: 104px 28px;
  background: var(--black);
}

.section-light {
  background: var(--paper);
  color: var(--paper-ink);
}

.section-inner {
  width: 100%;
  max-width: var(--max);
  min-width: 0;
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 48px;
  align-items: start;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  color: var(--ink-muted);
  max-width: 760px;
  font-size: 1.05rem;
}

.section-light .section-heading p:not(.eyebrow),
.section-light .section-copy p:not(.eyebrow) {
  color: var(--paper-muted);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 760px;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.comparison article,
.architecture article,
.outcome-grid article {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
  padding: 22px;
}

.comparison article {
  min-height: 230px;
}

.comparison span,
.tier-label,
.architecture span {
  display: block;
  margin-bottom: 44px;
  color: var(--paper-muted);
  font-weight: 720;
  font-size: 0.82rem;
}

.comparison article.active {
  color: var(--ink);
  background: #0f1614;
  border-color: rgba(12, 120, 82, 0.5);
}

.comparison article.active span,
.comparison article.active p {
  color: rgba(245, 244, 239, 0.74);
}

.comparison p,
.architecture p,
.outcome-grid p,
.device-copy p {
  color: inherit;
  opacity: 0.72;
}

.architecture {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 42px;
}

.architecture article {
  position: relative;
  min-height: 260px;
}

.architecture article::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 74px;
  height: 1px;
  background: var(--line-dark);
}

.episode-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 24px;
  align-items: stretch;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  overflow: hidden;
}

.episode-media {
  min-height: 360px;
  background: #050606;
}

.episode-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.episode-copy {
  padding: 28px;
  align-self: center;
}

.signal-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line-dark);
  color: var(--paper-muted);
}

.hardware {
  background: #0a0d0d;
}

.hardware .section-heading .text-link {
  display: inline-flex;
  margin-top: 8px;
}

.hardware-page .site-header {
  background: rgba(8, 10, 10, 0.94);
  border-color: var(--line);
}

.hardware-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 650px;
  height: 82svh;
  max-height: 860px;
  padding: 120px 28px 60px;
  overflow: hidden;
  background: #9aebc1;
  color: #06100b;
}

.hardware-hero-image,
.hardware-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hardware-hero-image {
  object-fit: cover;
  object-position: 78% center;
}

.hardware-hero-shade {
  background: linear-gradient(90deg, rgba(217, 255, 235, 0.98) 0%, rgba(217, 255, 235, 0.88) 34%, rgba(217, 255, 235, 0.2) 67%, rgba(217, 255, 235, 0) 100%);
}

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

.hardware-hero h1 {
  max-width: 660px;
  margin-bottom: 22px;
  color: #06100b;
  font-size: 4.35rem;
}

.hardware-hero-content > p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(6, 16, 11, 0.74);
  font-size: 1.16rem;
}

.hardware-hero-content > p a {
  color: #064a35;
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.button.hardware-primary {
  background: #06100b;
  color: var(--green);
}

.button.hardware-primary:hover,
.button.hardware-primary:focus-visible {
  background: #173029;
}

.button.hardware-secondary {
  border-color: rgba(6, 16, 11, 0.28);
  color: #06100b;
  background: rgba(255, 255, 255, 0.35);
}

.button.hardware-secondary:hover,
.button.hardware-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.62);
}

.hardware-intro {
  padding: 84px 28px;
  background: var(--paper);
  color: var(--paper-ink);
}

.hardware-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 72px;
  align-items: end;
}

.hardware-intro h2,
.hardware-intro p {
  margin-bottom: 0;
}

.hardware-intro-grid > p {
  color: var(--paper-muted);
  font-size: 1.08rem;
}

.hardware-product {
  padding: 96px 28px;
}

.hardware-product-v1 {
  background: #e7eee9;
  color: var(--paper-ink);
}

.hardware-product-l1 {
  background: #080a0a;
  color: var(--ink);
}

.hardware-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 64px;
  align-items: center;
}

.hardware-product-grid.reverse .hardware-product-media {
  order: 2;
}

.hardware-product-media {
  min-height: 430px;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  overflow: hidden;
}

.hardware-product-media.mint {
  background: #92ebbf;
}

.hardware-product-media.dark {
  border: 1px solid var(--line);
  background: #020303;
}

.hardware-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hardware-product-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--paper-muted);
  font-size: 1.06rem;
}

.hardware-product-l1 .hardware-product-copy > p:not(.eyebrow) {
  color: var(--ink-muted);
}

.hardware-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin: 0;
}

.hardware-specs div {
  min-height: 108px;
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
}

.hardware-product-l1 .hardware-specs div {
  border-color: var(--line);
}

.hardware-specs dt {
  margin-bottom: 8px;
  color: #0b6f4d;
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.hardware-product-l1 .hardware-specs dt {
  color: var(--cyan);
}

.hardware-specs dd {
  margin: 0;
  font-weight: 680;
}

.hardware-comparison {
  padding: 96px 28px;
  background: #f1f1e8;
  color: var(--paper-ink);
}

.comparison-table-wrap {
  overflow-x: auto;
  border-top: 2px solid #0d1110;
  border-bottom: 1px solid var(--line-dark);
}

.hardware-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  text-align: left;
}

.hardware-table th,
.hardware-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-dark);
}

.hardware-table thead th {
  color: #0b6f4d;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.hardware-table tbody th {
  width: 34%;
  font-weight: 720;
}

.hardware-table tbody td {
  color: var(--paper-muted);
}

.hardware-contract {
  padding: 96px 28px;
  background: #101414;
}

.hardware-contract .section-heading p:not(.eyebrow) {
  color: var(--ink-muted);
}

.hardware-contract-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hardware-contract-grid article {
  min-height: 240px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.hardware-contract-grid article:last-child {
  border-right: 0;
}

.hardware-contract-grid span {
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 760;
}

.hardware-contract-grid h3 {
  margin: 48px 0 12px;
}

.hardware-contract-grid p {
  color: var(--ink-muted);
}

.hardware-cta {
  padding: 76px 28px;
  background: var(--cyan);
  color: #06100b;
}

.hardware-cta .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.hardware-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.ego-hero {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 680px;
  height: 82svh;
  max-height: 900px;
  padding: 132px 28px 64px;
  overflow: hidden;
}

.ego-hero-video,
.ego-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ego-hero-video {
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(1.08) contrast(1.08);
}

.ego-hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 10, 10, 0.94) 0%, rgba(8, 10, 10, 0.72) 48%, rgba(8, 10, 10, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 10, 10, 0.88) 0%, rgba(8, 10, 10, 0.04) 62%, rgba(8, 10, 10, 0.48) 100%);
}

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

.ego-hero h1 {
  max-width: 760px;
  font-size: 4.6rem;
}

.ego-hero-content > p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(245, 244, 239, 0.82);
  font-size: 1.18rem;
}

.ego-definition {
  padding: 96px 28px;
  background: var(--paper);
  color: var(--paper-ink);
}

.ego-definition-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 72px;
  align-items: start;
}

.ego-definition-grid h2 {
  margin-bottom: 0;
}

.ego-definition-grid > div:last-child {
  max-width: 720px;
}

.ego-definition-grid > div:last-child > p:last-child {
  margin-bottom: 0;
  color: var(--paper-muted);
  font-size: 1.05rem;
}

.ego-definition-lead {
  margin-bottom: 24px;
  font-size: 1.42rem;
  line-height: 1.45;
}

.ego-signals {
  padding: 96px 28px;
  background: #0a0d0d;
}

.ego-signals .section-heading p:not(.eyebrow) {
  color: var(--ink-muted);
}

.ego-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.ego-signal-grid article {
  min-height: 226px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ego-signal-grid span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.ego-signal-grid h3 {
  margin: 46px 0 12px;
}

.ego-signal-grid p {
  color: var(--ink-muted);
}

.ego-comparison {
  padding: 96px 28px;
  background: #e7eee9;
  color: var(--paper-ink);
}

.ego-table tbody td:first-of-type {
  color: #173d31;
  font-weight: 680;
}

.ego-pipeline {
  padding: 96px 28px;
  background: #111817;
}

.ego-pipeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.ego-pipeline-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.ego-pipeline-grid span {
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 760;
}

.ego-pipeline-grid h3 {
  margin: 52px 0 12px;
}

.ego-pipeline-grid p {
  color: var(--ink-muted);
}

.ego-use-cases {
  padding: 96px 28px;
  background: var(--paper);
  color: var(--paper-ink);
}

.ego-use-cases .outcome-grid article {
  border: 1px solid var(--line-dark);
  color: var(--paper-ink);
}

.ego-use-cases .outcome-grid p {
  color: var(--paper-muted);
}

.ego-faq {
  padding: 96px 28px;
  background: #080a0a;
}

.ego-faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 72px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 22px 40px 22px 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 720;
}

.faq-list details p {
  max-width: 720px;
  padding: 0 0 24px;
  margin: 0;
  color: var(--ink-muted);
}

.faq-list a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ego-cta {
  padding: 76px 28px;
  background: var(--amber);
  color: #06100b;
}

.ego-cta .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.ego-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.device-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 16px;
}

.device-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.device-image {
  min-height: 280px;
  display: grid;
  place-items: center;
  background: #101615;
}

.device-card.large .device-image {
  min-height: 420px;
}

.device-image.mint {
  background: #92ebbf;
}

.device-image.transparent {
  background: #050606;
}

.device-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.device-copy {
  padding: 26px;
}

.device-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.device-copy li {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: rgba(245, 244, 239, 0.76);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.9rem;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.outcome-grid article {
  min-height: 210px;
}

.blog {
  background: #0a0d0d;
}

.blog-page {
  background: var(--black);
}

.blog-page-hero {
  padding: 176px 28px 96px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 10, 10, 0.96), rgba(8, 10, 10, 0.7)),
    url("resource/data-sample-poster.jpg") center / cover no-repeat;
}

.blog-page-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: 4.35rem;
}

.blog-page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(245, 244, 239, 0.76);
  font-size: 1.18rem;
}

.blog-listing {
  background: #0a0d0d;
}

.blog-listing-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.blog-listing-heading h2,
.blog-listing-heading p {
  margin-bottom: 0;
}

.blog-listing-heading p {
  color: var(--ink-muted);
}

.blog-contact {
  padding: 76px 28px;
  background: var(--green);
  color: #06100b;
}

.blog-contact .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.blog-contact h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.blog-contact .button.primary {
  flex: 0 0 auto;
  background: #06100b;
  color: var(--green);
}

.blog .section-heading p:not(.eyebrow) {
  color: var(--ink-muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 16px;
}

.blog-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.72fr) minmax(0, 1.28fr);
  min-height: 264px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.blog-card.featured {
  grid-row: span 2;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(300px, 1.1fr) auto;
}

.blog-card:hover,
.blog-card:focus-visible {
  border-color: rgba(124, 255, 186, 0.56);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
  outline: none;
}

.blog-media {
  min-height: 250px;
  background: #060808;
  overflow: hidden;
}

.blog-media.compact {
  min-height: 264px;
}

.blog-media.mint {
  background: #92ebbf;
}

.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.blog-media.compact img {
  object-fit: contain;
}

.blog-card:hover .blog-media img,
.blog-card:focus-visible .blog-media img {
  transform: scale(1.025);
}

.blog-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px;
}

.blog-card.featured .blog-copy {
  padding: 28px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 680;
}

.blog-copy h3 {
  margin-bottom: 12px;
}

.blog-card.featured h3 {
  max-width: 640px;
  font-size: 1.75rem;
}

.blog-copy p {
  margin-bottom: 24px;
  color: var(--ink-muted);
}

.text-link {
  margin-top: auto;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 720;
}

.article-page {
  background: var(--paper);
  color: var(--paper-ink);
}

.article-page .site-header {
  background: rgba(8, 10, 10, 0.94);
  border-color: var(--line);
}

.article-main {
  padding: 150px 28px 100px;
}

.article-shell {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.article-back {
  display: inline-flex;
  margin-bottom: 48px;
  color: #0b6f4d;
  font-weight: 720;
}

.article-header {
  margin-bottom: 44px;
}

.article-header h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: 4rem;
  color: var(--paper-ink);
}

.article-deck {
  max-width: 720px;
  color: var(--paper-muted);
  font-size: 1.22rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  color: var(--paper-muted);
  font-size: 0.88rem;
  font-weight: 680;
}

.article-hero {
  width: 100%;
  margin-bottom: 48px;
  border-radius: var(--radius);
  background: #080a0a;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-device-image {
  object-fit: contain;
}

.article-device-image.mint {
  background: #92ebbf;
}

.article-body {
  max-width: 720px;
  color: #28302d;
  font-size: 1.08rem;
  line-height: 1.72;
}

.article-body h2 {
  margin-top: 48px;
  color: var(--paper-ink);
  font-size: 1.85rem;
}

.article-body p,
.article-body ul {
  margin-bottom: 24px;
}

.article-body li {
  margin-bottom: 10px;
}

.article-body a {
  color: #0b6f4d;
  font-weight: 680;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-cta {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}

.article-cta .button.primary {
  background: #0b6f4d;
  color: #fff;
}

.lead-section {
  padding: 96px 28px;
  background: var(--green);
  color: #06100b;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: start;
}

.lead-copy .eyebrow {
  color: #0b5c42;
}

.lead-copy h2 {
  max-width: 720px;
  margin-bottom: 20px;
}

.lead-copy p {
  max-width: 580px;
  color: rgba(6, 16, 11, 0.72);
  font-size: 1.05rem;
}

.lead-copy a {
  display: inline-flex;
  margin-top: 10px;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(6, 16, 11, 0.16);
  border-radius: var(--radius);
  background: #06100b;
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(245, 244, 239, 0.82);
  font-size: 0.86rem;
  font-weight: 680;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(245, 244, 239, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

.lead-form textarea {
  min-height: 128px;
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(245, 244, 239, 0.42);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(124, 255, 186, 0.16);
}

.lead-form select option {
  color: #06100b;
}

.lead-form .button.primary {
  background: #06100b;
  border-color: var(--green);
  color: var(--green);
  cursor: pointer;
}

.lead-form .button.primary:hover,
.lead-form .button.primary:focus-visible {
  background: var(--green);
  color: #06100b;
}

.lead-form .button.primary:disabled {
  cursor: wait;
  opacity: 0.64;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(245, 244, 239, 0.72);
  font-size: 0.92rem;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: #ffb58d;
}

.form-status a {
  color: var(--green);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-inner .button.primary {
  background: #06100b;
  color: var(--ink);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  color: rgba(245, 244, 239, 0.68);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 720;
}

.site-footer img {
  width: 34px;
  height: 34px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 960px) {
  .site-header {
    padding: 10px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 12px auto 12px;
    display: none;
    grid-template-columns: 1fr;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 10, 10, 0.96);
    backdrop-filter: blur(18px);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .article-page .article-nav {
    position: static;
    inset: auto;
    display: flex;
    grid-template-columns: none;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .article-nav a:not(.nav-cta):not(.is-current) {
    display: none;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .hero {
    min-height: 86svh;
    height: auto;
    max-height: none;
    padding: 112px 18px 46px;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-copy {
    font-size: 1.06rem;
  }

  .hero-metrics,
  .split,
  .comparison,
  .architecture,
  .episode-panel,
  .device-grid,
  .outcome-grid,
  .blog-grid,
  .lead-grid,
  .form-row,
  .hardware-intro-grid,
  .hardware-product-grid,
  .hardware-contract-grid,
  .ego-definition-grid,
  .ego-signal-grid,
  .ego-pipeline-grid,
  .ego-faq-grid {
    grid-template-columns: 1fr;
  }

  .hardware-hero {
    min-height: 620px;
    height: 80svh;
    padding: 118px 18px 48px;
  }

  .hardware-hero-image {
    object-position: 64% center;
  }

  .hardware-hero-shade {
    background: linear-gradient(0deg, rgba(217, 255, 235, 0.98) 0%, rgba(217, 255, 235, 0.82) 54%, rgba(217, 255, 235, 0.18) 100%);
  }

  .hardware-hero {
    align-items: end;
  }

  .hardware-hero h1 {
    max-width: 620px;
    font-size: 3.2rem;
  }

  .hardware-intro,
  .hardware-product,
  .hardware-comparison,
  .hardware-contract {
    padding: 76px 18px;
  }

  .hardware-intro-grid,
  .hardware-product-grid {
    gap: 36px;
  }

  .hardware-product-grid.reverse .hardware-product-media {
    order: 0;
  }

  .hardware-product-media {
    min-height: 300px;
  }

  .hardware-contract-grid article,
  .hardware-contract-grid article:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hardware-contract-grid article:last-child {
    border-bottom: 0;
  }

  .hardware-contract-grid h3 {
    margin-top: 24px;
  }

  .hardware-cta {
    padding: 64px 18px;
  }

  .hardware-cta .section-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .ego-hero {
    min-height: 620px;
    height: 80svh;
    padding: 116px 18px 48px;
  }

  .ego-hero h1 {
    font-size: 3.2rem;
  }

  .ego-definition,
  .ego-signals,
  .ego-comparison,
  .ego-pipeline,
  .ego-use-cases,
  .ego-faq {
    padding: 76px 18px;
  }

  .ego-definition-grid,
  .ego-faq-grid {
    gap: 36px;
  }

  .ego-signal-grid {
    border-top: 1px solid var(--line);
  }

  .ego-signal-grid article {
    min-height: 0;
  }

  .ego-signal-grid h3,
  .ego-pipeline-grid h3 {
    margin-top: 26px;
  }

  .ego-pipeline-grid article {
    min-height: 0;
  }

  .ego-cta {
    padding: 64px 18px;
  }

  .ego-cta .section-inner {
    align-items: flex-start;
    flex-direction: column;
  }

.comparison article,
.architecture article,
.outcome-grid article {
    min-height: auto;
  }

  .blog-card.featured {
    grid-row: auto;
  }

  .comparison span {
    margin-bottom: 24px;
  }

  .section {
    padding: 76px 18px;
  }

  .episode-media {
    min-height: 260px;
  }

  .device-card.large .device-image,
  .device-image {
    min-height: 300px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-main {
    padding: 124px 18px 76px;
  }

  .blog-page-hero {
    padding: 148px 18px 76px;
  }

  .blog-page-hero h1 {
    font-size: 3.2rem;
  }

  .blog-listing-heading,
  .blog-contact .section-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-header h1 {
    font-size: 3rem;
  }
}

@media (max-width: 600px) {
  .brand span {
    font-size: 0.94rem;
  }

  .hero {
    display: block;
    min-height: 84svh;
    padding: 112px 18px 40px;
  }

  .hero-content,
  .hero-copy,
  .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: 2.55rem;
    max-width: 340px;
    line-height: 1.02;
  }

  h2 {
    font-size: 1.9rem;
  }

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

  .hero-metrics div {
    min-height: auto;
  }

  .device-copy ul {
    grid-template-columns: 1fr;
  }

  .lead-section {
    padding: 70px 18px;
  }

  .blog-card,
  .blog-card.featured {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .blog-media,
  .blog-media.compact {
    min-height: 220px;
  }

  .article-header h1 {
    font-size: 2.5rem;
  }

  .blog-page-hero h1 {
    font-size: 2.7rem;
  }

  .blog-contact {
    padding: 64px 18px;
  }
}

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