/*
  DNX v3 — product site for dnx.alnashir.net
  English is the primary language; Arabic is a full translation switched at runtime.
*/

:root {
  --bg: #080d16;
  --bg-2: #0d1524;
  --bg-3: #111c30;
  --line: #1e2c44;
  --line-soft: #172338;
  --ink: #e8eef8;
  --ink-2: #a9b8ce;
  --ink-3: #74869f;
  --blue: #3b7dff;
  --blue-2: #1b4fd0;
  --green: #27c08a;
  --amber: #f0a92b;
  --red: #ef5260;
  --violet: #9b6dff;
  /* Dar Alnashir's own two colours, sampled from the company mark. */
  --dnc-blue: #204796;
  --dnc-green: #82bc43;
  --radius: 14px;
  --wrap: 1180px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-ar: 'IBM Plex Sans Arabic', 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Arabic keeps its own face, and never letter-spacing: it breaks the joins. */
html[lang='ar'] body { font-family: var(--font-ar); letter-spacing: normal; }
html[lang='ar'] .eyebrow,
html[lang='ar'] .ui-stat span,
html[lang='ar'] .stat span { letter-spacing: normal; }

img { max-width: 100%; }

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

h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; letter-spacing: -0.02em; }
html[lang='ar'] h1, html[lang='ar'] h2, html[lang='ar'] h3 { letter-spacing: normal; }

h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 650; }
h3 { font-size: 1.12rem; font-weight: 600; }

p { margin: 0 0 1rem; color: var(--ink-2); }

.wrap { width: min(var(--wrap), calc(100% - 40px)); margin-inline: auto; }
.wrap.narrow { width: min(820px, calc(100% - 40px)); }
.center { text-align: center; }

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .62rem 1.1rem; border-radius: 10px;
  font-weight: 600; font-size: .94rem; border: 1px solid transparent;
  transition: transform .12s ease, background .16s ease, border-color .16s ease;
  white-space: nowrap;
}
.btn.big { padding: .85rem 1.5rem; font-size: 1rem; }
.btn.primary { background: linear-gradient(135deg, var(--blue), var(--blue-2)); color: #fff; }
.btn.primary:hover { transform: translateY(-1px); }
.btn.ghost { border-color: var(--line); color: var(--ink); background: rgba(255,255,255,.02); }
.btn.ghost:hover { border-color: var(--blue); }

/* ------------------------------------------------------------------- nav */

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 1.5rem;
  padding: .7rem max(20px, calc((100% - var(--wrap)) / 2));
  background: rgba(8, 13, 22, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.brand { display: flex; align-items: center; gap: .6rem; flex: none; }
.brand-mark { width: 34px; height: 34px; }
.brand-text strong { display: block; font-size: 1.02rem; letter-spacing: -0.01em; }
.brand-text em { display: block; font-style: normal; font-size: .72rem; color: var(--ink-3); }
.brand-v {
  font-size: .62em; vertical-align: super; color: #fff;
  background: var(--blue); border-radius: 5px; padding: .05em .35em; font-weight: 700;
}

.nav-links { display: flex; gap: .95rem; margin-inline-start: auto; font-size: .9rem; }
/* Never wrapped: a two-line header pushes the whole page down and reads as a mistake. */
.nav-links a { color: var(--ink-2); white-space: nowrap; }
.nav-links a:hover { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: .7rem; }

.lang-toggle {
  display: inline-flex; align-items: center; gap: .3rem;
  background: transparent; border: 1px solid var(--line); color: var(--ink-2);
  border-radius: 10px; padding: .5rem .7rem; cursor: pointer; font: inherit; font-size: .85rem;
}
.lang-toggle:hover { border-color: var(--blue); color: var(--ink); }
.lang-current { font-weight: 700; color: var(--ink); }
.lang-sep { color: var(--ink-3); }

/* ------------------------------------------------------------------ hero */

.hero { position: relative; padding: clamp(3rem, 7vw, 5.5rem) 0 2.5rem; overflow: hidden; }
/* Physical left, not inset-inline-start: this is a centred decoration, and a logical offset
   combined with translateX puts it off to one side the moment the page flips to Arabic. */
.hero-glow {
  position: absolute; left: 50%; top: -340px; width: 900px; height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(59,125,255,.20), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative; display: grid; gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center;
}

.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .74rem;
  color: var(--blue); font-weight: 600; margin-bottom: 1rem;
}
.lede { font-size: 1.06rem; color: var(--ink-2); max-width: 44em; }

.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.6rem 0 1.4rem; }

