/* ===========================================================================
   DebateNow — marketing landing (v2)
   Bright, premium SaaS / sports-landing aesthetic. White + whitespace,
   big rounded photo cards, near-black navy cards, one electric-blue accent,
   Inter grotesque type, pill buttons. Self-contained: this stylesheet is
   linked ONLY from marketing/landing.php and does not touch app.css.
   =========================================================================== */

:root {
  --nav-h: 84px;

  --paper:     #ffffff;
  --mist:      #f3f5fa;   /* section wash */
  --mist-2:    #eef1f8;   /* light card */
  --ink:       #0c1020;   /* near-black navy text */
  --ink-2:     #2a3048;
  --muted:     #5c6377;
  --faint:     #61687d;
  --line:      rgba(12, 16, 32, 0.10);
  --line-2:    rgba(12, 16, 32, 0.16);

  --blue:      #2b5cff;   /* electric royal accent */
  --blue-deep: #1c43d8;
  --blue-wash: #e7edff;

  --navy:      #0d1330;   /* dark card background */
  --navy-2:    #131a3d;

  --radius:    26px;
  --radius-sm: 16px;
  --radius-pill: 999px;

  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow-card: 0 1px 2px rgba(12,16,32,.04), 0 18px 40px -24px rgba(12,16,32,.22);
  --shadow-soft: 0 1px 2px rgba(12,16,32,.04), 0 10px 30px -20px rgba(12,16,32,.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { min-height: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.dn-wrap { max-width: 1240px; margin: 0 auto; padding: 0 clamp(18px, 4vw, 40px); }

/* ---- shared pills / buttons -------------------------------------------- */
.dn-pill {
  display: inline-flex; align-items: center; gap: 10px;
  height: 52px; padding: 0 10px 0 24px;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  white-space: nowrap; cursor: pointer; border: 0;
  transition: transform .14s ease, background .18s ease, box-shadow .18s ease;
}
.dn-pill .arr {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  font-size: 15px; line-height: 1;
}
.dn-pill:active { transform: translateY(1px); }

.dn-pill--dark { background: var(--ink); color: #fff; }
.dn-pill--dark .arr { background: rgba(255,255,255,.14); color: #fff; }
.dn-pill--dark:hover { background: #060a1c; box-shadow: var(--shadow-soft); }

.dn-pill--blue { background: var(--blue); color: #fff; }
.dn-pill--blue .arr { background: rgba(255,255,255,.22); color: #fff; }
.dn-pill--blue:hover { background: var(--blue-deep); box-shadow: 0 12px 30px -14px rgba(43,92,255,.6); }

.dn-pill--ghost {
  height: 52px; padding: 0 22px; background: transparent; color: var(--ink);
  border: 1px solid var(--line-2);
}
.dn-pill--ghost:hover { border-color: var(--ink); }

/* small status / label pills */
.dn-chip {
  display: inline-flex; align-items: center; gap: 8px;
  height: 34px; padding: 0 16px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; letter-spacing: -0.005em;
  background: var(--mist); color: var(--ink-2);
  border: 1px solid var(--line);
}
.dn-chip--solid { background: var(--ink); color: #fff; border-color: transparent; }
.dn-chip--blue  { background: var(--blue-wash); color: var(--blue-deep); border-color: transparent; }
.dn-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex: none; }
.dn-chip--live .dot { background: #34d07a; box-shadow: 0 0 0 3px rgba(52,208,122,.22); }

.dn-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  height: 32px; padding: 0 15px; border-radius: var(--radius-pill);
  background: var(--mist); border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.01em; color: var(--ink-2);
}
.dn-eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }

/* ---- nav ---------------------------------------------------------------- */
.dn-nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.82); backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid var(--line); }
.dn-nav-in {
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.dn-brand { display: inline-flex; align-items: center; gap: 11px; }
.dn-brand .mark {
  width: 38px; height: 38px; border-radius: 12px; flex: none;
  background: var(--ink); color: #fff; display: grid; place-items: center;
}
.dn-brand .mark svg { width: 21px; height: 21px; }
.dn-brand .word { font-size: 21px; font-weight: 700; letter-spacing: -0.03em; }
.dn-brand .word b { color: var(--blue); font-weight: 700; }

.dn-navlinks {
  display: flex; align-items: center; gap: 4px;
  background: var(--mist); border: 1px solid var(--line);
  padding: 6px; border-radius: var(--radius-pill);
}
.dn-navlinks a {
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: background .16s ease, color .16s ease;
}
.dn-navlinks a:hover { background: #fff; color: var(--ink); box-shadow: var(--shadow-soft); }

.dn-nav-right { display: flex; align-items: center; gap: 14px; }
.dn-nav-right .dn-pill { height: 46px; font-size: 14px; padding: 0 8px 0 20px; }
.dn-nav-right .dn-pill .arr { width: 30px; height: 30px; }
.dn-nav-login { font-size: 14px; font-weight: 600; color: var(--ink-2); padding: 8px 4px; }
.dn-nav-login:hover { color: var(--ink); }

/* ---- hero --------------------------------------------------------------- */
.dn-hero { padding: clamp(16px, 2.4vw, 26px) 0 0; }
.dn-hero-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; min-height: clamp(540px, 72vh, 720px);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(28px, 5vw, 64px);
  color: #fff; box-shadow: var(--shadow-card);
}
.dn-hero-card .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; z-index: 0; }
.dn-hero-card .scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,11,26,.55) 0%, rgba(8,11,26,.22) 38%, rgba(8,11,26,.62) 100%),
    linear-gradient(105deg, rgba(8,11,26,.6) 0%, rgba(8,11,26,.05) 60%);
}
.dn-hero-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; text-align: center; }
.dn-hero .dn-chip { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.22); backdrop-filter: blur(4px); }
.dn-hero h1 {
  font-size: clamp(38px, 6vw, 70px); line-height: 1.02; letter-spacing: -0.035em;
  font-weight: 600; margin: 20px auto 18px; max-width: 16ch; text-wrap: balance;
}
.dn-hero h1 b { font-weight: 700; }
.dn-hero .sub { font-size: clamp(16px, 1.5vw, 19px); color: rgba(255,255,255,.86); max-width: 52ch; margin: 0 auto 30px; }
.dn-hero .dn-pill--dark { background: #fff; color: var(--ink); }
.dn-hero .dn-pill--dark .arr { background: var(--blue); color: #fff; }
.dn-hero .dn-pill--dark:hover { background: #fff; box-shadow: 0 16px 40px -16px rgba(0,0,0,.5); }

.dn-hero-foot {
  position: relative; z-index: 2; margin-top: auto;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 18px;
  padding-top: clamp(32px, 6vw, 56px); flex-wrap: wrap;
}
.dn-social-proof { display: flex; align-items: center; gap: 14px; }
.dn-avatars { display: flex; }
.dn-avatars img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,255,255,.85); margin-left: -12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.dn-avatars img:first-child { margin-left: 0; }
.dn-proof-text { font-size: 14px; color: rgba(255,255,255,.9); line-height: 1.35; max-width: 22ch; }
.dn-proof-text b { display: block; font-weight: 600; color: #fff; }
.dn-hero-social { display: flex; align-items: center; gap: 8px; }
.dn-hero-social a {
  display: inline-flex; align-items: center; gap: 6px;
  height: 38px; padding: 0 14px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  font-size: 13px; font-weight: 600; color: #fff;
  transition: background .16s ease;
}
.dn-hero-social a:hover { background: rgba(255,255,255,.24); }

/* ---- about strip -------------------------------------------------------- */
.dn-about { padding: clamp(64px, 9vw, 116px) 0 clamp(40px, 6vw, 72px); }
.dn-about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 6vw, 80px); align-items: start; }
.dn-about h2 {
  font-size: clamp(26px, 3.4vw, 42px); line-height: 1.08; letter-spacing: -0.03em;
  font-weight: 600; text-wrap: balance;
}
.dn-about h2 .hl { color: var(--blue); }
.dn-about p { font-size: clamp(15px, 1.3vw, 17px); color: var(--muted); max-width: 46ch; }
.dn-about p + p { margin-top: 16px; }

/* ---- feature row (3 cards) --------------------------------------------- */
.dn-features { padding-bottom: clamp(8px, 2vw, 20px); }
.dn-fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dn-card { border-radius: var(--radius); overflow: hidden; min-height: 340px; }

.dn-card--navy {
  background: var(--navy); color: #fff; padding: 30px;
  display: flex; flex-direction: column; gap: 16px;
  background-image: radial-gradient(120% 90% at 100% 0%, rgba(43,92,255,.35) 0%, rgba(43,92,255,0) 55%);
}
.dn-card--navy .icn {
  width: 52px; height: 52px; border-radius: 14px; flex: none;
  background: rgba(255,255,255,.1); display: grid; place-items: center; color: #fff;
}
.dn-card--navy .icn svg { width: 26px; height: 26px; }
.dn-card--navy h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; margin-top: 6px; }
.dn-card--navy p { font-size: 15px; color: rgba(255,255,255,.74); max-width: 30ch; }
.dn-card--navy .dn-chip { margin-top: auto; align-self: flex-start; background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.18); }

