/* DAOS — static site styles (GoDaddy-ready, matches brand artwork: blue on black) */

:root {
  --bg: #000000;
  --bg-elevated: #080c12;
  --surface: #0d1118;
  --border: #1a2635;
  --text: #ffffff;
  --muted: #a8b8cc;
  --accent: #1885f2;
  --accent-hot: #4da3ff;
  --accent-dim: #0d5c99;
  --glow: rgba(24, 133, 242, 0.18);
  --gradient-brand: linear-gradient(135deg, #0d5c99 0%, #1885f2 50%, #4da3ff 100%);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Orbitron", system-ui, sans-serif;
  --mono: ui-monospace, "Cascadia Code", "Consolas", monospace;
  --radius: 10px;
  --max: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(24, 133, 242, 0.14), transparent 50%),
    radial-gradient(ellipse 80% 40% at 50% 100%, var(--glow), transparent 55%),
    linear-gradient(180deg, #050810 0%, var(--bg) 40%);
}

a {
  color: var(--accent-hot);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #9dc8ff;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--gradient-brand);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

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

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.brand:hover {
  color: var(--text);
  text-decoration: none;
}

/* Horizontal logo banner (black background matches header) */
.brand-logo-img {
  display: block;
  height: auto;
  max-height: 52px;
  width: auto;
  max-width: min(100%, 400px);
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--gradient-brand);
  border: 1px solid rgba(24, 133, 242, 0.45);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: #fff;
  font-family: var(--mono);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
}

.brand-tag {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  align-items: center;
}

.nav-list a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--text);
  border-bottom-color: var(--accent);
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.hero {
  padding: 2rem 0 3rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.page-title,
.section h2,
.subhead {
  font-family: var(--font-display);
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 1.75rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #ffffff;
  border-color: transparent;
  background-origin: border-box;
}

.btn-primary:hover {
  filter: brightness(1.08);
  color: #ffffff;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--text);
  text-decoration: none;
}

.section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.section p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 52rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--text);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
}

.pill {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-hot);
  margin-bottom: 0.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.product-card--coming-soon {
  opacity: 0.92;
}

.product-card-ribbon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 130%;
  margin: 0;
  padding: 0.55rem 0;
  transform: translate(-50%, -50%) rotate(-32deg);
  background: #c62828;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-disabled,
.btn[aria-disabled="true"] {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

.product-card-thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #0a0e14;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.product-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.product-card .meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

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

.placeholder-note {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 0.85rem;
  margin-top: 1rem;
}

.contact-block {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  max-width: 32rem;
}

.contact-block dl {
  margin: 0;
}

.contact-block dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 1rem;
}

.contact-block dt:first-child {
  margin-top: 0;
}

.contact-block dd {
  margin: 0.25rem 0 0;
}

.contact-address a {
  line-height: 1.5;
}

.contact-layout {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
}

