/* Atlas-specific dashboard preview and content layout.
 * Shared tokens, typography, header, menu, hero, buttons, and footer are
 * imported unchanged from @aisocratic/design in vendor/design.css. */

.grid-2 > *,
.grid-4 > * { min-width: 0; }

.preview-section { padding-bottom: 4rem; }

.hero-status { margin-top: 1.5rem; }

/* ------------------------------------------------------------ status pills */

/* Badge tone="warning" shape="pill". */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.6875rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--status-warning) 10%, transparent);
  color: var(--status-warning);
  font: 500 var(--text-micro) / 1 var(--font-code);
}

.pill .dot {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 999px;
  background: currentColor;
  flex: none;
}

/* -------------------------------------------------------------------- code */

.code {
  margin: 0;
  padding: 1rem 1.125rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow-x: auto;
  font-size: var(--text-micro);
  line-height: 1.85;
  tab-size: 2;
}

.code code {
  font-size: inherit;
}

.code-titled {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
}

.code-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 1.125rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted-foreground);
  font-family: var(--font-code);
  font-size: var(--text-micro);
  letter-spacing: 0.04em;
}

.code-titled .code,
.code-titled .tree {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.c-dim {
  color: var(--muted-foreground);
}

.c-key {
  color: var(--accent);
}

.c-str {
  color: var(--chart-2);
}

.c-fn {
  color: var(--foreground);
  font-weight: 500;
}

.hero-note {
  margin-top: 0.875rem;
  color: var(--muted-foreground);
  font-size: var(--text-micro);
  line-height: var(--text-micro--line-height);
}

/* ------------------------------------------------------------ mock canvas */

.canvas-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
  overflow: hidden;
}

.canvas-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-code);
  font-size: var(--text-micro);
  color: var(--muted-foreground);
}

.canvas-bar .lights {
  display: inline-flex;
  gap: 0.3125rem;
}

.canvas-bar .lights i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--secondary);
  display: block;
}

.canvas-bar .spacer {
  flex: 1;
}

.canvas-bar .fresh {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
}

.canvas-bar .fresh::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: var(--status-success);
}

.canvas {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.875rem;
  background: var(--background);
}

.tile {
  grid-column: span 6;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.875rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

@media (min-width: 46rem) {
  .tile {
    grid-column: span 3;
  }
  .span-2 {
    grid-column: span 2;
  }
  .span-3 {
    grid-column: span 3;
  }
  .span-4 {
    grid-column: span 4;
  }
  .span-6 {
    grid-column: span 6;
  }
}

.tile-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.tile-head h3 {
  font-size: var(--text-lead);
  line-height: 1.2;
  color: var(--foreground);
}

.tile-head span {
  font-size: var(--text-micro);
  color: var(--muted-foreground);
  font-family: var(--font-code);
  white-space: nowrap;
}

/* scores */

.scores {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  min-width: 0;
}

.ring {
  position: relative;
  width: 100%;
  max-width: 3.25rem;
  aspect-ratio: 1;
}

.ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

/* Part-to-whole: the unfilled remainder uses the neutral ramp's muted step. */
.ring .track {
  stroke: var(--chart-ramp-muted);
}

.ring .value {
  stroke-linecap: round;
}

.ring b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-code);
  font-size: var(--text-body);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.score small {
  font-size: var(--text-micro);
  color: var(--muted-foreground);
  text-align: center;
  line-height: 1.3;
}

/* status roles */

.t-ok {
  color: var(--status-success);
}
.t-warn {
  color: var(--status-warning);
}
.t-bad {
  color: var(--status-danger);
}
.s-ok {
  stroke: var(--status-success);
}
.s-warn {
  stroke: var(--status-warning);
}
.s-bad {
  stroke: var(--status-danger);
}

/* vitals sparklines */

.vitals {
  display: grid;
  gap: 0.625rem;
}

.vital {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr) 3.25rem;
  align-items: center;
  gap: 0.625rem;
}

.vital .k {
  font-size: var(--text-micro);
  color: var(--muted-foreground);
  font-family: var(--font-code);
}

.vital .v {
  font-size: var(--text-micro);
  font-variant-numeric: tabular-nums;
  text-align: right;
  font-family: var(--font-code);
}

.spark {
  width: 100%;
  height: 1.875rem;
  overflow: visible;
}