.dn-card--photo { position: relative; }
.dn-card--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dn-card--photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,11,26,.05) 40%, rgba(8,11,26,.5) 100%); }
.dn-card--photo .label { position: absolute; left: 22px; bottom: 22px; z-index: 2; }
.dn-card--photo .label .dn-chip { background: rgba(255,255,255,.92); color: var(--ink); border-color: transparent; backdrop-filter: blur(4px); }

.dn-card--light {
  background: var(--mist); padding: 30px; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
}
.dn-bignum { font-size: clamp(46px, 5vw, 62px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.dn-bignum span { color: var(--blue); }
.dn-card--light .cap { font-size: 15px; color: var(--muted); margin-top: -4px; }
.dn-statbars { margin-top: auto; display: grid; gap: 12px; }
.dn-statbar { display: flex; align-items: center; gap: 12px; }
.dn-statbar .nm { font-size: 13px; font-weight: 600; color: var(--ink-2); width: 64px; flex: none; }
.dn-dots { display: flex; gap: 5px; flex: 1; }
.dn-dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); }
.dn-dots i.on { background: var(--blue); }
.dn-statbar .vl { font-size: 13px; font-weight: 700; color: var(--ink); width: 30px; text-align: right; flex: none; font-variant-numeric: tabular-nums; }

