:root {
  color-scheme: dark;
  --bg: #070b10;
  --bg-2: #0a1016;
  --surface: rgba(13, 19, 25, 0.74);
  --surface-strong: rgba(15, 22, 30, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.045);
  --text: #f3f6f8;
  --muted: #abb5bf;
  --faint: #6f7b86;
  --line: rgba(205, 218, 230, 0.17);
  --line-strong: rgba(205, 218, 230, 0.28);
  --accent: #4ff08b;
  --accent-2: #18975f;
  --blue: #6ea8ff;
  --amber: #f6b455;
  --danger: #ff6d73;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
  --radius: 8px;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #eef5f0;
  --bg-2: #dfeae4;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-soft: rgba(5, 12, 18, 0.045);
  --text: #07110c;
  --muted: #43514b;
  --faint: #6d7a73;
  --line: rgba(8, 20, 14, 0.16);
  --line-strong: rgba(8, 20, 14, 0.26);
  --accent: #0c9f59;
  --accent-2: #0a7a46;
  --blue: #2a67bd;
  --amber: #98610c;
  --danger: #bc3546;
  --shadow: 0 28px 70px rgba(28, 58, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(79, 240, 139, 0.16), transparent 28rem),
    linear-gradient(130deg, var(--bg), var(--bg-2));
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body::selection {
  background: rgba(79, 240, 139, 0.35);
}

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

button {
  font: inherit;
}

.app-frame {
  min-height: 100svh;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 8rem),
    transparent;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 66px;
  padding: 12px clamp(18px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(22px);
}

.brand,
.window-title,
.header-actions,
.window-controls,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  width: max-content;
  gap: 12px;
  font-size: 1.04rem;
  font-weight: 760;
}

.brand-logo-shell,
.window-logo-shell {
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(79, 240, 139, 0.42);
  background: var(--surface-strong);
  box-shadow:
    inset 0 0 18px rgba(79, 240, 139, 0.1),
    0 0 22px rgba(79, 240, 139, 0.14);
}

.brand-logo-shell {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.window-logo-shell {
  width: 26px;
  height: 26px;
  border-radius: 6px;
}

.brand-logo-shell img,
.window-logo-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.argus-mark {
  position: relative;
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(79, 240, 139, 0.58);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(79, 240, 139, 0.26), rgba(79, 240, 139, 0.04)),
    var(--surface-strong);
  color: var(--accent);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 15px rgba(79, 240, 139, 0.85);
  box-shadow:
    inset 0 0 18px rgba(79, 240, 139, 0.11),
    0 0 24px rgba(79, 240, 139, 0.18);
}