.hero-points { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.hero-points li { position: relative; padding-inline-start: 1.5rem; color: var(--ink-2); font-size: .95rem; }
.hero-points li::before {
  content: ''; position: absolute; inset-inline-start: 0; top: .62em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 3px rgba(39,192,138,.16);
}

/* the dashboard reproduction in the hero */
.hero-panel {
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.9);
}
.panel-chrome {
  display: flex; align-items: center; gap: .45rem;
  padding: .6rem .9rem; border-bottom: 1px solid var(--line-soft); background: rgba(255,255,255,.02);
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: #2b3b56; }
.dot.r { background: #ef5260; } .dot.y { background: #f0a92b; } .dot.g { background: #27c08a; }
.panel-title { font-size: .76rem; color: var(--ink-3); margin-inline-start: .5rem; }
.live {
  margin-inline-start: auto; font-size: .68rem; color: var(--green);
  display: inline-flex; align-items: center; gap: .35rem; font-weight: 600;
}
.live i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.panel-body { padding: .9rem; display: grid; gap: .75rem; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; }
.stat {
  border: 1px solid var(--line-soft); border-radius: 10px; padding: .55rem .6rem;
  background: rgba(255,255,255,.02); border-inline-start: 3px solid var(--ink-3);
}
.stat b { display: block; font-size: 1.3rem; line-height: 1.1; }
.stat span { font-size: .6rem; color: var(--ink-3); letter-spacing: .1em; }
.stat.ok { border-inline-start-color: var(--blue); } .stat.ok b { color: var(--blue); }
.stat.warn { border-inline-start-color: var(--amber); } .stat.warn b { color: var(--amber); }
.stat.bad { border-inline-start-color: var(--red); } .stat.bad b { color: var(--red); }

.card-row { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.ups-card { border: 1px solid var(--line-soft); border-radius: 10px; padding: .6rem; background: rgba(255,255,255,.02); }
.ups-card header { display: flex; justify-content: space-between; align-items: center; gap: .4rem; font-size: .82rem; }
.pill { font-size: .58rem; padding: .18em .5em; border-radius: 999px; font-weight: 700; letter-spacing: .06em; }
.pill.ok, .pill.green { background: rgba(39,192,138,.16); color: var(--green); }
.pill.warn, .pill.amber { background: rgba(240,169,43,.16); color: var(--amber); }
.bar { height: 5px; border-radius: 3px; background: rgba(255,255,255,.07); margin: .55rem 0; overflow: hidden; }
.bar i { display: block; height: 100%; background: var(--green); }
.bar.warn i { background: var(--amber); }
.ups-card dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: .3rem; margin: 0; }
.ups-card dt { font-size: .56rem; color: var(--ink-3); letter-spacing: .08em; }
.ups-card dd { margin: 0; font-size: .95rem; font-weight: 600; }
.ups-card dd small { font-size: .6em; color: var(--ink-3); margin-inline-start: 1px; }

.group-strip {
  display: flex; justify-content: space-between; align-items: center; gap: .5rem;
  border: 1px solid rgba(39,192,138,.28); background: rgba(39,192,138,.07);
  border-radius: 10px; padding: .5rem .65rem; font-size: .76rem;
}
.group-strip b { color: var(--green); font-size: .62rem; letter-spacing: .06em; }

.trust {
  display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; justify-content: center;
  margin-top: clamp(2rem, 5vw, 3.2rem); padding-top: 1.4rem;
  border-top: 1px solid var(--line-soft); color: var(--ink-3); font-size: .85rem;
}
.trust span { position: relative; padding-inline-start: 1.1rem; }
.trust span::before {
  content: '✓'; position: absolute; inset-inline-start: 0; color: var(--green); font-weight: 700;
}

/* --------------------------------------------------------------- sections */

.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section.alt { background: var(--bg-2); border-block: 1px solid var(--line-soft); }
.section-lede { font-size: 1.02rem; max-width: 62ch; margin-bottom: 2.2rem; }
.section.cta { background: linear-gradient(160deg, var(--bg-3), var(--bg)); }

.cards { display: grid; gap: 1rem; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem;
  background: rgba(255,255,255,.02);
}
.card h3 { margin-bottom: .45rem; }
.card p { font-size: .93rem; margin: 0; }
.card-ico { font-size: 1.5rem; margin-bottom: .5rem; }

/* interface reproduction */
.ui-demo {
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  background: var(--bg); box-shadow: 0 30px 80px -40px rgba(0,0,0,.95);
}
.ui-top {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: .7rem 1rem; border-bottom: 1px solid var(--line-soft); background: var(--bg-2);
}
.ui-brand { font-weight: 700; }
.ui-brand b { color: #fff; background: var(--blue); border-radius: 5px; padding: 0 .3em; font-size: .7em; vertical-align: super; }
.ui-tabs, .ui-modes { display: flex; gap: .35rem; flex-wrap: wrap; font-size: .8rem; }
.ui-modes { margin-inline-start: auto; }
.ui-tabs span, .ui-modes span {
  padding: .3rem .6rem; border-radius: 8px; color: var(--ink-3); border: 1px solid transparent;
}
.ui-tabs span.on, .ui-modes span.on { background: var(--blue); color: #fff; }
.ui-modes span:not(.on) { border-color: var(--line); }

.ui-stats { display: grid; grid-template-columns: repeat(8, 1fr); gap: .5rem; padding: .9rem 1rem; }
.ui-stat {
  border: 1px solid var(--line-soft); border-inline-start: 3px solid var(--ink-3);
  border-radius: 10px; padding: .5rem .55rem; background: rgba(255,255,255,.02); text-align: center;
}
.ui-stat b { display: block; font-size: 1.25rem; }
.ui-stat span { font-size: .55rem; color: var(--ink-3); letter-spacing: .08em; }
.ui-stat.blue { border-inline-start-color: var(--blue); } .ui-stat.blue b { color: var(--blue); }
.ui-stat.green { border-inline-start-color: var(--green); } .ui-stat.green b { color: var(--green); }
.ui-stat.amber { border-inline-start-color: var(--amber); } .ui-stat.amber b { color: var(--amber); }
.ui-stat.red { border-inline-start-color: var(--red); } .ui-stat.red b { color: var(--red); }
.ui-stat.violet { border-inline-start-color: var(--violet); } .ui-stat.violet b { color: var(--violet); }
.ui-stat.grey b { color: var(--ink-3); }

.ui-rooms { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; padding: 0 1rem 1rem; }
.ui-room {
  border: 1px solid var(--line-soft); border-top: 3px solid var(--green);
  border-radius: 10px; padding: .7rem; background: rgba(255,255,255,.02); font-size: .8rem;
}
.ui-room.amber { border-top-color: var(--amber); }
.ui-room.red { border-top-color: var(--red); }
.ui-room.grey { border-top-color: var(--ink-3); }
.ui-room b { display: block; font-size: .9rem; margin-bottom: .1rem; }
.ui-room span { color: var(--ink-3); font-size: .72rem; }
.ui-room i { float: inline-end; font-style: normal; font-size: .6rem; font-weight: 700; letter-spacing: .05em; }
.ui-room i.ok { color: var(--green); } .ui-room i.amber { color: var(--amber); }
.ui-room i.red { color: var(--red); } .ui-room i.grey { color: var(--ink-3); }
.ui-bar { height: 4px; border-radius: 3px; background: rgba(255,255,255,.07); margin: .6rem 0 .3rem; overflow: hidden; }
.ui-bar u { display: block; height: 100%; background: var(--green); }
.ui-bar.amber u { background: var(--amber); } .ui-bar.red u { background: var(--red); }
.ui-room em { font-style: normal; font-size: .68rem; color: var(--ink-3); }

.ui-detail { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; padding: 0 1rem 1rem; }
.ui-dev, .ui-group { border: 1px solid var(--line-soft); border-radius: 10px; padding: .8rem; background: rgba(255,255,255,.02); }
.ui-dev-head, .ui-group-head { display: flex; justify-content: space-between; align-items: center; gap: .5rem; }
.ui-model { font-size: .72rem; color: var(--ink-3); }
.ui-phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem; margin: .7rem 0; }
.ui-phases div { border: 1px solid var(--line-soft); border-radius: 8px; padding: .4rem .5rem; }
.ui-phases span { font-size: .6rem; color: var(--ink-3); display: block; }
.ui-phases b { font-size: .92rem; } .ui-phases b small { font-size: .62em; color: var(--ink-3); }
.ui-phases em { font-style: normal; font-size: .7rem; color: var(--green); display: block; }
.ui-kv { display: grid; grid-template-columns: repeat(2, 1fr); gap: .4rem .8rem; font-size: .8rem; }
.ui-kv.wide { grid-template-columns: repeat(3, 1fr); }
.ui-kv div { display: flex; justify-content: space-between; gap: .5rem; border-bottom: 1px dashed var(--line-soft); padding: .22rem 0; }
.ui-kv span { color: var(--ink-3); }
.ui-kv b small { font-size: .7em; color: var(--ink-3); }
.ui-kv b.green { color: var(--green); }
.ui-kv b.dim { color: var(--ink-3); font-weight: 500; font-size: .78rem; }

.fineprint { margin-top: 1rem; font-size: .85rem; color: var(--ink-3); }

/* features */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.feature { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.4rem; background: rgba(255,255,255,.02); }
.feature h3 { color: #fff; margin-bottom: .7rem; padding-bottom: .55rem; border-bottom: 1px solid var(--line-soft); }
.feature ul { margin: 0; padding: 0; list-style: none; display: grid; gap: .5rem; }
.feature li { position: relative; padding-inline-start: 1.35rem; font-size: .92rem; color: var(--ink-2); }
.feature li::before {
  content: ''; position: absolute; inset-inline-start: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 2px; background: var(--blue);
}

/* device matrix */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.matrix { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 720px; }
.matrix th, .matrix td { padding: .95rem 1.1rem; text-align: start; vertical-align: top; border-bottom: 1px solid var(--line-soft); }
.matrix thead th { background: rgba(255,255,255,.03); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
html[lang='ar'] .matrix thead th { letter-spacing: normal; }
.matrix tbody tr:last-child td { border-bottom: 0; }
.matrix td span { color: var(--ink-3); font-size: .85em; }
.matrix td:last-child { color: var(--ink-2); }

.note { margin-top: 1.2rem; border: 1px solid var(--line); border-inline-start: 3px solid var(--blue); border-radius: 12px; padding: 1rem 1.2rem; background: rgba(59,125,255,.05); }
.note b { display: block; margin-bottom: .3rem; }
.note p { margin: 0; font-size: .92rem; }

/* deployment */
.split { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 1.6rem; align-items: start; }
.steps { counter-reset: s; list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.steps li { counter-increment: s; position: relative; padding-inline-start: 3.1rem; }
.steps li::before {
  content: counter(s); position: absolute; inset-inline-start: 0; top: 0;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  display: grid; place-items: center; font-weight: 700; font-size: .95rem;
  background: rgba(59,125,255,.12); color: var(--blue); border: 1px solid rgba(59,125,255,.35);
}
.steps b { display: block; margin-bottom: .2rem; }
.steps span { color: var(--ink-2); font-size: .93rem; }

.spec { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; background: rgba(255,255,255,.02); }
.spec h3 { margin-bottom: .8rem; }
.spec dl { margin: 0; display: grid; gap: .75rem; }
.spec dt { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
html[lang='ar'] .spec dt { letter-spacing: normal; }
.spec dd { margin: .1rem 0 0; font-size: .9rem; color: var(--ink-2); }

/* faq */
details { border: 1px solid var(--line); border-radius: 12px; padding: .95rem 1.2rem; margin-bottom: .6rem; background: rgba(255,255,255,.02); }
details[open] { border-color: rgba(59,125,255,.4); }
summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; color: var(--blue); font-size: 1.2rem; line-height: 1; }
details[open] summary::after { content: '–'; }
details p { margin: .7rem 0 0; font-size: .93rem; }

/* ------------------------------------------------------- the Dar Alnashir mark

  One rule for the logo in all five places. The file has a transparent background - only the white
  AROUND the mark was cleared, so the white N, the white C and the globe's grid are still white -
  which is why it needs no plate behind it and sits directly on the dark page.
*/
.dnc-mark {
  width: auto; height: auto; display: block;
  object-fit: contain;
  /* Never shrinks: inside a flex row the mark was squeezed to half its width and the oval
     turned into an egg. Its height is set per placement; the width follows the ratio. */
  flex: none;
  max-width: none;
  /* A hairline of light under the mark stops the blue half from disappearing into the background. */
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, .18));
}

/* header: DNX, a hairline, then the company that makes it */
.by-dnc {
  display: inline-flex; align-items: center; gap: .5rem;
  padding-inline-start: 1rem; margin-inline-start: .1rem;
  border-inline-start: 1px solid var(--line);
}
.by-label {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3);
}
html[lang='ar'] .by-label { letter-spacing: normal; }
.by-dnc .dnc-mark { height: 26px; opacity: .92; transition: opacity .16s ease; }
.by-dnc:hover .dnc-mark { opacity: 1; }

/* under the hero eyebrow */
.made-by {
  display: inline-flex; align-items: center; gap: .65rem;
  margin: -.2rem 0 1.3rem; color: var(--ink-3); font-size: .84rem;
}
.made-by .dnc-mark { height: 34px; }

.section.company {
  background:
    linear-gradient(180deg, rgba(32,71,150,.16), transparent 65%),
    var(--bg);
  border-block: 1px solid var(--line-soft);
}
.company-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.company-mark {
  position: relative;
  border-radius: 20px; padding: clamp(1.6rem, 4vw, 2.6rem) clamp(1.2rem, 3vw, 2rem);
  display: grid; place-items: center; gap: 1.1rem;
  border: 1px solid rgba(130, 188, 67, .28);
  /* A soft halo behind the mark, not a blue wash: the mark's own blue half was sinking into a
     blue-tinted panel, and the point of the panel is to separate it from the page. */
  background:
    radial-gradient(58% 54% at 50% 44%, rgba(255,255,255,.11), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  box-shadow: 0 30px 70px -40px rgba(0,0,0,.95);
}
.company-mark .dnc-mark { width: 100%; max-width: 300px; height: auto; }
.company-mark-caption {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3);
}
html[lang='ar'] .company-mark-caption { letter-spacing: normal; font-size: .8rem; }
.company-text h2 { margin-bottom: .8rem; }
.company-text .eyebrow { color: var(--dnc-green); }

.company-points { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .85rem; }
.company-points li { padding-inline-start: 1.1rem; border-inline-start: 3px solid var(--dnc-green); }
.company-points b { display: block; font-size: .96rem; }
.company-points span { color: var(--ink-2); font-size: .9rem; }

/* cta + footer */
.section.cta h2 { margin-bottom: .6rem; }
/* A block-level flex, not inline: as an inline box it shared the line with the e-mail button. */
.cta-note {
  margin-top: 1.5rem; font-size: .85rem; color: var(--ink-3);
  display: flex; align-items: center; justify-content: center; gap: .6rem; flex-wrap: wrap;
}
.cta-note .dnc-mark { height: 32px; }

.footer { border-top: 1px solid var(--line-soft); padding: 2.2rem 0; background: var(--bg-2); }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand .dnc-mark { height: 42px; }
.footer-top strong { font-size: 1.05rem; display: block; }
.footer-top span { font-size: .85rem; color: var(--ink-3); }
.footer-top a { color: var(--blue); font-weight: 600; }
.trademark { margin: 1.2rem 0 0; font-size: .74rem; color: var(--ink-3); line-height: 1.7; max-width: 90ch; }

/* ----------------------------------------------------------------- mobile */

@media (max-width: 1240px) {
  .by-dnc { display: none; }
}

@media (max-width: 1000px) {
  .hero-grid, .split, .ui-detail { grid-template-columns: 1fr; }
  .cards.four { grid-template-columns: repeat(2, 1fr); }
  .company-grid { grid-template-columns: 1fr; }
  .cards.three { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .ui-stats { grid-template-columns: repeat(4, 1fr); }
  .ui-rooms { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
}

@media (max-width: 620px) {
  .cards.four { grid-template-columns: 1fr; }
  .ui-stats { grid-template-columns: repeat(2, 1fr); }
  .ui-rooms { grid-template-columns: 1fr; }
  .card-row, .stat-row { grid-template-columns: 1fr 1fr; }
  .brand-text em { display: none; }
  .hero-cta .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
}