/* ---- stats strip -------------------------------------------------------- */
.dn-stats { padding: clamp(64px, 9vw, 116px) 0; text-align: center; }
.dn-stats .dn-eyebrow { margin-bottom: 14px; }
.dn-stats h2 { font-size: clamp(26px, 3.4vw, 42px); font-weight: 600; letter-spacing: -0.03em; margin-bottom: clamp(34px, 5vw, 56px); }
.dn-stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dn-stat { padding: 8px 6px; border-left: 1px solid var(--line); }
.dn-stat:first-child { border-left: 0; }
.dn-stat .n { font-size: clamp(34px, 4.4vw, 56px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.dn-stat .n span { color: var(--blue); }
.dn-stat .l { font-size: 14px; color: var(--muted); margin-top: 10px; }

/* ---- services ----------------------------------------------------------- */
.dn-services { padding-bottom: clamp(64px, 9vw, 116px); }
.dn-services-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 30px; flex-wrap: wrap; }
.dn-services-head .lead { max-width: 38ch; }
.dn-services-head .dn-eyebrow { margin-bottom: 14px; }
.dn-services-head h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; }
.dn-arrows { display: flex; gap: 10px; }
.dn-arrows button {
  width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line-2);
  background: #fff; color: var(--ink); font-size: 18px; cursor: pointer;
  display: grid; place-items: center; transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.dn-arrows button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.dn-sgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dn-service {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; color: #fff; box-shadow: var(--shadow-soft);
}
.dn-service img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.dn-service::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,11,26,.12) 30%, rgba(8,11,26,.72) 100%); }
.dn-service .row { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.dn-service .dn-chip { background: rgba(255,255,255,.92); color: var(--ink); border-color: transparent; }
.dn-service .go {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: #fff; color: var(--ink); display: grid; place-items: center; font-size: 17px;
  transition: background .16s ease, color .16s ease;
}
.dn-service:hover .go { background: var(--blue); color: #fff; }

/* ---- pricing ------------------------------------------------------------ */
.dn-pricing { padding-bottom: clamp(64px, 9vw, 116px); }
.dn-price-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(24px, 5vw, 56px); align-items: center; }
.dn-pricing .dn-eyebrow { margin-bottom: 16px; }
.dn-pricing h2 { font-size: clamp(28px, 3.6vw, 46px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.06; margin-bottom: 16px; text-wrap: balance; }
.dn-pricing .blurb { font-size: clamp(15px, 1.3vw, 17px); color: var(--muted); max-width: 42ch; margin-bottom: 22px; }
.dn-free-note { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-2); }
.dn-free-note b { font-weight: 700; }

.dn-procard {
  background: var(--blue); color: #fff; border-radius: var(--radius); padding: clamp(28px, 3vw, 40px);
  position: relative; overflow: hidden; box-shadow: 0 30px 60px -30px rgba(43,92,255,.7);
  background-image: radial-gradient(120% 100% at 0% 0%, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 50%);
}
.dn-procard .top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.dn-procard .pname { font-size: 17px; font-weight: 600; opacity: .9; }
.dn-procard .popular { background: #fff; color: var(--blue-deep); height: 30px; padding: 0 14px; }
.dn-procard .popular .dot { background: var(--blue); }
.dn-procard .price { font-size: clamp(44px, 5vw, 60px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.dn-procard .price small { font-size: 17px; font-weight: 500; opacity: .82; letter-spacing: 0; }
.dn-procard ul { list-style: none; margin: 24px 0; display: grid; gap: 13px; }
.dn-procard li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.dn-procard li svg { width: 20px; height: 20px; flex: none; }
.dn-procard .dn-pill { width: 100%; justify-content: space-between; background: #fff; color: var(--blue-deep); }
.dn-procard .dn-pill .arr { background: var(--blue); color: #fff; }
.dn-procard .dn-pill:hover { background: #f2f5ff; }

/* ---- footer ------------------------------------------------------------- */
.dn-foot { background: var(--ink); color: #fff; border-radius: var(--radius) var(--radius) 0 0; }
.dn-foot-in { padding: clamp(40px, 6vw, 64px) 0 32px; }
.dn-foot-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.12); }
.dn-foot .dn-brand .mark { background: #fff; color: var(--ink); }
.dn-foot .dn-brand .word { color: #fff; }
.dn-foot .dn-brand .word b { color: #6f93ff; }
.dn-foot-tag { font-size: 15px; color: rgba(255,255,255,.66); max-width: 30ch; margin-top: 16px; }
.dn-foot-cols { display: flex; gap: clamp(40px, 6vw, 80px); flex-wrap: wrap; }
.dn-foot-col h3 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,.5); margin-bottom: 14px; font-weight: 600; }
.dn-foot-col a { display: block; font-size: 14.5px; color: rgba(255,255,255,.82); padding: 5px 0; }
.dn-foot-col a:hover { color: #fff; }
.dn-foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; }
.dn-foot-bottom .meta { font-size: 13px; color: rgba(255,255,255,.55); display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.dn-foot-bottom .meta a { color: rgba(255,255,255,.7); }
.dn-foot-bottom .meta a:hover { color: #fff; }
.dn-lang { display: inline-flex; align-items: center; gap: 8px; }
.dn-lang a { padding: 4px 9px; border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,.18); font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.78); }
.dn-lang a[aria-current="true"] { background: #fff; color: var(--ink); border-color: #fff; }

/* Language dropdown (once the UI ships more than four languages). */
.dn-lang-menu { position: relative; font-size: 12.5px; }
.dn-lang-menu > summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.82); font-weight: 600;
}
.dn-lang-menu > summary::-webkit-details-marker { display: none; }
.dn-lang-menu > summary:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.dn-lang-menu ul {
  position: absolute; bottom: calc(100% + 8px); right: 0; z-index: 40; margin: 0; padding: 6px;
  list-style: none; min-width: 180px; max-height: 320px; overflow-y: auto;
  background: #fff; border-radius: 14px; box-shadow: 0 20px 50px -20px rgba(8,11,26,.55);
}
.dn-lang-menu ul a { display: block; padding: 8px 12px; border-radius: 9px; color: var(--ink); font-weight: 500; border: 0; }
.dn-lang-menu ul a:hover { background: var(--mist); }
.dn-lang-menu ul a[aria-current="true"] { color: var(--blue); font-weight: 700; background: transparent; }

/* ---- responsive --------------------------------------------------------- */
@media (max-width: 980px) {
  .dn-fgrid, .dn-sgrid { grid-template-columns: 1fr 1fr; }
  .dn-stat-row { grid-template-columns: 1fr 1fr; gap: 0; }
  .dn-stat { padding: 22px 6px; }
  .dn-stat:nth-child(odd) { border-left: 0; }
  .dn-stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .dn-about-grid, .dn-price-grid { grid-template-columns: 1fr; }
  .dn-price-grid .dn-procard { order: -1; }
}

@media (max-width: 820px) {
  .dn-navlinks { display: none; }
  /* Keep Log in visible: it is the landing's ONLY sign-in affordance. Compact
     ghost pill next to the primary CTA. */
  .dn-nav-login {
    display: inline-flex; align-items: center;
    height: 44px; padding: 0 16px;
    border: 1px solid var(--line-2); border-radius: var(--radius-pill);
  }
}

@media (max-width: 640px) {
  :root { --nav-h: 70px; --radius: 22px; }
  .dn-fgrid, .dn-sgrid { grid-template-columns: 1fr; }
  .dn-card, .dn-service { min-height: 300px; }
  .dn-hero-card { min-height: 540px; padding: 24px; }
  .dn-hero-foot { gap: 22px; }
  .dn-hero-social { display: none; }
  .dn-stat-row { grid-template-columns: 1fr 1fr; }
  .dn-stat .n { font-size: 38px; }
  .dn-services-head { gap: 16px; }
  .dn-arrows { display: none; }
}

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

/* ---- motion of the day band -------------------------------------------- */
.dn-motd-sec { padding: 22px 0 18px; }
.dn-motd {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff; border-radius: var(--radius);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-card);
}
.dn-motd-top {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-bottom: 18px; margin-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.dn-eyebrow--light { color: #8ea6ff; }
.dn-motd-date {
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.dn-motd-text {
  font-size: clamp(24px, 3.2vw, 36px); font-weight: 600; line-height: 1.16;
  letter-spacing: -0.02em; max-width: 24ch; margin-bottom: 28px;
}
.dn-pill--light { background: #fff; color: var(--navy); }
.dn-pill--light .arr { background: rgba(12,16,32,.08); color: var(--navy); }
.dn-pill--light:hover { box-shadow: var(--shadow-soft); transform: translateY(-1px); }
@media (max-width: 640px) { .dn-motd-text { font-size: 23px; } }

/* Skip link (a11y): hidden until keyboard focus. */
.skip-link {
  position: absolute; left: 14px; top: -60px; z-index: 200;
  background: var(--blue); color: #fff; font-weight: 600; font-size: 14px;
  padding: 12px 18px; border-radius: var(--radius-pill);
  transition: top 0.12s ease;
}
.skip-link:focus-visible { top: 12px; outline: 2px solid var(--ink); outline-offset: 2px; }

/* Very narrow screens: compress the nav row so brand + Log in + CTA fit. */
@media (max-width: 480px) {
  .dn-nav-right { gap: 8px; }
  .dn-nav-right .dn-pill { height: 42px; font-size: 13px; padding: 0 16px; }
  .dn-nav-right .dn-pill .arr { display: none; }
  .dn-nav-login { height: 42px; padding: 0 13px; font-size: 13px; }
  .dn-brand .word { font-size: 18px; }
  .dn-brand .mark { width: 34px; height: 34px; }
}
