/* ============================================================
   DawaDrishti - dawadrishti.in
   One page, image led. Dark ink base with two light sections.
   ============================================================ */

:root {
  --ink:        #06121f;
  --ink-2:      #0b1e30;
  --ink-3:      #12293e;
  --line:       rgba(255,255,255,.11);
  --line-dark:  rgba(6,18,31,.12);

  --paper:      #f5f7f9;
  --paper-2:    #ffffff;

  --text:       #e8eef4;
  --text-dim:   #9fb3c4;
  --text-ink:   #0d1d2c;
  --text-ink-d: #4d6274;

  --teal:       #2fd6bd;
  --teal-deep:  #0f8f7e;
  --saffron:    #f5a524;
  --alert:      #f2555a;

  --wrap:       1220px;
  --r:          14px;
  --r-lg:       22px;

  --fs-display: clamp(2.45rem, 6.4vw, 5.1rem);
  --fs-h2:      clamp(1.85rem, 3.9vw, 3.1rem);
  --fs-h3:      clamp(1.06rem, 1.5vw, 1.24rem);
  --fs-lede:    clamp(1.02rem, 1.65vw, 1.28rem);

  --sans: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* height:auto matters. Every <img> carries width/height attributes for CLS,
   and those map to presentational hints. An `aspect-ratio` rule is ignored
   while height resolves to the attribute value instead of auto, which made
   a 1400x2100 photo render 2100px tall inside a 16/10 card. Rules that set
   height:100% themselves are more specific and still win. */
img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

h1, h2, h3 { line-height: 1.08; letter-spacing: -.022em; margin: 0; font-weight: 600; }
h1 { font-size: var(--fs-display); letter-spacing: -.035em; font-weight: 700; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -.012em; }
p  { margin: 0; }

.wrap { width: min(100% - 2.6rem, var(--wrap)); margin-inline: auto; }

.sr-only, .skip {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip:focus {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  width: auto; height: auto; clip: auto; margin: 0;
  padding: .7rem 1.1rem; background: var(--teal); color: #05201c;
  border-radius: 8px; font-weight: 600;
}

:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }


/* ---------------- reveal ----------------
   Scoped to .js (set by an inline script in <head>). The hidden state only
   exists when the script that can undo it is running, so a no-JS render or a
   crawler that never fires IntersectionObserver still sees every section. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.8,.3,1); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .92rem 1.6rem; border: 0; border-radius: 999px;
  background: var(--teal); color: #04211d;
  font: inherit; font-weight: 600; font-size: .98rem; letter-spacing: -.005em;
  text-decoration: none; cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 30px -14px rgba(47,214,189,.8);
}
.btn:hover { background: #55e6d1; transform: translateY(-2px); }
.btn:active { transform: none; }
.btn-ghost {
  background: transparent; color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
}
.btn-ghost:hover { background: rgba(255,255,255,.07); box-shadow: inset 0 0 0 1px rgba(255,255,255,.5); }
.btn-sm { padding: .62rem 1.15rem; font-size: .89rem; box-shadow: none; }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.04rem; }
.btn[disabled] { opacity: .55; cursor: progress; transform: none; }

/* ---------------- header ---------------- */
.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-head.stuck {
  background: rgba(6,18,31,.86);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line);
}
.head-in { display: flex; align-items: center; gap: 1.4rem; padding: .95rem 0; }
.brand { display: flex; align-items: center; gap: .62rem; text-decoration: none; color: var(--teal); }
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-name { color: #fff; font-weight: 700; font-size: 1.06rem; letter-spacing: -.025em; line-height: 1.1; }

.head-nav { display: flex; gap: 1.55rem; margin-left: auto; }
.head-nav a {
  color: var(--text-dim); text-decoration: none; font-size: .93rem; font-weight: 500;
  padding: .2rem 0; border-bottom: 1px solid transparent; transition: color .2s, border-color .2s;
}
.head-nav a:hover { color: #fff; border-color: var(--teal); }
.head-in .btn-sm { flex: none; }

.head-toggle { display: none; background: none; border: 0; padding: .55rem; cursor: pointer; }
.head-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; margin: 5px 0; transition: transform .25s, opacity .2s; }
.head-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.head-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.head-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; padding: .4rem 1.3rem 1.4rem; background: rgba(6,18,31,.97); backdrop-filter: blur(14px); border-top: 1px solid var(--line); }
.mobile-nav a { color: var(--text); text-decoration: none; padding: .82rem 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.mobile-nav a:last-child { border: 0; color: var(--teal); }

@media (max-width: 900px) {
  .head-nav, .head-in .btn-sm { display: none; }
  .head-toggle { display: block; margin-left: auto; }
  .mobile-nav:not([hidden]) { display: flex; }
}

/* ---------------- hero ---------------- */
.hero { position: relative; min-height: min(100svh, 900px); display: flex; align-items: flex-end; overflow: hidden; }
.hero-img { position: absolute; inset: 0; }
/* Pushed right so the pharmacist sits clear of the headline column. */
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: 78% 50%; }
@media (max-width: 760px) { .hero-img img { object-position: 66% 50%; } }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--ink) 2%, rgba(6,18,31,.92) 30%, rgba(6,18,31,.55) 62%, rgba(6,18,31,.72) 100%),
    linear-gradient(to right, rgba(6,18,31,.9) 0%, rgba(6,18,31,.35) 62%, rgba(6,18,31,.1) 100%);
}
.hero-in { position: relative; padding: 10rem 0 6.5rem; max-width: 980px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--teal); font-size: .82rem; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero h1 { max-width: 16ch; text-wrap: balance; }
.lede { color: #cfdce6; font-size: var(--fs-lede); max-width: 60ch; margin-top: 1.5rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.4rem; }
.hero-note { color: var(--text-dim); font-size: .87rem; margin-top: 1.55rem; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 1.5rem; translate: -50% 0;
  width: 34px; height: 34px; color: var(--text-dim);
  animation: bob 2.6s ease-in-out infinite;
}
.scroll-cue svg { width: 100%; height: 100%; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
@media (prefers-reduced-motion: reduce) { .scroll-cue { animation: none; } }
@media (max-width: 760px) { .scroll-cue { display: none; } }

/* ---------------- facts ---------------- */
.facts { background: var(--ink-2); border-block: 1px solid var(--line); padding: 3.2rem 0; }
.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.3rem; margin: 0; }
.fact dt, .fact dd { margin: 0; }
.fact-num {
  font-size: clamp(2.1rem, 3.6vw, 3rem); font-weight: 700; letter-spacing: -.045em;
  color: var(--teal); line-height: 1; margin-bottom: .7rem;
}
.fact dd { color: var(--text-dim); font-size: .93rem; line-height: 1.55; }
.src { color: var(--text); text-decoration-color: rgba(255,255,255,.35); text-underline-offset: 3px; white-space: nowrap; }
.src:hover { color: var(--teal); }
@media (max-width: 980px) { .fact-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.8rem; } }
@media (max-width: 520px) { .fact-grid { grid-template-columns: 1fr; } }