.argus-mark.small {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  font-size: 0.94rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a,
.site-footer a {
  transition: color 160ms ease;
}

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

.header-actions {
  justify-self: end;
  gap: 10px;
}

.theme-toggle,
.header-cta,
.button,
.tab-button {
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.theme-toggle {
  display: inline-grid;
  width: 42px;
  place-items: center;
  cursor: pointer;
}

.theme-icon {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(79, 240, 139, 0.58);
}

.theme-icon::after {
  position: absolute;
  top: -3px;
  left: 6px;
  width: 13px;
  height: 19px;
  border-radius: 50%;
  background: var(--bg);
  content: "";
}

:root[data-theme="light"] .theme-icon::after {
  display: none;
}

:root[data-theme="light"] .theme-icon {
  background:
    radial-gradient(circle, var(--accent) 0 37%, transparent 39%),
    conic-gradient(
      transparent 0 7%,
      var(--accent) 7% 12%,
      transparent 12% 20%,
      var(--accent) 20% 25%,
      transparent 25% 33%,
      var(--accent) 33% 38%,
      transparent 38% 46%,
      var(--accent) 46% 51%,
      transparent 51% 59%,
      var(--accent) 59% 64%,
      transparent 64% 72%,
      var(--accent) 72% 77%,
      transparent 77% 85%,
      var(--accent) 85% 90%,
      transparent 90%
    );
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-weight: 720;
}

.theme-toggle:hover,
.header-cta:hover,
.button:hover,
.tab-button:hover {
  border-color: rgba(79, 240, 139, 0.58);
  background: color-mix(in srgb, var(--accent) 10%, var(--surface-soft));
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 86svh;
  overflow: hidden;
  padding: 78px clamp(18px, 5vw, 72px) 20px;
}

.ambient-canvas,
.orb,
.hero::before {
  position: absolute;
  pointer-events: none;
}

.ambient-canvas {
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  opacity: 0.82;
}

.hero::before {
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 50% 52%, rgba(79, 240, 139, 0.2), transparent 30rem),
    linear-gradient(90deg, transparent, rgba(79, 240, 139, 0.06), transparent);
}

.orb {
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.22;
}

.orb-left {
  bottom: 8%;
  left: 18%;
  background: rgba(79, 240, 139, 0.35);
}

.orb-right {
  right: 11%;
  bottom: 14%;
  background: rgba(110, 168, 255, 0.2);
}

.hero-inner {
  display: grid;
  max-width: 1380px;
  min-height: calc(86svh - 98px);
  grid-template-columns: minmax(360px, 0.82fr) minmax(460px, 1fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  margin: 0 auto;
}

.hero-copy {
  max-width: 650px;
  text-wrap: balance;
}

.company-logo-card,
.download-logo-card {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(79, 240, 139, 0.24);
  border-radius: 8px;
  background: rgba(242, 250, 246, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 0 30px rgba(79, 240, 139, 0.14);
}

.company-logo-card {
  margin: 0 0 12px -2px;
  overflow: hidden;
  padding: 0;
}

.company-logo,
.download-logo {
  display: block;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.company-logo {
  width: min(138px, 42vw);
}

:root[data-theme="light"] .company-logo-card,
:root[data-theme="light"] .download-logo-card {
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 40px rgba(12, 77, 47, 0.1);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(2.75rem, 5vw, 4.55rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow),
.section-heading p,
.workflow-copy p,
.feature-card p,
.download-panel p,
.download-card p {
  color: var(--muted);
}

.hero-copy p:not(.eyebrow) {
  max-width: 600px;
  margin: 18px 0 0;
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: rgba(79, 240, 139, 0.72);
  background: linear-gradient(180deg, #64ffa2, var(--accent));
  color: #04110a;
  box-shadow:
    0 0 24px rgba(79, 240, 139, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

:root[data-theme="light"] .button-primary {
  color: white;
  background: linear-gradient(180deg, #13aa63, #087142);
}

.button-secondary {
  background: color-mix(in srgb, var(--surface) 76%, transparent);
}

.hero-product {
  min-width: 0;
}

.product-window {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
    var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px);
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 54px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

.window-title {
  gap: 10px;
  font-weight: 760;
}

.window-controls {
  gap: 18px;
}

.window-controls span {
  display: block;
  width: 13px;
  height: 13px;
  border: 1.6px solid var(--text);
  opacity: 0.78;
}

.window-controls span:first-child {
  height: 1.6px;
  border: 0;
  background: var(--text);
}

.window-controls span:last-child {
  position: relative;
  border: 0;
}

.window-controls span:last-child::before,
.window-controls span:last-child::after {
  position: absolute;
  top: 6px;
  left: 0;
  width: 15px;
  height: 1.6px;
  background: var(--text);
  content: "";
}

.window-controls span:last-child::before {
  transform: rotate(45deg);
}

.window-controls span:last-child::after {
  transform: rotate(-45deg);
}

.workspace-preview {
  display: grid;
  min-height: 474px;
  grid-template-columns: 64px minmax(250px, 1fr) minmax(180px, 0.42fr);
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}

.side-dot {
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-soft);
}

.side-dot.active {
  border-color: rgba(79, 240, 139, 0.62);
  background: rgba(79, 240, 139, 0.2);
  box-shadow: 0 0 20px rgba(79, 240, 139, 0.16);
}

.chat-surface,
.control-panel,
.download-panel,
.feature-card,
.terminal-visual,
.provider-list div,
.download-card {
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.chat-surface {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
}

.status-row,
.message-card,
.composer-preview,
.control-panel div,
.terminal-top {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface-strong) 56%, transparent);
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.status-row strong {
  color: var(--accent);
}

.message-card {
  padding: 15px;
}

.message-card span,
.control-panel span,
.provider-list span,
.panel-kicker {
  display: block;
  color: var(--faint);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.message-card p {
  margin: 8px 0 0;
  color: var(--text);
}

.agent-message {
  border-color: rgba(79, 240, 139, 0.28);
}

.trace-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.trace-list i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(79, 240, 139, 0.62), transparent);
}

.trace-list i:nth-child(2) {
  width: 76%;
  background: linear-gradient(90deg, rgba(110, 168, 255, 0.56), transparent);
}

.trace-list i:nth-child(3) {
  width: 54%;
  background: linear-gradient(90deg, rgba(246, 180, 85, 0.54), transparent);
}

.composer-preview {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding: 14px;
  color: var(--faint);
}

.composer-preview b {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--accent);
}

.control-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
}

.control-panel div {
  padding: 13px;
}

.control-panel strong {
  display: block;
  margin-top: 5px;
  font-size: 0.98rem;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-strong) 82%, transparent);
}

.metric-strip div {
  min-height: 166px;
  padding: 28px clamp(20px, 4vw, 48px);
}

.metric-strip div + div {
  border-left: 1px solid var(--line);
}

.metric-strip span {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.metric-strip strong {
  display: block;
  font-size: clamp(1.15rem, 2.1vw, 1.72rem);
  line-height: 1.12;
}

.metric-strip p {
  margin: 12px 0 0;
  color: var(--muted);
}

.section-panel,
.workflow-section {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(280px, 0.82fr) minmax(260px, 0.48fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  margin: 0 auto;
}

.section-heading.narrow {
  display: block;
  max-width: 900px;
  margin: 0;
}

.section-heading p {
  margin: 0;
  font-size: 1.04rem;
}

.feature-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 38px auto 0;
}

.feature-card {
  min-height: 306px;
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(16px);
}

.feature-card p {
  margin: 16px 0 0;
}

.feature-glyph {
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 44px;
  border: 1px solid rgba(79, 240, 139, 0.36);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: inset 0 0 18px rgba(79, 240, 139, 0.1);
}

.brain-glyph {
  background:
    radial-gradient(circle at 50% 50%, var(--accent) 0 4px, transparent 5px),
    radial-gradient(circle at 27% 31%, var(--blue) 0 3px, transparent 4px),
    radial-gradient(circle at 74% 68%, var(--amber) 0 3px, transparent 4px),
    linear-gradient(45deg, transparent 48%, rgba(79, 240, 139, 0.34) 49% 51%, transparent 52%),
    var(--surface-strong);
}

.provider-glyph {
  background:
    linear-gradient(90deg, transparent 21px, rgba(79, 240, 139, 0.45) 22px 24px, transparent 25px),
    linear-gradient(transparent 11px, rgba(110, 168, 255, 0.4) 12px 14px, transparent 15px),
    linear-gradient(transparent 31px, rgba(246, 180, 85, 0.4) 32px 34px, transparent 35px),
    var(--surface-strong);
}

.gateway-glyph {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 10px, rgba(79, 240, 139, 0.4) 11px 12px, transparent 13px),
    conic-gradient(from 0deg, var(--accent), transparent 28%, var(--blue), transparent 60%, var(--amber), var(--accent)),
    var(--surface-strong);
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(330px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background:
    linear-gradient(115deg, rgba(79, 240, 139, 0.08), transparent 42%),
    color-mix(in srgb, var(--surface-strong) 50%, transparent);
}

.workflow-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.tab-button {
  padding: 0 15px;
  cursor: pointer;
  font-weight: 760;
}

.tab-button.is-active {
  border-color: rgba(79, 240, 139, 0.68);
  background: rgba(79, 240, 139, 0.18);
  color: var(--accent);
}

.terminal-visual {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.terminal-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  padding: 14px 16px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.84rem;
}

.terminal-body {
  min-height: 286px;
  padding: clamp(20px, 4vw, 36px);
  color: var(--text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.terminal-body p {
  margin: 0 0 16px;
}

.terminal-body p:last-child {
  margin-bottom: 0;
  color: var(--accent);
}

.terminal-body span {
  color: var(--amber);
}

.provider-section {
  background: linear-gradient(180deg, transparent, rgba(79, 240, 139, 0.045));
}

.provider-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.52fr);
  gap: 18px;
  margin-top: 38px;
}

.provider-list {
  display: grid;
  gap: 12px;
}

.provider-list div,
.download-panel {
  border-radius: var(--radius);
  padding: 24px;
}

.provider-list strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.download-panel {
  display: grid;
  align-content: start;
  gap: 22px;
}

.download-logo-card {
  margin: -16px 0 -4px -12px;
  overflow: hidden;
  padding: 0;
}

.download-logo {
  width: min(148px, 48vw);
}

.panel-kicker {
  color: var(--accent);
  letter-spacing: 0;
}

.download-panel p {
  margin: 0;
}

.downloads-section {
  background:
    radial-gradient(circle at 78% 20%, rgba(79, 240, 139, 0.08), transparent 28rem),
    linear-gradient(180deg, rgba(79, 240, 139, 0.035), transparent);
}

.download-layout {
  display: grid;
  max-width: 1180px;
  gap: 18px;
  margin-top: 38px;
}

.download-group {
  display: grid;
  gap: 14px;
}

.download-group-heading {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: color-mix(in srgb, var(--surface-strong) 50%, transparent);
}

.download-group-heading span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

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

.download-grid.single {
  grid-template-columns: minmax(280px, 0.36fr);
}

.download-card {
  display: grid;
  min-height: 236px;
  align-content: start;
  border-radius: var(--radius);
  padding: 22px;
}

.download-card h3 {
  margin-top: 32px;
}

.download-card p {
  margin: 12px 0 0;
}

.download-link {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  align-self: end;
  margin-top: 24px;
  border: 1px solid rgba(79, 240, 139, 0.62);
  border-radius: 8px;
  padding: 0 14px;
  color: #04110a;
  font-size: 0.9rem;
  font-weight: 800;
  background: linear-gradient(180deg, #64ffa2, var(--accent));
  box-shadow:
    0 0 20px rgba(79, 240, 139, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.download-link:hover {
  transform: translateY(-2px);
}

:root[data-theme="light"] .download-link {
  color: white;
  background: linear-gradient(180deg, #13aa63, #087142);
}

.engine-note {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border: 1px solid rgba(79, 240, 139, 0.3);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  background: rgba(79, 240, 139, 0.1);
}

.platform-icon {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(79, 240, 139, 0.34);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: inset 0 0 18px rgba(79, 240, 139, 0.1);
}

.windows-icon {
  background:
    linear-gradient(90deg, transparent 21px, var(--surface-strong) 22px 24px, transparent 25px),
    linear-gradient(transparent 21px, var(--surface-strong) 22px 24px, transparent 25px),
    linear-gradient(135deg, var(--blue), var(--accent));
}

.mac-icon::before {
  position: absolute;
  inset: 10px 13px 9px;
  border-radius: 46% 46% 48% 48%;
  background: linear-gradient(180deg, var(--text), color-mix(in srgb, var(--text) 62%, transparent));
  content: "";
}

.mac-icon::after {
  position: absolute;
  top: 7px;
  left: 25px;
  width: 9px;
  height: 11px;
  border-radius: 9px 1px 9px 1px;
  background: var(--accent);
  content: "";
  transform: rotate(24deg);
}

.linux-icon::before {
  position: absolute;
  inset: 13px 10px 12px;
  border: 2px solid var(--accent);
  border-radius: 10px 10px 12px 12px;
  content: "";
}

.linux-icon::after {
  position: absolute;
  right: 10px;
  bottom: 9px;
  left: 10px;
  height: 3px;
  border-radius: 999px;
  background: var(--amber);
  content: "";
}

.unity-icon::before,
.unity-icon::after {
  position: absolute;
  content: "";
}

.unity-icon::before {
  inset: 11px;
  border: 2px solid var(--accent);
  transform: rotate(30deg);
}

.unity-icon::after {
  top: 20px;
  left: 20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 -13px 0 var(--blue),
    12px 7px 0 var(--amber);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
}

@media (max-width: 1040px) {
  .hero-inner,
  .section-heading,
  .workflow-section,
  .provider-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: 0;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-product {
    display: none;
  }

  .workspace-preview {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .control-panel {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .metric-strip,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .metric-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 14px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    display: flex;
    min-height: 82svh;
    align-items: center;
    padding: 100px 14px 42px;
  }

  .hero-inner {
    gap: 28px;
  }

  .company-logo {
    width: min(214px, 64vw);
    margin: 0 0 8px -10px;
  }

  .hero-copy p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .workspace-preview {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }

  .control-panel {
    grid-template-columns: 1fr 1fr;
  }

  .window-controls {
    gap: 12px;
  }

  .section-panel,
  .workflow-section {
    padding: 64px 14px;
  }

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

  .download-grid,
  .download-grid.single {
    grid-template-columns: 1fr;
  }

  .download-link {
    width: 100%;
  }
}

@media (max-width: 440px) {
  .control-panel {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.55rem, 16vw, 3.4rem);
  }

  .product-window {
    margin-right: -4px;
    margin-left: -4px;
  }
}

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