:root {
  --surface: #ffffff;
  --surface-warm: #fcf9f8;
  --surface-alt: #f7f7f7;
  --surface-soft: #f2f4f7;
  --surface-line: #e5e7eb;
  --text: #111111;
  --text-strong: #050505;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --accent: #2563eb;
  --accent-deep: #0051d5;
  --success: #16a34a;
  --success-bg: #dcfce7;
  --security: #0f766e;
  --danger: #dc2626;
  --warning: #f59e0b;
  --warning-bg: #fef3c7;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.04);
  --container: 1280px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--surface-warm);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.search-is-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

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

button {
  cursor: pointer;
}

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

.material-symbols-outlined {
  font-family: "Material Symbols Outlined", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.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;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.section--soft {
  background: var(--surface-alt);
  border-block: 1px solid var(--surface-line);
}

.section__heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.eyebrow {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 12px;
}

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

h1,
h2,
h3,
h4,
.brand,
.button,
.product-title {
  font-family: Manrope, Inter, system-ui, sans-serif;
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 28px;
}

.page-title {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.lead {
  color: var(--text-secondary);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
  max-width: 700px;
}

.muted {
  color: var(--text-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 249, 248, 0.88);
  border-bottom: 1px solid var(--surface-line);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.site-header__inner {
  height: var(--header-height);
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-strong);
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
}

.brand__logo {
  width: 26px;
  height: 26px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: auto;
  margin-left: 24px;
}

.site-nav a,
.mobile-menu a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text-strong);
  border-color: var(--text-strong);
}

.mobile-menu a:hover,
.mobile-menu a.is-active {
  color: var(--text-strong);
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background: transparent;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.icon-button:hover {
  background: var(--surface-soft);
  color: var(--text-strong);
}

.icon-button:active,
.button:active {
  transform: scale(0.97);
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  border-top: 1px solid var(--surface-line);
  background: var(--surface);
  padding: 18px 20px 24px;
}

.mobile-menu nav {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button--primary {
  background: var(--text-strong);
  color: #ffffff;
}

.button--primary:hover {
  background: #313030;
}

.button--secondary {
  background: var(--surface);
  color: var(--text-strong);
  border-color: var(--surface-line);
}

.button--secondary:hover {
  border-color: var(--accent);
}

.button--ghost {
  color: var(--accent-deep);
  padding-inline: 0;
}

.button--compact {
  min-height: 38px;
  padding: 9px 15px;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 88px 0 76px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-visual {
  min-height: 520px;
  border: 1px solid var(--surface-line);
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.hero-visual__image {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(0.88);
  transform: scale(1.01);
}

.hero-visual__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.18));
}

.hero-visual__tile {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.58);
  color: #fff;
  backdrop-filter: blur(16px);
}

.hero-visual__tile strong {
  font-family: Manrope, Inter, sans-serif;
  font-size: 18px;
}

.hero-visual__rows {
  display: grid;
  gap: 8px;
}

.hero-visual__rows span {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-visual__rows span:nth-child(1) {
  width: 78%;
}

.hero-visual__rows span:nth-child(2) {
  width: 52%;
}

.hero-visual__rows span:nth-child(3) {
  width: 66%;
  background: rgba(37, 99, 235, 0.45);
}

.ecosystem-strip {
  border-block: 1px solid var(--surface-line);
  background: var(--surface);
  padding: 30px 0;
}

.ecosystem-strip__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.category-pill {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--surface-warm);
  border: 1px solid var(--surface-line);
  border-radius: 8px;
  color: var(--text-secondary);
  font-weight: 600;
}

.category-pill .material-symbols-outlined {
  color: var(--text-muted);
}

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

.product-card {
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: 8px;
  padding: 30px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.product-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  color: var(--text-strong);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.1);
  flex-shrink: 0;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

a.product-icon:hover,
a.product-icon:focus-visible {
  background: #f8fbff;
  border-color: rgba(47, 91, 255, 0.28);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16), 0 0 0 4px rgba(47, 91, 255, 0.12);
  outline: none;
  transform: translateY(-2px) scale(1.04);
}