/* One series per sparkline, so each is the single accent. */
.spark polyline {
  fill: none;
  stroke: var(--chart-1);
  stroke-width: 1.5;
  stroke-linejoin: round;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.spark polygon {
  fill: var(--chart-1);
  opacity: 0.12;
}

/* ranked bars */

.bars {
  display: grid;
  gap: 0.5rem;
}

.bar {
  display: grid;
  grid-template-columns: 3.75rem minmax(0, 1fr) 2.75rem;
  align-items: center;
  gap: 0.625rem;
  font-size: var(--text-micro);
}

.bar .k {
  color: var(--muted-foreground);
  font-family: var(--font-code);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bar .track {
  height: 0.4375rem;
  border-radius: 999px;
  background: var(--chart-ramp-muted);
  overflow: hidden;
}

/* Ranked bars stay amber; the ranking is carried by length, not hue. */
.bar .track i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--chart-1);
}

.bar .v {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-family: var(--font-code);
  color: var(--muted-foreground);
}

/* big metric */

.metric {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.metric b {
  font-family: var(--font-display);
  font-size: var(--text-page);
  font-weight: 200;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.metric span {
  font-size: var(--text-micro);
  color: var(--muted-foreground);
}

/* lists */

.rows {
  display: grid;
  gap: 0.4375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rows li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: var(--text-micro);
  min-width: 0;
}

.rows .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-code);
}

.rows .meta {
  color: var(--muted-foreground);
  white-space: nowrap;
  font-family: var(--font-code);
  font-variant-numeric: tabular-nums;
}

.anoms {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.anoms li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: var(--text-micro);
  line-height: 1.45;
}

.anoms .arrow {
  flex: none;
  font-family: var(--font-code);
}

.anoms .when {
  color: var(--muted-foreground);
  font-family: var(--font-code);
  white-space: nowrap;
}

.tile-foot {
  margin-top: auto;
  font-size: var(--text-micro);
  color: var(--muted-foreground);
  font-family: var(--font-code);
}

.canvas-caption {
  margin-top: 0.875rem;
  font-size: var(--text-micro);
  color: var(--muted-foreground);
  text-align: center;
}

/* ------------------------------------------------------------------- cards */

.grid-2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 46rem) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.grid-4 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 40rem) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 62rem) {
  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.why {
  min-width: 0;
}

.why h3 {
  font-size: var(--text-title);
  line-height: var(--text-title--line-height);
  margin-bottom: 0.5rem;
}

.why p {
  color: var(--muted-foreground);
}

.why code {
  color: var(--foreground);
  background: var(--secondary);
  padding: 0.0625rem 0.3125rem;
  border-radius: var(--radius-md);
}

.rule {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.125rem;
}

.rule-accent {
  background: linear-gradient(
    to right,
    var(--accent) 0 2.5rem,
    var(--border) 2.5rem
  );
}

/* --------------------------------------------------------------- file tree */

.tree {
  margin: 0;
  padding: 1rem 1.125rem;
  font-family: var(--font-code);
  font-size: var(--text-micro);
  line-height: 2;
  white-space: pre;
  overflow-x: auto;
}

.tree .f {
  color: var(--foreground);
}

.tree .d {
  color: var(--accent);
}

.tree .c {
  color: var(--muted-foreground);
}

/* ------------------------------------------------------------------- table */

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
}

table {
  width: 100%;
  min-width: 34rem;
  border-collapse: collapse;
  font-size: var(--text-body);
}

/* Stoa's table chrome (table-parts.tsx): a muted head band with mono
   micro labels, hairline rows, a faint hover on body rows. */
thead tr {
  background: color-mix(in srgb, var(--muted) 50%, transparent);
}

thead th {
  text-align: left;
  font-family: var(--font-code);
  font-size: var(--text-micro);
  line-height: var(--text-micro--line-height);
  font-weight: 400;
  color: var(--muted-foreground);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

tbody tr {
  transition: background-color 0.15s ease-out;
}

tbody tr:hover {
  background: color-mix(in srgb, var(--muted) 30%, transparent);
}

tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody th {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-weight: 500;
  white-space: nowrap;
  vertical-align: top;
}

tbody tr:last-child th {
  border-bottom: 0;
}

td.what {
  color: var(--muted-foreground);
}

/* Badge shape="rounded" tone="neutral". */
.tag {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-md);
  background: var(--secondary);
  border: 1px solid var(--border);
  font-family: var(--font-code);
  font-size: var(--text-micro);
  font-weight: 500;
  white-space: nowrap;
}