/* ---------------- generic section ---------------- */
.sec { padding: 6.5rem 0; position: relative; }
.kicker {
  color: var(--teal-deep); font-size: .77rem; font-weight: 700;
  letter-spacing: .17em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.kicker.light { color: var(--teal); }
.sec h2 { max-width: 20ch; text-wrap: balance; }
.sec-lede { color: var(--text-dim); font-size: var(--fs-lede); max-width: 62ch; margin-top: 1.35rem; }

/* ---------------- problem ---------------- */
.problem { background: var(--paper); color: var(--text-ink); }
.problem h2 { color: var(--text-ink); }
.problem .sec-lede { color: var(--text-ink-d); }

.mosaic {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.1rem;
  margin-top: 3.4rem;
}
.mosaic figure { margin: 0; position: relative; border-radius: var(--r-lg); overflow: hidden; background: #dde3e9; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.m-tall { grid-column: span 2; grid-row: span 2; aspect-ratio: 3/4.5; }
.m-wide { grid-column: span 4; aspect-ratio: 16/9; }
.m-sq   { grid-column: span 2; aspect-ratio: 1/1; }
.mosaic figcaption {
  position: absolute; inset: auto 0 0 0; padding: 2.6rem 1.15rem 1.05rem;
  color: #fff; font-size: .93rem; font-weight: 500; line-height: 1.4;
  background: linear-gradient(to top, rgba(4,14,24,.92), rgba(4,14,24,0));
}
@media (max-width: 760px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .m-tall { grid-column: span 2; grid-row: auto; aspect-ratio: 4/3; }
  .m-wide { grid-column: span 2; }
  .m-sq   { grid-column: span 1; }
}

.plain-list { list-style: none; padding: 0; margin: 3rem 0 0; display: grid; gap: .95rem; max-width: 70ch; }
.plain-list li {
  position: relative; padding-left: 1.7rem; color: var(--text-ink-d); font-size: 1.02rem;
}
.plain-list li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 9px; height: 9px; border-radius: 2px; background: var(--alert); opacity: .85;
}

/* ---------------- one scan ---------------- */
.scan { background: var(--ink); }
.scan-body { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.4rem; align-items: center; margin-top: 3.6rem; }
.scan-shot { margin: 0; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--ink-3); }
.scan-shot img { width: 100%; height: 100%; object-fit: cover; }