a.product-icon:active {
  transform: translateY(0) scale(0.98);
}

.product-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
}

.product-card h2,
.product-card h3 {
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 2px;
}

.product-card p {
  color: var(--text-secondary);
  margin-bottom: auto;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip,
.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--surface-soft);
  border: 1px solid var(--surface-line);
}

.status {
  border-radius: 999px;
}

.status--live {
  color: var(--success);
  background: var(--success-bg);
  border-color: transparent;
}

.status--pipeline {
  color: var(--warning);
  background: var(--warning-bg);
  border-color: transparent;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-deep);
  font-size: 14px;
  font-weight: 700;
}

.link-arrow .material-symbols-outlined {
  font-size: 18px;
}

.link-arrow:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.pipeline-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.pipeline-step {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: 8px;
  font-weight: 700;
  color: var(--text-secondary);
}

.pipeline-step.is-current {
  color: var(--text-strong);
  border-color: var(--accent);
  box-shadow: var(--shadow-soft);
}

.pipeline-step__icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-soft);
  color: var(--text-muted);
}

.pipeline-step.is-current .pipeline-step__icon {
  color: var(--warning);
  background: var(--warning-bg);
}

.pipeline-arrow {
  color: #c4c7c7;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.social-cta {
  padding: 104px 0;
  border-block: 1px solid var(--surface-line);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.1), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

.social-cta__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(540px, 1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.social-cta__copy {
  max-width: 620px;
}

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

.social-follow__item {
  min-height: 132px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--surface-line);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(135deg, var(--social-bg), transparent 70%),
    var(--surface);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.social-follow__item:hover {
  border-color: var(--social-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.social-follow__icon {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--social-color);
  color: var(--social-ink, #fff);
}

.social-follow__icon img {
  width: 29px;
  height: 29px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.social-follow__item--linkedin .social-follow__icon {
  background: #ffffff;
  border: 1px solid rgba(10, 102, 194, 0.18);
}

.social-follow__item--linkedin .social-follow__icon img {
  width: 42px;
  height: 42px;
  filter: none;
}

.social-follow__item strong,
.social-follow__item span span {
  display: block;
}

.social-follow__item strong {
  color: var(--text-strong);
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 4px;
}

.social-follow__item span span {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
}

.social-follow__item--facebook {
  --social-color: #1877f2;
  --social-bg: rgba(24, 119, 242, 0.09);
}

.social-follow__item--x {
  --social-color: #050505;
  --social-bg: rgba(5, 5, 5, 0.07);
}

.social-follow__item--instagram {
  --social-color: #d62976;
  --social-bg: rgba(214, 41, 118, 0.1);
}

.social-follow__item--instagram .social-follow__icon {
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 28%, #d62976 56%, #962fbf 78%, #4f5bd5 100%);
}

.social-follow__item--linkedin {
  --social-color: #0a66c2;
  --social-bg: rgba(10, 102, 194, 0.1);
}

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

.feature-card,
.info-card,
.roadmap-card {
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: 8px;
  padding: 26px;
}

.feature-card .material-symbols-outlined,
.info-card .material-symbols-outlined {
  color: var(--accent-deep);
  margin-bottom: 22px;
}

.feature-card h3,
.info-card h2,
.info-card h3,
.roadmap-card h2,
.roadmap-card h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.feature-card p,
.info-card p,
.roadmap-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.product-visual {
  min-height: 470px;
  border-radius: 8px;
  border: 1px solid var(--surface-line);
  overflow: hidden;
  position: relative;
  background: #141b1d;
}

.product-visual__image {
  position: absolute;
  inset: 0;
  background-image: var(--product-image);
  background-position: center;
  background-size: cover;
}

.interface-mockup {
  min-height: 470px;
  border-radius: 8px;
  border: 1px solid var(--surface-line);
  background:
    linear-gradient(145deg, rgba(37, 99, 235, 0.14), transparent 32%),
    #101416;
  padding: 30px;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.interface-window {
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  padding: 22px;
  display: grid;
  gap: 16px;
}

.interface-window__bar {
  display: flex;
  gap: 7px;
  margin-bottom: 8px;
}

.interface-window__bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.interface-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.interface-row__avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent);
}

.interface-row__lines {
  display: grid;
  gap: 7px;
}

.interface-row__lines span {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}

.interface-row__lines span:first-child {
  width: 72%;
}

.interface-row__lines span:last-child {
  width: 48%;
}

.interface-row__meta {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.principles {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  border-top: 1px solid var(--surface-line);
  padding-top: 48px;
}

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

.principle {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
}

.principle .material-symbols-outlined {
  color: var(--text-strong);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.roadmap-card {
  position: relative;
  overflow: hidden;
}

.roadmap-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--surface-line);
}

.roadmap-card.is-active::before {
  background: var(--accent);
}

.roadmap-card.is-testing::before {
  background: var(--warning);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-soft);
}

.contact-card__details {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: var(--text-secondary);
  font-style: normal;
  font-weight: 700;
}

.contact-card__details > span,
.contact-card__details > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  text-decoration: none;
}

.contact-card__details > a:hover {
  color: var(--text-strong);
}

.contact-card__details .material-symbols-outlined {
  flex-shrink: 0;
  margin-bottom: 0;
  color: var(--accent);
  font-size: 20px;
}

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

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.field--full {
  grid-column: 1 / -1;
}

.form-trap {
  display: none;
}

label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-strong);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--surface-line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  min-height: 44px;
  padding: 10px 13px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

