/* ==========================================================================
   Dhaedalida — marketing site stylesheet
   Design tokens live in :root; rebranding = edit the custom properties.
   ========================================================================== */

:root {
  /* Color palette */
  --ink: #16273b;          /* headings */
  --text: #3d4f63;         /* body copy */
  --muted: #64748b;        /* secondary text */
  --border: #dfe6ee;
  --bg: #ffffff;
  --bg-alt: #f6f8fa;
  --navy: #0f2137;         /* dark panels / footer */
  --navy-2: #16324e;
  --accent: #1d4ed8;
  --accent-dark: #16389f;
  --accent-soft: #e8eefc;
  --teal: #0d9488;
  --ok: #16a34a;

  /* Typography */
  --font-sans: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto,
               "Helvetica Neue", Arial, sans-serif;
  --font-mono: Consolas, "Cascadia Mono", Menlo, Monaco, monospace;

  /* Layout */
  --container: 1140px;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(15, 33, 55, 0.08);
  --shadow-lg: 0 14px 40px rgba(15, 33, 55, 0.14);
}

/* Base ------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.1rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

code, pre { font-family: var(--font-mono); }

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

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

/* Buttons ------------------------------------------------------------------ */

.btn {
  display: inline-block;
  padding: 0.65em 1.4em;
  border-radius: 8px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 0.97rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover { background: var(--accent-dark); }

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover { background: var(--accent-soft); }

.btn-light {
  background: #fff;
  color: var(--accent);
}

.btn-light:hover { background: var(--accent-soft); }

.btn-lg {
  padding: 0.85em 1.9em;
  font-size: 1.05rem;
}

/* Header ------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}

.brand:hover { text-decoration: none; }

.site-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.site-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.97rem;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--accent);
  text-decoration: none;
}

.site-nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.header-cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  margin-left: auto;
  padding: 8px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  color: var(--ink);
}

/* Hero --------------------------------------------------------------------- */

.hero {
  padding: 72px 0 80px;
  background:
    radial-gradient(60% 90% at 85% 10%, var(--accent-soft) 0%, transparent 60%),
    var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero .lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 34em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--muted);
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* Hero visual: source window -> protected window ---------------------------- */

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.code-window {
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.code-window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  background: var(--navy-2);
}

.code-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.code-window-bar em {
  margin-left: 8px;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.code-window pre {
  margin: 0;
  padding: 14px 18px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: #c9d6e6;
  overflow-x: auto;
}

.code-window .tok-k { color: #7dd3fc; }
.code-window .tok-f { color: #fbbf24; }
.code-window .tok-s { color: #86efac; }
.code-window .tok-c { color: #6b7f95; }
.code-window .tok-r { color: #c4b5fd; }  /* registers */
.code-window .tok-n { color: #fca5a5; }  /* immediates / hex */

.code-window.protected pre { color: #5f7f9e; }

/* Assembly transformation stepper (home) ------------------------------------ */

.asm-showcase {
  max-width: 720px;
  margin-inline: auto;
}

.asm-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 18px;
}

.asm-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  color: var(--muted);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.asm-tab:hover { color: var(--accent); border-color: var(--accent); }

.asm-tab .asm-tab-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.asm-tab[aria-selected="true"] {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.asm-tab[aria-selected="true"] .asm-tab-num {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.asm-panel[hidden] { display: none; }

.asm-panel .code-window pre { font-size: 0.8rem; }

.asm-caption {
  margin: 16px 2px 0;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

.asm-caption strong { color: var(--ink); }

.transform-arrow {
  align-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Sections ------------------------------------------------------------------ */

.section { padding: 76px 0; }

.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head p { color: var(--muted); }

/* Trust strip ---------------------------------------------------------------- */

.trust {
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}

.trust p {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 18px;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 48px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #9aa9bb;
}

/* Cards ---------------------------------------------------------------------- */

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

.cards-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 16px;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
}

/* Steps ----------------------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}

.step h3 { font-size: 1.08rem; }
.step p { margin: 0; font-size: 0.95rem; color: var(--muted); }

/* Badges (platform strip) ------------------------------------------------------ */

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.badge svg { color: var(--teal); }

/* CTA banner --------------------------------------------------------------------- */

.cta-banner {
  background: linear-gradient(120deg, var(--accent-dark), var(--accent) 55%, var(--teal));
  border-radius: 14px;
  padding: 56px 48px;
  text-align: center;
  color: #fff;
}

.cta-banner h2 { color: #fff; }

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 40em;
  margin-inline: auto;
}

.cta-banner .btn { margin-top: 12px; }

/* Feature detail rows (features.html) ---------------------------------------------- */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.feature-row:last-of-type { border-bottom: none; }

.feature-row.reverse .feature-copy { order: 2; }

.feature-copy ul {
  padding-left: 1.2em;
  color: var(--text);
}

.feature-copy li { margin-bottom: 0.5em; }

.feature-copy li::marker { color: var(--accent); }

/* Tables ---------------------------------------------------------------------------- */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: var(--bg);
}

th, td {
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

thead th {
  background: var(--bg-alt);
  color: var(--ink);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

td.check { color: var(--ok); font-weight: 700; }
td.dash { color: #b6c2d0; }

/* Pricing tiers ----------------------------------------------------------------------- */

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.tier {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px 30px;
  box-shadow: var(--shadow);
}

.tier.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.tier-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.tier h3 { font-size: 1.2rem; }

.tier .price {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--ink);
  margin: 6px 0 2px;
}

.tier .price small {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.tier .tier-blurb {
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 3em;
}

.tier ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 26px;
  flex: 1;
}

.tier li {
  padding: 7px 0 7px 28px;
  font-size: 0.94rem;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="%2316a34a" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') no-repeat left 9px;
}

.tier li.no {
  color: #a4b1c0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="%23b6c2d0" stroke-width="3" stroke-linecap="round"><path d="M18 6L6 18M6 6l12 12"/></svg>') no-repeat left 9px;
}

.tier .btn { width: 100%; text-align: center; }

.pricing-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 26px;
}

/* License toggle (pricing) ------------------------------------------------------------ */

.license-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.license-toggle-label {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--muted);
  cursor: pointer;
}

.license-toggle-label.active { color: var(--ink); }

.license-switch {
  position: relative;
  flex: none;
  width: 50px;
  height: 28px;
  padding: 0;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: var(--bg-alt);
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.license-switch:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.license-switch-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 0.15s ease;
}

.license-switch[aria-checked="true"] .license-switch-knob {
  transform: translateX(22px);
}

/* Personal / company price swap */
.tier .price-company { display: none; }
.tiers.show-company .price-company { display: inline; }
.tiers.show-company .price-personal { display: none; }

.tier .price-renewal {
  margin: 0 0 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Coming-soon (unreleased) edition */
.tier.coming-soon {
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  box-shadow: none;
}

.tier.coming-soon .price {
  font-size: 1.9rem;
  color: var(--muted);
}

.tier.coming-soon .tier-blurb,
.tier.coming-soon li { color: var(--muted); }

/* FAQ accordion --------------------------------------------------------------------------- */

.faq { max-width: 760px; margin-inline: auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-item .faq-body {
  padding: 0 22px 18px;
  color: var(--text);
  font-size: 0.96rem;
}

/* Forms ------------------------------------------------------------------------------------ */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field { display: flex; flex-direction: column; }

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

.form-field label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  color: var(--ink);
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-field .field-error {
  display: none;
  color: #dc2626;
  font-size: 0.83rem;
  margin-top: 5px;
}

.form-field.invalid input,
.form-field.invalid select,
.form-field.invalid textarea { border-color: #dc2626; }

.form-field.invalid .field-error { display: block; }

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 8px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-weight: 500;
}

.form-status.visible { display: block; }

/* Contact info cards -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}

.info-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.info-card p { margin: 0; font-size: 0.94rem; color: var(--muted); }

/* Download page --------------------------------------------------------------------------------- */

.download-hero {
  text-align: center;
  padding: 72px 0 56px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.download-hero .lead {
  color: var(--muted);
  max-width: 38em;
  margin-inline: auto;
  font-size: 1.1rem;
}

.download-meta {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--muted);
}

.trial-note {
  max-width: 720px;
  margin: 26px auto 0;
  padding: 16px 22px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  color: #92400e;
  font-size: 0.92rem;
  text-align: left;
}

/* Changelog ---------------------------------------------------------------------------------------- */

.changelog { max-width: 760px; }

.changelog-entry {
  border-left: 3px solid var(--accent);
  padding: 4px 0 18px 22px;
  margin-bottom: 8px;
}

.changelog-entry h3 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.changelog-entry .date {
  font-size: 0.84rem;
  color: var(--muted);
}

.changelog-entry ul {
  margin: 10px 0 0;
  padding-left: 1.2em;
  font-size: 0.94rem;
}

/* Footer --------------------------------------------------------------------------------------------- */

.site-footer {
  background: var(--navy);
  color: #b5c4d4;
  padding: 56px 0 28px;
  margin-top: 76px;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-grid h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li { margin-bottom: 9px; }

.footer-grid a { color: #b5c4d4; }

.footer-grid a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 24px;
  font-size: 0.84rem;
  color: #7f92a6;
}

/* Page hero (inner pages) -------------------------------------------------------------------------------- */

.page-hero {
  padding: 60px 0 48px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.page-hero p {
  color: var(--muted);
  max-width: 42em;
  font-size: 1.08rem;
  margin: 0;
}

/* Responsive ----------------------------------------------------------------------------------------------- */

@media (max-width: 960px) {
  .hero-inner,
  .feature-row,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-row.reverse .feature-copy { order: 0; }

  .cards, .steps, .tiers { grid-template-columns: 1fr 1fr; }

  .tier.featured { grid-column: 1 / -1; }

  .tiers { grid-auto-flow: dense; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; }

  .header-cta { display: none; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 8px 24px 16px;
  }

  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .site-nav a.active { border-bottom-color: var(--border); }

  .site-header.nav-open .site-nav { display: flex; }
}

@media (max-width: 640px) {
  .cards, .steps, .tiers { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; }

  .cta-banner { padding: 40px 24px; }

  .footer-grid { grid-template-columns: 1fr; }
}