.steps { list-style: none; margin: 0; padding: 0; counter-reset: s; display: grid; gap: 1.5rem; }
.steps li { display: grid; grid-template-columns: auto 1fr; gap: 0 1.05rem; align-items: start; }
.step-n {
  grid-row: span 2; display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(47,214,189,.13); color: var(--teal);
  font-weight: 700; font-size: .95rem; box-shadow: inset 0 0 0 1px rgba(47,214,189,.32);
}
.steps h3 { color: #fff; padding-top: .38rem; }
.steps p { color: var(--text-dim); margin-top: .3rem; font-size: .98rem; }
@media (max-width: 900px) { .scan-body { grid-template-columns: 1fr; gap: 2.4rem; } }

.band { margin-top: 5.5rem; background: var(--ink-2); border-block: 1px solid var(--line); padding: 3.6rem 0; }
.band-in { display: grid; grid-template-columns: .95fr 1.05fr; gap: 3.2rem; align-items: center; }
.band-img { margin: 0; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/2; background: var(--ink-3); }
.band-img img { width: 100%; height: 100%; object-fit: cover; }
.idgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1.6rem; margin: 1.4rem 0 0; }
.idgrid dt { color: var(--teal); font-weight: 700; font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; }
.idgrid dd { margin: .35rem 0 0; color: var(--text); font-size: 1.02rem; }
.band-note { color: var(--text-dim); font-size: .96rem; margin-top: 1.9rem; padding-top: 1.5rem; border-top: 1px solid var(--line); max-width: 56ch; }
@media (max-width: 900px) { .band-in { grid-template-columns: 1fr; gap: 2.2rem; } }
@media (max-width: 460px) { .idgrid { grid-template-columns: 1fr; gap: 1.1rem; } }