input:focus,
textarea:focus,
select:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.products-toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.products-toolbar__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 34px;
}

.filter-chip {
  border: 1px solid var(--surface-line);
  background: var(--surface);
  color: var(--text-secondary);
  border-radius: 999px;
  min-height: 36px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
}

.filter-chip.is-active,
.filter-chip:hover {
  color: var(--text-strong);
  border-color: var(--accent);
}

.product-results-meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--surface-line);
  padding: 48px 0 24px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(420px, 0.95fr) minmax(360px, 0.95fr);
  gap: 40px;
  align-items: start;
}

.site-footer__brand p,
.newsletter p,
.site-footer__bottom p {
  color: var(--text-muted);
  font-size: 14px;
}

.legal-line,
.footer-contact {
  font-weight: 700;
}

.footer-contact {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 14px;
  font-style: normal;
}

.footer-contact > span,
.footer-contact > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--text-strong);
}

.footer-contact .material-symbols-outlined {
  color: var(--accent);
  flex-shrink: 0;
  font-size: 20px;
}

.newsletter label,
.site-footer__links h2 {
  display: block;
  margin-bottom: 8px;
  color: var(--text-strong);
  font-size: 14px;
  font-weight: 800;
}

.newsletter__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsletter {
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

.form-note {
  color: var(--security) !important;
  font-weight: 700;
  line-height: 1.5;
}

.form-note.is-error {
  color: var(--danger) !important;
}

button:disabled {
  cursor: wait;
  opacity: 0.68;
}

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

.site-footer__links a {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  margin: 7px 0;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-footer__links a:hover {
  color: var(--text-strong);
}

.site-footer__bottom {
  border-top: 1px solid var(--surface-line);
  margin-top: 32px;
  padding-top: 18px;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.search-overlay__panel {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.search-overlay__bar {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid var(--surface-line);
  padding: 18px max(20px, calc((100vw - var(--container)) / 2));
  background: var(--surface);
}

.search-overlay__bar input {
  border: 0;
  box-shadow: none;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  min-width: 0;
  padding: 0;
}

.search-overlay__bar input:focus {
  box-shadow: none;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
  -webkit-appearance: none;
  appearance: none;
}

kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 28px;
  border: 1px solid var(--surface-line);
  border-radius: 4px;
  background: var(--surface-soft);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  padding: 2px 7px;
}

.search-overlay__body {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  padding: 28px 0 80px;
  overflow-y: auto;
}

.search-label {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.search-results {
  display: grid;
  gap: 12px;
}

.search-result {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--surface-line);
  border-radius: 4px;
  background: var(--surface);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.search-result:hover,
.search-result.is-active {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.search-result h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.search-result p {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.search-result mark {
  color: inherit;
  background: #dbeafe;
  border-radius: 4px;
  padding: 0 3px;
}

.search-empty {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text-secondary);
}

.search-empty .material-symbols-outlined {
  font-size: 44px;
  color: #c4c7c7;
}

.search-empty h2 {
  color: var(--text-strong);
  margin: 18px 0 6px;
}

.search-overlay__keys {
  min-height: 54px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  border-top: 1px solid var(--surface-line);
  background: var(--surface-alt);
  padding: 12px 20px;
  color: var(--text-muted);
  font-weight: 700;
}

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  margin-top: 38px;
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

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

  .site-actions .button--compact {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid,
  .split,
  .social-cta__grid,
  .contact-grid,
  .principles,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .newsletter {
    max-width: none;
    justify-self: stretch;
  }

  .hero-visual,
  .product-visual,
  .interface-mockup {
    min-height: 380px;
  }

  .ecosystem-strip__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .roadmap-grid,
  .site-footer__links,
  .principle-list {
    grid-template-columns: 1fr 1fr;
  }

  .pipeline-steps {
    grid-template-columns: 1fr;
  }

  .pipeline-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .container,
  .site-header__inner,
  .search-overlay__body {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .social-cta {
    padding: 72px 0;
  }

  .social-follow {
    grid-template-columns: 1fr;
  }

  .social-follow__item {
    min-height: 112px;
    padding: 18px;
  }

  .hero {
    padding: 58px 0;
  }

  .hero__actions,
  .newsletter__row,
  .products-toolbar {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .button,
  .newsletter__row .button {
    width: 100%;
  }

  .product-grid,
  .feature-grid,
  .roadmap-grid,
  .about-grid,
  .principle-list,
  .form-grid,
  .ecosystem-strip__row {
    grid-template-columns: 1fr;
  }

  .site-footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 24px;
  }

  .product-card,
  .feature-card,
  .info-card,
  .roadmap-card {
    padding: 22px;
  }

  .category-pill {
    min-height: 58px;
  }

  .search-overlay__bar {
    grid-template-columns: auto 1fr auto;
    min-height: 78px;
    padding: 16px;
  }

  .search-overlay__bar kbd {
    display: none !important;
  }

  .search-result {
    grid-template-columns: 1fr;
  }

  .search-result .product-icon {
    display: none;
  }

  .search-result h3 {
    font-size: 24px;
  }

  .search-overlay__keys {
    display: none;
  }
}

.hero-os {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 46px 0 52px;
  overflow: hidden;
}

.hero-os--home {
  background:
    radial-gradient(circle at 18% 16%, rgba(37, 99, 235, 0.08), transparent 28%),
    linear-gradient(180deg, #fffefd 0%, #f6f7f9 100%);
}

.hero-os__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(620px, 1.22fr);
  gap: clamp(34px, 4.5vw, 64px);
  align-items: center;
}

.hero-os__copy {
  max-width: 620px;
}

.hero-os__title {
  font-size: clamp(44px, 5.35vw, 76px);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.hero-os__lead {
  max-width: 590px;
  color: var(--text-secondary);
  font-size: clamp(17px, 1.65vw, 19px);
  line-height: 1.55;
}

.hero-os__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.product-system {
  min-height: 560px;
  border: 1px solid rgba(17, 24, 39, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.28), transparent 24%),
    linear-gradient(180deg, #111827 0%, #071014 100%);
  color: #fff;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.24);
  overflow: hidden;
  position: relative;
}

.product-system::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 84%);
  pointer-events: none;
}

.product-system__topbar {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  position: relative;
  z-index: 1;
}

.product-system__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-weight: 800;
}

.brand__logo--system {
  width: 24px;
  height: 24px;
}

.product-system__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.product-system__status span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.14);
}

.product-system__body {
  min-height: 504px;
  display: grid;
  grid-template-columns: 74px 1fr;
  position: relative;
  z-index: 1;
}

.product-system__rail {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.product-system__rail > span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.06);
}

.product-system__rail > span.is-active {
  color: #fff;
  background: #2563eb;
}

.product-system__main {
  padding: 18px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 14px;
}

.command-bar {
  min-height: 46px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.command-bar kbd {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.command-bar:focus-within {
  border-color: rgba(119, 151, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
}

.command-bar input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
}

.command-bar input::placeholder {
  color: rgba(255, 255, 255, 0.62);
  opacity: 1;
}

.command-bar input::-webkit-search-cancel-button {
  filter: invert(1) opacity(0.72);
}

.system-metrics {
  display: grid;
  grid-template-columns: 0.7fr 0.85fr 1.15fr;
  gap: 10px;
}

.system-metrics div {
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
}

.system-metrics span,
.system-panel__heading span,
.app-window__meta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.system-metrics strong {
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1;
}

.system-board {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 14px;
}

.product-system--apps-only .system-board {
  grid-template-columns: 1fr;
}

.product-system--apps-only .app-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-system--apps-only .app-window {
  grid-template-columns: auto 1fr;
  align-content: start;
}

.product-system--apps-only .app-window__meta {
  grid-column: 1 / -1;
  justify-items: start;
  text-align: left;
}

.system-panel {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(4, 11, 14, 0.62);
  overflow: hidden;
}

.system-panel__heading {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.system-panel__heading div {
  display: grid;
  gap: 3px;
}

.system-panel__heading strong {
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.2;
}

.app-stack {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.app-stack__empty {
  grid-column: 1 / -1;
  min-height: 86px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.app-window {
  display: grid;
  grid-template-columns: auto 1fr minmax(112px, auto);
  gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.app-window__icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #111827;
  flex-shrink: 0;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

a.app-window__icon:hover,
a.app-window__icon:focus-visible {
  background: #f8fbff;
  border-color: rgba(119, 151, 255, 0.74);
  box-shadow: 0 12px 24px rgba(47, 91, 255, 0.28), 0 0 0 4px rgba(119, 151, 255, 0.18);
  outline: none;
  transform: translateY(-2px) scale(1.06);
}

a.app-window__icon:active {
  transform: translateY(0) scale(0.98);
}

.app-window__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 6px;
}

.app-window h2 {
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.app-window p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12.5px;
  line-height: 1.4;
  margin-bottom: 0;
}

.app-window__meta {
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
}

.app-window__meta strong {
  display: inline-flex;
  width: max-content;
  min-height: 24px;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  color: #86efac;
  font-size: 12px;
}

.app-window:nth-child(3) .app-window__meta strong {
  background: rgba(245, 158, 11, 0.16);
  color: #fcd34d;
}

.app-window__status--live {
  background: rgba(34, 197, 94, 0.14) !important;
  color: #86efac !important;
}

.app-window__status--pipeline {
  background: rgba(245, 158, 11, 0.16) !important;
  color: #fcd34d !important;
}

@media (max-width: 1120px) {
  .hero-os {
    min-height: auto;
  }

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

  .hero-os__copy {
    max-width: 780px;
  }

  .product-system {
    min-height: 600px;
  }
}

@media (max-width: 760px) {
  .hero-os {
    padding: 48px 0 56px;
  }

  .hero-os__title {
    font-size: clamp(42px, 13vw, 58px);
  }

  .product-system__main {
    grid-template-rows: auto 1fr;
  }

  .system-metrics {
    display: none;
  }

  .system-board {
    grid-template-columns: 1fr;
  }

  .product-system--apps-only .app-stack {
    grid-template-columns: 1fr;
  }

  .product-system {
    min-height: auto;
  }

  .product-system__topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-system__body {
    grid-template-columns: 1fr;
  }

  .product-system__rail {
    grid-auto-flow: column;
    grid-auto-columns: 42px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .command-bar {
    grid-template-columns: auto 1fr;
  }

  .command-bar kbd {
    display: none;
  }

  .app-window {
    grid-template-columns: auto 1fr;
  }

  .app-window__meta {
    grid-column: 1 / -1;
    justify-items: start;
    text-align: left;
  }
}

#hero-os-search {
  padding: 0
}

#hero-os-search:focus {
  box-shadow: none;
}