.tag-muted {
  background: transparent;
  color: var(--muted-foreground);
  font-style: normal;
}

.table-note {
  margin-top: 1rem;
  color: var(--muted-foreground);
  max-width: var(--measure);
}

/* -------------------------------------------------------------- collectors */

.collectors {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

@media (min-width: 46rem) {
  .collectors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 62rem) {
  .collectors {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.collector {
  background: var(--card);
  padding: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.collector-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.collector-top h3 {
  font-family: var(--font-code);
  font-size: var(--text-body);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
}

.eta {
  font-family: var(--font-code);
  font-size: var(--text-micro);
  color: var(--muted-foreground);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.collector p {
  color: var(--muted-foreground);
  font-size: var(--text-body);
}

.needs {
  font-size: var(--text-micro);
  line-height: var(--text-micro--line-height);
  color: var(--muted-foreground);
}

.needs b {
  color: var(--foreground);
  font-weight: 500;
}

/* Alert, as a surface: rounded-xl, with an accent edge. */
.callout {
  margin-top: 1.5rem;
  padding: 1.125rem 1.25rem;
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius-xl);
  background: var(--card);
}

.callout p {
  color: var(--muted-foreground);
  max-width: var(--measure);
}

.callout p strong {
  color: var(--foreground);
  font-weight: 500;
}

.callout code {
  color: var(--foreground);
}

/* -------------------------------------------------------------- data / auth */

/* A group label, as an eyebrow. */
h3.text-eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--muted-foreground);
}

.adapters {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
  overflow: hidden;
}

.adapter {
  display: grid;
  gap: 0.25rem 1rem;
  padding: 1rem 1.125rem;
  border-bottom: 1px solid var(--border);
}

.adapter:last-child {
  border-bottom: 0;
}

@media (min-width: 40rem) {
  .adapter {
    grid-template-columns: 10rem minmax(0, 1fr);
    align-items: baseline;
  }
}

.adapter dt {
  font-family: var(--font-code);
  font-size: var(--text-body);
  font-weight: 500;
}

.adapter dd {
  margin: 0;
  color: var(--muted-foreground);
}

.adapter dd .flag {
  color: var(--foreground);
  font-weight: 500;
}

/* ----------------------------------------------------------------- roadmap */

.roadmap {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
  overflow: hidden;
}

.roadmap li {
  display: grid;
  grid-template-columns: 1.25rem 4.5rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: baseline;
  padding: 0.6875rem 1.125rem;
  border-bottom: 1px solid var(--border);
}

.roadmap li:last-child {
  border-bottom: 0;
}

/* Stoa's Checkbox geometry: a 4px corner on a 16px box. */
.roadmap .box {
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: color-mix(in srgb, var(--secondary) 30%, transparent);
  align-self: center;
}

.roadmap .n {
  font-family: var(--font-code);
  font-size: var(--text-micro);
  color: var(--muted-foreground);
  white-space: normal;
  min-width: 0;
}

.roadmap .what {
  min-width: 0;
}

/* Interactive dashboard: product behavior over the shared design substrate. */
.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;
}
.workspace-heading { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 1.5rem; }
.workspace-heading .text-eyebrow { color: var(--muted-foreground); margin-bottom: 0.5rem; }
.workspace-heading h2 { font-size: var(--text-section); }
.workspace-heading > p { color: var(--muted-foreground); max-width: 36ch; }
.dashboard-toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; padding: 1rem; border-bottom: 1px solid var(--border); }
.dashboard-tabs { display: flex; flex: 1 1 16rem; min-width: 0; gap: 0.25rem; overflow-x: auto; padding: 3px; }
.dashboard-tab { flex: none; min-height: 40px; max-width: 15rem; padding: 0.5rem 0.875rem; border: 1px solid transparent; border-radius: var(--radius-md); color: var(--muted-foreground); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dashboard-tab:hover { color: var(--foreground); background: var(--secondary); }
.dashboard-tab[aria-selected="true"] { color: var(--foreground); border-color: var(--border); background: var(--secondary); }
.dashboard-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.dashboard-actions .btn { min-height: 40px; }
.dashboard-actions button:disabled, .card-tool:disabled { cursor: default; opacity: 0.4; }
.dashboard-edit-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.875rem 1rem; border-bottom: 1px solid var(--border); background: var(--muted); }
.dashboard-edit-bar p { color: var(--muted-foreground); max-width: 70ch; font-size: var(--text-micro); }
.dashboard-edit-bar .dashboard-actions { flex: none; }
.dashboard-ready .canvas { grid-template-columns: minmax(0, 1fr); align-items: start; }
.dashboard-ready .tile { position: relative; grid-column: auto; grid-row: auto; height: var(--card-height); min-height: 0; }
.card-content { display: flex; flex-direction: column; gap: 0.75rem; flex: 1; min-height: 0; overflow: auto; scrollbar-width: thin; }
.card-content .tile-head { flex-wrap: wrap; }
.card-content .tile-foot { padding-top: 0.5rem; }
.card-edit-controls { display: flex; gap: 0.25rem; align-items: center; border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; }
.card-tool { display: inline-flex; align-items: center; justify-content: center; min-height: 36px; min-width: 36px; border-radius: var(--radius-md); color: var(--muted-foreground); font-size: var(--text-micro); }
.card-tool:hover:not(:disabled) { background: var(--secondary); color: var(--foreground); }
.card-move { margin-right: auto; padding-inline: 0.5rem; cursor: grab; touch-action: none; user-select: none; }
.card-move:active { cursor: grabbing; }
.card-size-controls { display: flex; flex-wrap: wrap; gap: 0.5rem; padding-right: 1.125rem; border-top: 1px solid var(--border); padding-top: 0.5rem; }
.card-size-field { display: flex; flex: 1 1 5rem; align-items: center; gap: 0.25rem; font-size: 10px; color: var(--muted-foreground); }
.card-size-field select { width: 100%; min-width: 0; min-height: 32px; padding: 0.25rem; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--card); color: var(--foreground); font: inherit; font-size: 11px; }
.card-size-field select:disabled { opacity: 0.5; }
.card-resize { position: absolute; bottom: 0; right: 0; width: 28px; height: 28px; display: grid; place-items: center; background: var(--secondary); border-top: 1px solid var(--border); border-left: 1px solid var(--border); border-radius: var(--radius-md) 0 var(--radius-xl) 0; cursor: nwse-resize; touch-action: none; user-select: none; }
.is-editing .tile { border-style: dashed; }
.dashboard-ready .tile.is-manipulating { z-index: 5; border-style: solid; border-color: var(--primary); box-shadow: 0 10px 25px rgb(0 0 0 / 0.12); }
.dashboard-ready .tile.is-drop-target { outline: 2px solid var(--primary); outline-offset: 2px; }
.dashboard-dialog { width: min(28rem, calc(100vw - 2rem)); padding: 1.75rem; border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--popover); color: var(--foreground); box-shadow: 0 20px 60px rgb(0 0 0 / 0.2); }
.dashboard-dialog::backdrop { background: rgb(0 0 0 / 0.5); backdrop-filter: blur(3px); }
.dashboard-dialog h2 { font-size: var(--text-section); }
.dashboard-dialog p { color: var(--muted-foreground); margin-top: 0.75rem; }
.dashboard-dialog label { display: block; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.dashboard-dialog input { width: 100%; min-height: 44px; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 0.625rem 0.75rem; background: var(--background); color: var(--foreground); font: inherit; }
.dashboard-dialog .form-error { color: var(--status-danger); min-height: 1.5em; font-size: var(--text-micro); }
.dashboard-dialog .actions { justify-content: end; margin-top: 1rem; }
@media (min-width: 1024px) {
  .dashboard-ready .canvas { grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: 42px; gap: 12px; align-items: stretch; }
  .dashboard-ready .tile { grid-area: var(--card-area); height: 100%; }
}
@media (max-width: 639px) {
  .dashboard-toolbar { padding: 0.75rem; gap: 0.75rem; }
  .dashboard-actions { width: 100%; }
  .dashboard-actions .btn { flex: 1; min-height: 44px; padding-inline: 0.625rem; }
  .dashboard-edit-bar { flex-direction: column; align-items: start; }
  .canvas-bar { flex-wrap: wrap; gap: 0.25rem 0.75rem; font-size: 10px; }
  .canvas-bar .lights, .canvas-bar .spacer { display: none; }
  .canvas-bar #dashboard-save-status { margin-left: auto; }
  .card-tool { min-height: 44px; min-width: 44px; }
  .card-size-field select { min-height: 44px; }
  .card-resize { width: 36px; height: 36px; }
}
/* Product pages share Stoa's header, spacing, type, and theme controls. */
.product-brand{display:inline-flex;align-items:center;gap:8px;font:500 18px/28px var(--font-body);color:var(--foreground);text-decoration:none}.product-brand svg{flex:none}.product-hero{padding-top:175px;padding-bottom:64px}.product-hero h1{font-size:clamp(40px,5.3vw,72px);line-height:1.07;letter-spacing:-.025em}.product-hero h1 em,.product-demo-callout em{color:var(--muted-foreground)}.product-hero .hero-sub{max-width:590px;font-size:18px}.product-note{margin-top:18px;font:11px/1.8 var(--font-code);color:var(--muted-foreground)}.product-preview{padding-bottom:32px}.product-preview-heading{display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:22px}.product-preview-heading h2{font-size:29px}.product-preview-heading .text-eyebrow{color:var(--muted-foreground);margin-bottom:6px}.product-preview-heading>a{font-size:12px;color:var(--muted-foreground);text-decoration:none}.product-screenshot{display:block;overflow:hidden;border:1px solid var(--border);border-radius:14px;box-shadow:0 26px 70px #0002;transition:transform .2s}.product-screenshot:hover{transform:translateY(-3px)}.product-screenshot img{display:block;width:100%;height:auto}.product-caption{margin-top:16px;color:var(--muted-foreground);font:11px/1.7 var(--font-code);text-align:center}.product-feature-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:36px}.product-feature-grid article{border-top:1px solid var(--border);padding-top:24px}.product-feature-icon{display:flex;width:38px;height:38px;align-items:center;justify-content:center;background:var(--muted);border-radius:9px;font-size:22px;margin-bottom:22px}.product-feature-grid h3{font:400 26px/1.2 var(--font-display);margin-bottom:14px}.product-feature-grid p{font-size:14px;line-height:1.8;color:var(--muted-foreground)}.product-feature-grid a{display:inline-block;margin-top:22px;font-size:12px;color:var(--foreground);text-decoration:none}.product-demo-section{padding-top:28px}.product-demo-callout{display:flex;align-items:center;justify-content:space-between;gap:42px;border:1px solid var(--border);border-radius:16px;background:var(--card);padding:52px}.product-demo-callout h2{font-size:48px;line-height:1.07;margin:14px 0 18px}.product-demo-callout>div>p:not(.text-eyebrow):not(.product-note){max-width:470px;color:var(--muted-foreground);font-size:15px;line-height:1.8}.product-demo-callout>div:last-child{min-width:220px}.product-family{padding-top:24px}.product-family .page-shell>div{display:grid;grid-template-columns:1fr 1fr;gap:45px;margin-top:18px;align-items:center}.product-family h2{font-size:36px}.product-family p:not(.text-eyebrow){max-width:480px;font-size:15px;line-height:1.8;color:var(--muted-foreground)}.product-family a{color:var(--foreground)}.product-footer{padding:32px 0}.product-footer>.page-shell{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:24px}.product-footer nav{display:flex;flex-wrap:wrap;gap:22px}.product-footer nav a,.product-footer p{font-size:12px;color:var(--muted-foreground);text-decoration:none}
@media(max-width:700px){.product-hero{padding-top:145px;padding-bottom:45px}.product-hero .hero-sub{font-size:16px}.product-hero h1 br{display:none}.product-preview-heading{align-items:start;flex-direction:column;gap:10px}.product-preview-heading h2{font-size:25px}.product-feature-grid{grid-template-columns:1fr;gap:32px}.product-demo-callout{padding:28px;flex-direction:column;align-items:start;gap:22px}.product-demo-callout h2{font-size:38px}.product-family .page-shell>div{grid-template-columns:1fr;gap:20px}.product-family h2{font-size:30px}.product-screenshot{border-radius:8px}.product-footer>.page-shell{align-items:start;flex-direction:column}}