/* ---------------- who ---------------- */
.who { background: var(--paper-2); color: var(--text-ink); }
.who h2 { color: var(--text-ink); }
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; margin-top: 3.2rem; }
.tile {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3.35; background: var(--ink-3); isolation: isolate;
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.tile:hover img { transform: scale(1.045); }
.tile::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(4,14,24,.94) 12%, rgba(4,14,24,.45) 52%, rgba(4,14,24,.08) 100%);
}
.tile-copy { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 1.35rem 1.4rem 1.5rem; color: #fff; }
.tile-copy h3 { color: #fff; }
.tile-copy p { color: rgba(232,238,244,.86); font-size: .93rem; margin-top: .45rem; line-height: 1.45; }
.tile-quote { background: var(--ink); display: grid; place-items: center; padding: 2rem; }
.tile-quote::after { display: none; }
.tile-quote blockquote { margin: 0; }
.tile-quote p {
  color: var(--text); font-size: clamp(1.12rem, 1.9vw, 1.42rem); font-weight: 500;
  line-height: 1.35; letter-spacing: -.018em; text-wrap: balance; text-align: center;
}
.tile-quote::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 0%, rgba(47,214,189,.16), transparent 62%);
}
@media (max-width: 980px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .tiles { grid-template-columns: 1fr; } .tile { aspect-ratio: 4/3; } }

/* ---------------- signals ---------------- */
.signals { background: var(--ink); overflow: hidden; }
.signals-bg { position: absolute; inset: 0; z-index: 0; }
.signals-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .26; filter: saturate(.85); }
.signals::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, var(--ink) 0%, rgba(6,18,31,.72) 42%, var(--ink) 100%);
}
.signals-in { position: relative; z-index: 2; }
.sig-list { list-style: none; margin: 2.9rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.sig-list li {
  padding: 1.45rem 1.5rem; border-radius: var(--r);
  background: rgba(11,30,48,.72); backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--text-dim); font-size: .97rem; line-height: 1.5;
  border-left: 3px solid var(--alert);
}
.sig-list strong { display: block; color: #fff; font-weight: 600; margin-bottom: .3rem; font-size: 1.03rem; letter-spacing: -.012em; }
.sig-note { color: var(--text-dim); font-size: .94rem; margin-top: 1.9rem; max-width: 62ch; }
@media (max-width: 760px) { .sig-list { grid-template-columns: 1fr; } }

/* ---------------- roadmap ---------------- */
.roadmap { background: var(--paper); color: var(--text-ink); }
.roadmap h2 { color: var(--text-ink); }
.roadmap .sec-lede { color: var(--text-ink-d); }
.phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 3.2rem; }
.phase { background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 1px 0 var(--line-dark), 0 22px 48px -34px rgba(6,18,31,.5); }
.phase img { width: 100%; height: auto; aspect-ratio: 16/10; object-fit: cover; }
.phase-copy { padding: 1.5rem 1.55rem 1.8rem; }
.phase-tag { color: var(--teal-deep); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.phase-copy h3 { color: var(--text-ink); margin-top: .55rem; }
.phase-copy p { color: var(--text-ink-d); font-size: .96rem; margin-top: .65rem; line-height: 1.55; }
@media (max-width: 860px) { .phases { grid-template-columns: 1fr; } .phase img { aspect-ratio: 16/7; } }

/* ---------------- faq ---------------- */
.faq { background: var(--ink); }
.faq-in { display: grid; grid-template-columns: .78fr 1.22fr; gap: 3.4rem; align-items: start; }
.faq-side { position: sticky; top: 6.5rem; }
.faq-img { margin: 2.2rem 0 0; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--ink-3); }
.faq-img img { width: 100%; height: 100%; object-fit: cover; }
.faq-list { display: grid; gap: .55rem; }
.faq-list details {
  border-radius: var(--r); background: var(--ink-2);
  box-shadow: inset 0 0 0 1px var(--line); overflow: hidden;
  transition: background .2s;
}
.faq-list details[open] { background: var(--ink-3); }
.faq-list summary {
  cursor: pointer; list-style: none; padding: 1.15rem 3rem 1.15rem 1.4rem;
  font-weight: 600; font-size: 1.02rem; color: #fff; letter-spacing: -.012em; position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ""; position: absolute; right: 1.35rem; top: 50%; translate: 0 -50%;
  width: 11px; height: 11px;
  border-right: 2px solid var(--teal); border-bottom: 2px solid var(--teal);
  rotate: 45deg; transition: rotate .25s ease;
}
.faq-list details[open] summary::after { rotate: -135deg; }
.faq-list p { padding: 0 1.4rem 1.35rem; color: var(--text-dim); font-size: .98rem; max-width: 72ch; }
.faq-list a { color: var(--teal); text-underline-offset: 3px; }
@media (max-width: 900px) { .faq-in { grid-template-columns: 1fr; gap: 2.4rem; } .faq-side { position: static; } .faq-img { aspect-ratio: 16/9; } }