@media (min-width: 720px) {
  .contact-layout {
    grid-template-columns: minmax(0, 20rem) 1fr;
    align-items: start;
  }
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: min(450px, 60vh);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.contact-map-link {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
}

.demo-form.contact-block {
  max-width: 40rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 540px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.form-field .required {
  color: var(--accent);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.form-field textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-note {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.form-alert {
  max-width: 40rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.form-alert--error {
  background: rgba(220, 60, 60, 0.12);
  border: 1px solid rgba(220, 60, 60, 0.45);
  color: #f5a8a8;
}

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

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.25rem;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.page-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.page-intro {
  color: var(--muted);
  max-width: 40rem;
  margin: 0 0 2rem;
}

.subhead {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

ul.check {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

ul.check li {
  margin-bottom: 0.35rem;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent-hot);
}

.breadcrumb [aria-current="page"] {
  color: var(--text);
}

.product-hero {
  margin-bottom: 2rem;
}

.product-hero .pill {
  margin-bottom: 0.75rem;
}

.product-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.product-hero .lead {
  margin-bottom: 1.25rem;
}

.product-hero-media {
  margin: 0 0 1.5rem;
  max-width: 32rem;
}

.product-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.product-hero-media--logo {
  max-width: 280px;
}

.product-hero-media--logo img {
  background: #ffffff;
  padding: 1rem;
  object-fit: contain;
}

.product-card-thumb--logo {
  background: #ffffff;
  object-fit: contain;
}

.product-gallery-screenshot img {
  aspect-ratio: auto;
  object-fit: contain;
  background: #f4f6f8;
}

.product-gallery-wide.product-gallery-screenshot img {
  max-height: none;
}

.app-screens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.app-screens-grid figure {
  margin: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.app-screens-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 192 / 456;
  object-fit: cover;
  object-position: top center;
  background: #0a0e14;
}

.app-screens-grid figcaption {
  padding: 0.55rem 0.65rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.app-screens-grid figcaption strong {
  display: block;
  color: var(--text);
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.product-hero-layout {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .product-hero-layout {
    grid-template-columns: minmax(240px, 360px) 1fr;
    align-items: start;
  }
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.product-gallery figure {
  margin: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #0a0e14;
}

.product-gallery figcaption {
  padding: 0.5rem 0.65rem;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.product-gallery-wide {
  grid-column: 1 / -1;
}

.product-gallery-wide img {
  aspect-ratio: auto;
  max-height: 420px;
  margin: 0 auto;
}

.feature-matrix {
  width: 100%;
  max-width: 28rem;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-top: 0.75rem;
}

.feature-matrix th,
.feature-matrix td {
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.feature-matrix thead th {
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
}

.feature-matrix tbody th {
  color: var(--muted);
  font-weight: 500;
}

.feature-matrix td {
  color: var(--accent-hot);
  font-weight: 600;
  width: 5rem;
  text-align: center;
}

.spec-table {
  width: 100%;
  max-width: 36rem;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-top: 0.75rem;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.spec-table th {
  width: 40%;
  color: var(--muted);
  font-weight: 500;
}

.spec-table td {
  color: var(--text);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.product-tagline {
  margin: -0.35rem 0 1rem;
  font-size: 1.05rem;
  color: var(--accent-hot);
  font-weight: 600;
  max-width: 42rem;
}

.status-coming-soon {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 6px;
}

.feature-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

.feature-list article h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  color: var(--text);
}

.feature-list article p {
  margin: 0 0 0.5rem;
  color: var(--muted);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.compare-table caption {
  text-align: left;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

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

.compare-table th,
.compare-table td {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  vertical-align: top;
}

.compare-table thead th {
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
}

.compare-table tbody th {
  background: var(--bg-elevated);
  color: var(--muted);
  font-weight: 500;
  text-align: left;
  width: 28%;
}

.compare-table td {
  color: var(--muted);
}

.spec-table--wide {
  max-width: none;
}

/* Product page — enterprise-style layout (feature splits, modules, CTA band) */

.product-intro {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 2.5rem;
}

.product-intro h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: 0.02em;
}

.product-intro p {
  margin: 0;
  color: var(--muted);
}

.product-hero-banner {
  margin: 0 0 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
}

.product-hero-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.product-showcase {
  margin: 0 0 3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
}

.product-showcase img {
  display: block;
  width: 100%;
  height: auto;
  background: #f4f6f8;
}

.product-showcase figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.feature-split {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  margin-bottom: 3rem;
}

.feature-split:last-child {
  margin-bottom: 0;
}

.feature-split__media {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
}

.feature-split__media img {
  display: block;
  width: 100%;
  height: auto;
  background: #f4f6f8;
}

.feature-split__body h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.feature-split__body p {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.feature-split__body p:last-child {
  margin-bottom: 0;
}

@media (min-width: 820px) {
  .feature-split {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .feature-split--reverse .feature-split__media {
    order: 2;
  }

  .feature-split--reverse .feature-split__body {
    order: 1;
  }
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.module-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  min-height: 160px;
}

.module-card .pill {
  margin-bottom: 0.65rem;
}

.module-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.module-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  flex: 1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.benefits-grid article {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.benefits-grid h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.benefits-grid p {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.benefits-grid p:last-child {
  margin-bottom: 0;
}

.feature-matrix--wide {
  max-width: none;
}

.feature-matrix--wide td {
  width: auto;
  text-align: left;
  color: var(--muted);
  font-weight: 400;
}

.product-cta-band {
  margin-top: 3rem;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(24, 133, 242, 0.35);
  background:
    radial-gradient(ellipse 80% 80% at 50% 0%, rgba(24, 133, 242, 0.2), transparent 60%),
    var(--surface);
  text-align: center;
}

.product-cta-band h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.product-cta-band p {
  margin: 0 auto 1rem;
  max-width: 38rem;
  color: var(--muted);
}

.product-cta-band .check {
  display: inline-block;
  text-align: left;
  margin: 0 auto 1.25rem;
}

.product-cta-band .product-actions {
  justify-content: center;
  margin-top: 0;
}

@media (max-width: 720px) {
  .compare-table {
    font-size: 0.82rem;
  }

  .compare-table thead {
    display: none;
  }

  .compare-table tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }

  .compare-table td,
  .compare-table tbody th {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--border);
  }

  .compare-table tbody th {
    background: var(--surface);
    color: var(--text);
    font-weight: 600;
  }

  .compare-table td:last-child,
  .compare-table tbody th:last-child {
    border-bottom: none;
  }

  .compare-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-hot);
    margin-bottom: 0.25rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.75rem;
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border);
  }

  .nav-list a {
    display: block;
    padding: 0.65rem 0;
    border-bottom: none;
  }

  .brand-logo-img {
    max-height: 44px;
    max-width: min(100%, 280px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