/* ---------------- pilot ---------------- */
.pilot { background: var(--ink-2); border-top: 1px solid var(--line); }
.pilot-in { display: grid; grid-template-columns: .92fr 1.08fr; gap: 3.6rem; align-items: start; }
.pilot-img { margin: 2.4rem 0 0; border-radius: var(--r-lg); overflow: hidden; position: relative; aspect-ratio: 3/2; background: var(--ink-3); }
.pilot-img img { width: 100%; height: 100%; object-fit: cover; }
.pilot-img figcaption {
  position: absolute; inset: auto 0 0 0; padding: 3rem 1.25rem 1.15rem;
  color: #fff; font-size: .92rem; line-height: 1.45;
  background: linear-gradient(to top, rgba(4,14,24,.94), rgba(4,14,24,0));
}

.pilot-form {
  background: var(--ink); border-radius: var(--r-lg); padding: 2.2rem;
  box-shadow: inset 0 0 0 1px var(--line), 0 30px 70px -40px rgba(0,0,0,.9);
  display: grid; gap: 1.1rem;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: .45rem; }
.field > span { font-size: .84rem; font-weight: 600; color: var(--text-dim); letter-spacing: .02em; }
.field em { color: var(--teal); font-style: normal; }
.field input, .field select, .field textarea {
  font: inherit; font-size: .97rem; color: var(--text);
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 10px; padding: .78rem .9rem; width: 100%;
  transition: border-color .18s, background .18s;
}
.field textarea { resize: vertical; min-height: 108px; line-height: 1.5; }
.field select { appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--teal) 50%), linear-gradient(135deg, var(--teal) 50%, transparent 50%);
  background-position: calc(100% - 19px) calc(50% + 1px), calc(100% - 13px) calc(50% + 1px);
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 2.4rem;
}
.field select option { background: var(--ink-2); color: var(--text); }
.field input::placeholder, .field textarea::placeholder { color: #6a8298; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); background: var(--ink-3);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--alert); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.pilot-form .btn-lg { justify-self: start; margin-top: .5rem; }
.form-note { color: #6a8298; font-size: .84rem; }
.form-status { font-size: .95rem; min-height: 1.4em; }
.form-status.ok  { color: var(--teal); }
.form-status.err { color: var(--alert); }
@media (max-width: 900px) { .pilot-in { grid-template-columns: 1fr; gap: 2.4rem; } }
@media (max-width: 560px) { .f-row { grid-template-columns: 1fr; } .pilot-form { padding: 1.5rem; } }

/* ---------------- footer ---------------- */
.site-foot { background: var(--ink); border-top: 1px solid var(--line); padding: 3.4rem 0 2.6rem; }
.foot-in { display: grid; grid-template-columns: 1.2fr .8fr 1.2fr; gap: 2.4rem; }
.foot-brand .brand-name { display: block; font-size: 1.14rem; }
.foot-brand p { color: var(--text-dim); font-size: .9rem; margin-top: .85rem; max-width: 34ch; }
.foot-nav { display: grid; gap: .5rem; align-content: start; }
.foot-nav a { color: var(--text-dim); text-decoration: none; font-size: .9rem; }
.foot-nav a:hover { color: var(--teal); }
.foot-meta { color: #6a8298; font-size: .85rem; display: grid; gap: .7rem; align-content: start; }
.foot-meta a { color: var(--text-dim); text-underline-offset: 3px; }
.foot-meta a:hover { color: var(--teal); }
.foot-legal { line-height: 1.5; }
@media (max-width: 860px) { .foot-in { grid-template-columns: 1fr; gap: 1.9rem; } }
