/* ============================================================
   Ahead Solutions
   One blue (#2563EB), one dark (#0A1A3C), Manrope throughout.
   Home is a locked screen. Scroll separates the words.
   ============================================================ */

:root{
  --paper:    #FFFFFF;
  --tint:     #F4F7FE;
  --navy:     #0A1A3C;
  --navy-deep:#061229;
  --blue:     #2563EB;
  --blue-deep:#1D4ED8;
  --text:     #0A1A3C;
  --text-muted: rgba(10,26,60,.7);
  --text-faint: rgba(10,26,60,.5);
  --hair:     rgba(10,26,60,.12);
  --hair-soft:rgba(10,26,60,.08);
  --wash:     rgba(37,99,235,.08);
  --lift:     0 2px 4px rgba(10,26,60,.03), 0 16px 34px -16px rgba(10,26,60,.2);

  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: 1180px;
  --ease: cubic-bezier(.22,.68,.32,1);
}

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

body{
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: -.011em;
  -webkit-font-smoothing: antialiased;
}

/* the home screen does not scroll */
body.locked{ height: 100svh; overflow: hidden; overscroll-behavior: none; }

h1,h2,h3{ font-weight: 800; letter-spacing: -.03em; line-height: 1.05; margin: 0; text-wrap: balance; }
p{ margin: 0; }
em{ font-style: normal; }

::selection{ background: var(--blue); color: #fff; }
:focus-visible{ outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

.shell{ width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: 28px; }

.skip{
  position: absolute; left: -9999px; top: 12px;
  background: var(--blue); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 400;
}
.skip:focus{ left: 16px; }

/* ── buttons ───────────────────────────────────────────────── */
.btn{
  font-family: var(--font); font-size: .93rem; font-weight: 700;
  letter-spacing: -.008em;
  border: 0; border-radius: 100px;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px;
  transition: background .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), transform .22s var(--ease), box-shadow .28s var(--ease);
}
.btn:active{ transform: translateY(1px); }
.btn-sm{ padding: 11px 18px; font-size: .86rem; }
.btn-lg{ padding: 16px 30px; font-size: .98rem; }
.btn-block{ width: 100%; border-radius: 14px; }

.btn-solid{ background: var(--blue); color: #fff; box-shadow: 0 6px 16px -6px rgba(37,99,235,.5); }
.btn-solid:hover{ background: var(--blue-deep); box-shadow: 0 12px 28px -10px rgba(37,99,235,.65); }

.btn-quiet{ background: transparent; color: var(--text-muted); border: 1px solid var(--hair); }
.btn-quiet:hover{ border-color: var(--blue); color: var(--blue); }

.btn-onblue{ background: #fff; color: var(--navy); box-shadow: 0 10px 26px -10px rgba(6,18,41,.55); }
.btn-onblue:hover{ background: #EDF3FF; transform: translateY(-2px); }

.btn-outline{ background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.36); }
.btn-outline:hover{ border-color: #fff; background: rgba(255,255,255,.1); }

/* ── top bar ───────────────────────────────────────────────── */
.topbar{ position: fixed; inset: 0 0 auto 0; z-index: 120; }
.topbar-inner{ display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }

.wordmark{
  display: inline-flex; align-items: center; gap: 11px;
  text-decoration: none; color: #fff;
  font-size: 1.06rem; font-weight: 800; letter-spacing: -.02em;
}
.wordmark em{ color: rgba(255,255,255,.62); font-weight: 600; }
.wordmark-mark{
  width: 10px; height: 10px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.16);
}

.topbar-nav{ display: flex; align-items: center; gap: 10px; }
.nav-link{
  background: none; border: 0; cursor: pointer;
  font-family: var(--font); font-size: .88rem; font-weight: 600;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  padding: 10px 14px; border-radius: 100px;
  transition: color .22s var(--ease), background .22s var(--ease);
}
.nav-link:hover, .nav-link.is-active{ color: #fff; background: rgba(255,255,255,.1); }

/* the page variant of the bar sits on white */
body.page .topbar{ background: rgba(255,255,255,.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--hair-soft); }
body.page .wordmark{ color: var(--text); }
body.page .wordmark em{ color: var(--text-faint); }
body.page .wordmark-mark{ background: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,.14); }
body.page .nav-link{ color: var(--text-muted); }
body.page .nav-link:hover, body.page .nav-link.is-active{ color: var(--blue); background: var(--wash); }

/* ═══════════════════ LOCKED HOME STAGE ═══════════════════ */
.stage{
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: var(--navy-deep);
  color: #fff;
}
.stage-canvas{ position: absolute; inset: 0; width: 100%; height: 100%; }

.scene{
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 92px 28px 120px;
  text-align: center;
}

/* scene one */
.scene-a{ pointer-events: none; }
.mark{ display: block; filter: drop-shadow(0 0 18px rgba(37,99,235,.6)); }

.hero-title{
  margin-top: 40px;
  max-width: 17ch;
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -.038em;
  line-height: 1.02;
  color: #fff;
}
.word{ display: inline-block; will-change: transform, opacity; }

.hero-sub{
  margin-top: 24px;
  font-size: .74rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(170,196,244,.82);
}

/* scene two */
.scene-b{ pointer-events: none; opacity: 0; }
.scene-b.is-live{ pointer-events: auto; }
.scene-label{
  font-size: .74rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(170,196,244,.85);
  margin-bottom: 30px;
}

.tiles{
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  width: 100%; max-width: 1060px;
}
.tile{
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 0;
  text-align: left;
  padding: 26px 24px 22px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  font-family: var(--font);
  backdrop-filter: blur(6px);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.tile:hover{ transform: translateY(-5px); background: rgba(255,255,255,.1); border-color: rgba(37,99,235,.7); }
.tile-index{
  position: absolute; right: 20px; top: 20px;
  font-size: .7rem; font-weight: 700; letter-spacing: .16em;
  color: rgba(255,255,255,.34);
}
.tile-icon{
  display: grid; place-items: center;
  width: 50px; height: 50px; border-radius: 15px;
  background: rgba(37,99,235,.24);
  color: #9CC0FF;
}
.tile-icon svg{ width: 30px; height: 30px; }
.tile-title{ margin-top: 20px; font-size: 1.4rem; font-weight: 800; letter-spacing: -.028em; }
.tile-copy{ margin-top: 10px; font-size: .9rem; line-height: 1.55; color: rgba(226,235,252,.76); }
.tile-go{
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #9CC0FF;
}

.scene-foot{
  margin-top: 30px;
  font-size: .9rem;
  color: rgba(226,235,252,.66);
}
.scene-foot a{ color: #fff; text-decoration: underline; text-underline-offset: 4px; }

/* the cue at the bottom of the locked screen */
.cue{
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font);
  font-size: .68rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(170,196,244,.7);
  z-index: 6;
  transition: color .3s var(--ease);
}
.cue:hover{ color: #fff; }
.cue-line{
  display: block; width: 1px; height: 30px;
  background: linear-gradient(rgba(37,99,235,0), #6AA0FF);
  animation: cue 2.4s var(--ease) infinite;
  transform-origin: top;
}
@keyframes cue{ 0%,100%{ transform: scaleY(.3); opacity: .4; } 50%{ transform: scaleY(1); opacity: 1; } }

/* ═══════════════════ SERVICE DETAIL LAYER ═══════════════════ */
.detail-layer{
  position: fixed; inset: 0; z-index: 200;
  background: var(--paper);
  animation: detailIn .4s var(--ease);
}
.detail-layer[hidden]{ display: none; }
@keyframes detailIn{ from{ opacity: 0; transform: translateY(16px); } }

.detail-close{
  position: fixed; right: 22px; top: 20px; z-index: 210;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--hair); border-radius: 50%;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  color: var(--text); cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.detail-close svg{ width: 20px; height: 20px; }
.detail-close:hover{ background: var(--blue); color: #fff; border-color: var(--blue); }

.detail[hidden]{ display: none; }
.detail-scroll{ height: 100svh; overflow-y: auto; overscroll-behavior: contain; }
.detail-shell{ width: 100%; max-width: 820px; margin-inline: auto; padding: 96px 28px 120px; }

.d-index{ font-size: .78rem; font-weight: 700; letter-spacing: .26em; color: var(--blue); }
.d-title{ margin-top: 14px; font-size: clamp(2.4rem, 7vw, 4rem); }
.d-note{
  margin-top: 14px;
  font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-faint);
}

.d-label{
  margin-top: 52px;
  font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue);
}
.d-p{ margin-top: 18px; font-size: 1.08rem; line-height: 1.72; color: var(--text-muted); }
.d-statement{
  margin-top: 16px;
  font-size: clamp(1.4rem, 3.2vw, 1.9rem);
  font-weight: 700; letter-spacing: -.028em; line-height: 1.32;
  color: var(--text);
}

.d-list{ list-style: none; margin: 16px 0 0; padding: 0; }
.d-help{ padding: 22px 0; border-top: 1px solid var(--hair-soft); }
.d-help:first-child{ border-top: 0; }
.d-help-title{ font-size: 1.2rem; font-weight: 800; letter-spacing: -.024em; }
.d-help-copy{ margin-top: 7px; color: var(--text-muted); }

.d-pain{
  position: relative;
  padding: 16px 0 16px 36px;
  border-top: 1px solid var(--hair-soft);
  color: var(--text-muted);
}
.d-pain:first-child{ border-top: 0; }
.d-pain::before{
  content: "";
  position: absolute; left: 2px; top: 23px;
  width: 15px; height: 15px; border-radius: 50%;
  border: 1px solid rgba(10,26,60,.26);
  background:
    linear-gradient(rgba(10,26,60,.42), rgba(10,26,60,.42)) center/1.4px 7px no-repeat,
    linear-gradient(rgba(10,26,60,.42), rgba(10,26,60,.42)) center/7px 1.4px no-repeat;
  transform: rotate(45deg);
}
.d-pain:first-child::before{ top: 7px; }

.d-reasons{ display: grid; gap: 12px; margin-top: 20px; }
.d-reason{ padding: 24px 24px 22px; background: var(--tint); border-radius: 18px; }
.d-reason-num{
  display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--blue); color: #fff; font-size: .78rem; font-weight: 700;
}
.d-reason-title{ margin-top: 14px; font-size: 1.18rem; font-weight: 800; letter-spacing: -.024em; }
.d-reason-copy{ margin-top: 7px; color: var(--text-muted); }

.d-stats{
  list-style: none; margin: 20px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 12px;
}
.d-stat{ padding: 22px 20px 18px; border: 1px solid rgba(37,99,235,.2); border-radius: 18px; }
.d-stat-num{ font-size: 2.4rem; font-weight: 800; letter-spacing: -.04em; color: var(--blue); line-height: 1; }
.d-stat-unit{ font-size: .5em; }
.d-stat-label{ margin-top: 12px; font-size: .9rem; color: var(--text-muted); line-height: 1.5; }
.d-stat-src{
  display: inline-block; margin-top: 12px;
  font-size: .7rem; font-weight: 600;
  color: var(--text-faint); text-decoration: none;
  border-bottom: 1px solid rgba(37,99,235,.3); padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.d-stat-src:hover{ color: var(--blue); border-bottom-color: var(--blue); }
.d-sources{ margin-top: 18px; font-size: .78rem; color: var(--text-faint); }
.d-actions{ margin-top: 44px; display: flex; flex-wrap: wrap; gap: 10px; }

/* ═══════════════════ ABOUT PAGE ═══════════════════ */
body.page{ background: var(--paper); }

.about-hero{
  padding: 152px 0 88px;
  background: var(--navy);
  color: #fff;
}
.back-link{
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.7); text-decoration: none;
  font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.back-link:hover{ color: #fff; }
.about-eyebrow{
  margin-top: 36px;
  font-size: .74rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: #8FB8FF;
}
.about-title{ margin-top: 18px; max-width: 17ch; font-size: clamp(2.4rem, 6.4vw, 4.4rem); color: #fff; }
.about-actions{ margin-top: 34px; display: flex; flex-wrap: wrap; gap: 10px; }

.about-main{ padding: 88px 0 0; }
.about-grid{ display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); gap: 56px; align-items: start; }
.about-p{ font-size: 1.1rem; line-height: 1.74; color: var(--text-muted); }
.about-p + .about-p{ margin-top: 20px; }

.steps{ list-style: none; margin: 0; padding: 0; }
.step{ display: flex; gap: 18px; padding: 20px 0; border-top: 1px solid var(--hair-soft); }
.step:first-child{ border-top: 0; padding-top: 0; }
.step-num{ flex: none; font-size: .76rem; font-weight: 800; letter-spacing: .12em; color: var(--blue); padding-top: 4px; }
.step-text{ color: var(--text-muted); }

.where-grid{ margin-top: 78px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.where-card{ padding: 26px 24px; background: var(--tint); border-radius: 18px; }
.where-place{ font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); }
.where-copy{ margin-top: 8px; color: var(--text-muted); }

.about-cta{ margin-top: 88px; padding: 62px 0 96px; border-top: 1px solid var(--hair-soft); }
.about-cta-title{ font-size: clamp(1.7rem, 4vw, 2.6rem); }
.about-cta .about-actions{ margin-top: 26px; }

.footer{ padding: 44px 0 110px; background: var(--navy-deep); color: #EEF3FF; }
.footer-brand{ font-size: 1.06rem; font-weight: 800; letter-spacing: -.02em; }
.footer-brand em{ color: rgba(238,243,255,.6); font-weight: 600; }
.footer-fine{ margin-top: 14px; font-size: .78rem; color: rgba(238,243,255,.46); max-width: 70ch; line-height: 1.65; }

/* ═══════════════════ DOCK + WIDGET ═══════════════════ */
/* a plain chat launcher, no label */
.dock{
  position: fixed; right: 22px; bottom: 22px; z-index: 130;
  width: 62px; height: 62px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  background: var(--blue); color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 24px -8px rgba(37,99,235,.65), 0 26px 56px -22px rgba(6,18,41,.55);
  transition: transform .25s var(--ease), background .25s var(--ease), opacity .25s var(--ease);
}
.dock:hover{ transform: translateY(-3px) scale(1.04); background: var(--blue-deep); }
.dock.is-hidden{ opacity: 0; pointer-events: none; transform: translateY(10px); }
.dock-icon{ width: 27px; height: 27px; }
.dock-dot{
  position: absolute; top: 6px; right: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #22C55E; border: 2.5px solid var(--blue);
}
.dock-dot::after{
  content: ""; position: absolute; inset: -3px;
  border: 1px solid rgba(34,197,94,.85); border-radius: 50%;
  animation: ping 2.2s var(--ease) infinite;
}
@keyframes ping{ 0%{ transform: scale(.7); opacity: .9; } 100%{ transform: scale(2.4); opacity: 0; } }

/* footer links, plain text not pills */
.footer-top{
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-nav{ display: flex; flex-wrap: wrap; align-items: center; gap: 6px 26px; }
.footer-link{
  background: none; border: 0; padding: 0;
  font-family: var(--font); font-size: .86rem; font-weight: 500;
  color: rgba(238,243,255,.62);
  text-decoration: none; cursor: pointer;
  transition: color .2s var(--ease);
}
.footer-link:hover{ color: #fff; }
.footer-link.is-cta{ color: #7FA9FF; font-weight: 600; }
.footer-link.is-cta:hover{ color: #fff; }

.widget{
  position: fixed; right: 22px; bottom: 22px; z-index: 240;
  width: min(382px, calc(100vw - 32px));
  background: var(--paper);
  border: 1px solid var(--hair-soft);
  border-radius: 22px;
  box-shadow: 0 30px 70px -22px rgba(6,18,41,.5);
  overflow: hidden;
  max-height: calc(100svh - 44px);
  display: flex; flex-direction: column;
  transform-origin: bottom right;
  animation: pop .3s var(--ease);
}
@keyframes pop{ from{ opacity: 0; transform: translateY(12px) scale(.97); } }

/* .widget sets display:flex, which beats the browser's own [hidden]
   rule, so the close button needs this to actually hide it */
.widget[hidden]{ display: none; }

.widget-head{
  flex: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 15px 15px 17px;
  background: var(--wash);
  border-bottom: 1px solid var(--hair-soft);
}
.widget-id{ display: flex; align-items: center; gap: 12px; }
.widget-avatar{
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center; border-radius: 50%;
  background: #fff; border: 1px solid rgba(37,99,235,.26); color: var(--blue);
}
.widget-avatar svg{ width: 21px; height: 21px; }
.widget-title{ display: block; font-weight: 800; font-size: .95rem; letter-spacing: -.02em; }
.widget-status{
  display: flex; align-items: center; gap: 7px;
  font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-faint); margin-top: 2px;
}
.status-dot{
  width: 6px; height: 6px; border-radius: 50%; background: #22C55E;
  box-shadow: 0 0 8px rgba(34,197,94,.8);
  animation: breathe 2.4s var(--ease) infinite;
}
@keyframes breathe{ 0%,100%{ opacity: 1; } 50%{ opacity: .35; } }
.widget-close{
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border: 0; border-radius: 12px;
  background: transparent; color: var(--text-muted); cursor: pointer;
  transition: background .2s, color .2s;
}
.widget-close svg{ width: 18px; height: 18px; }
.widget-close:hover{ background: rgba(10,26,60,.07); color: var(--text); }

.widget-view{ padding: 18px 17px 17px; overflow-y: auto; }

.chat-log{ display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px; }
.bubble{
  align-self: flex-start; max-width: 92%;
  background: var(--tint); border: 1px solid var(--hair-soft);
  border-radius: 16px 16px 16px 5px;
  padding: 12px 14px; font-size: .91rem; line-height: 1.55; color: var(--text);
}
.bubble-you{
  align-self: flex-end;
  background: var(--blue); border-color: var(--blue); color: #fff;
  border-radius: 16px 16px 5px 16px;
}

.faq-chips{ display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.faq-chip{
  font-family: var(--font); font-size: .8rem; font-weight: 600;
  padding: 8px 13px; border-radius: 999px;
  border: 1px solid rgba(37,99,235,.3);
  background: var(--wash); color: var(--blue-deep);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.faq-chip:hover{ background: var(--blue); color: #fff; }

.mount{ display: flex; flex-direction: column; gap: 10px; }
.mic{ width: 9px; height: 13px; border-radius: 5px; border: 1.6px solid currentColor; position: relative; }
.mic::after{
  content: ""; position: absolute; left: 50%; bottom: -6px;
  width: 11px; height: 5px; margin-left: -5.5px;
  border: 1.6px solid currentColor; border-top: 0; border-radius: 0 0 6px 6px;
}
.widget-cta-row{ display: flex; gap: 8px; }
.widget-cta-row .btn{ flex: 1; }

.chat-input{
  display: flex; align-items: center; gap: 8px;
  background: var(--tint); border: 1px solid var(--hair-soft);
  border-radius: 14px; padding: 5px 5px 5px 14px;
}
.chat-input:focus-within{ border-color: rgba(37,99,235,.5); }
.chat-input input{
  flex: 1; min-width: 0; background: none; border: 0; outline: 0;
  color: var(--text); font-family: var(--font); font-size: .9rem; padding: 9px 0;
}
.chat-input input::placeholder{ color: var(--text-faint); }
.chat-send{
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  border: 0; border-radius: 10px; background: var(--blue); color: #fff; cursor: pointer;
  transition: background .2s;
}
.chat-send svg{ width: 17px; height: 17px; }
.chat-send:hover{ background: var(--blue-deep); }

.widget-switch{
  display: block; width: 100%;
  margin-top: 14px; padding-top: 13px;
  border: 0; border-top: 1px solid var(--hair-soft);
  background: none; color: var(--text-muted);
  font-family: var(--font); font-size: .82rem; text-align: center; cursor: pointer;
  transition: color .2s;
}
.widget-switch:hover{ color: var(--blue); }

.form-lead{ font-size: .92rem; color: var(--text-muted); margin-bottom: 16px; }
.field{ display: block; margin-bottom: 14px; border: 0; padding: 0; }
.field-label{
  display: block;
  font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 7px; padding: 0;
}
.field-hint{ font-weight: 600; letter-spacing: .04em; color: var(--text-faint); text-transform: none; }
.field input[type="text"],
.field textarea{
  width: 100%;
  background: #fff; border: 1px solid var(--hair); border-radius: 13px;
  padding: 12px 14px;
  color: var(--text); font-family: var(--font); font-size: .95rem; line-height: 1.5;
  outline: 0;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea{ resize: vertical; min-height: 74px; }
.field textarea::placeholder{ color: var(--text-faint); }
.field input[type="text"]:focus,
.field textarea:focus{ border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }

.field-choice{ margin-bottom: 18px; }
.chips{ display: flex; flex-wrap: wrap; gap: 7px; }
.chip{ position: relative; }
.chip input{ position: absolute; opacity: 0; width: 0; height: 0; }
.chip span{
  display: inline-block; padding: 9px 14px;
  border: 1px solid var(--hair); border-radius: 999px;
  font-size: .82rem; color: var(--text-muted); cursor: pointer;
  transition: all .2s var(--ease);
}
.chip span:hover{ border-color: rgba(37,99,235,.5); color: var(--text); }
.chip input:checked + span{ background: var(--wash); border-color: var(--blue); color: var(--blue-deep); font-weight: 700; }
.chip input:focus-visible + span{ outline: 2px solid var(--blue); outline-offset: 2px; }

.form-error{ margin-bottom: 12px; font-size: .82rem; color: #B42318; }

.widget-done{ text-align: center; padding: 34px 24px 28px; }
.done-mark{
  display: grid; place-items: center;
  width: 46px; height: 46px; margin: 0 auto 16px;
  border-radius: 50%; background: var(--wash); border: 1px solid var(--blue); color: var(--blue);
}
.done-mark svg{ width: 22px; height: 22px; }
.done-title{ font-size: 1.35rem; font-weight: 800; letter-spacing: -.028em; }
.done-sub{ margin: 10px 0 20px; font-size: .9rem; color: var(--text-muted); line-height: 1.55; }

/* ════════════════════════ RESPONSIVE ════════════════════════ */
@media (max-width: 900px){
  .topbar-inner{ height: 68px; }
  .nav-link{ padding: 8px 10px; font-size: .82rem; }
  .tiles{ grid-template-columns: 1fr; gap: 10px; max-width: 460px; }
  .tile{ padding: 18px 18px 16px; flex-direction: row; align-items: center; gap: 16px; flex-wrap: wrap; }
  .tile-icon{ width: 42px; height: 42px; border-radius: 13px; }
  .tile-icon svg{ width: 25px; height: 25px; }
  .tile-title{ margin-top: 0; font-size: 1.15rem; }
  .tile-copy{ display: none; }
  .tile-go{ margin: 0 0 0 auto; }
  .tile-index{ display: none; }
  .about-grid{ grid-template-columns: 1fr; gap: 30px; }
  .where-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  body{ font-size: 16px; }
  .shell{ padding-inline: 20px; }
  .topbar-nav .btn-solid{ display: none; }
  .scene{ padding: 84px 22px 130px; }
  .hero-title{ font-size: clamp(2.1rem, 10vw, 3rem); }
  .scene-foot{ font-size: .84rem; }
  .detail-shell{ padding: 84px 22px 110px; }
  .d-stats{ grid-template-columns: 1fr; }
  .about-hero{ padding: 120px 0 70px; }
  .about-actions .btn{ flex: 1 1 auto; }
  .dock{ right: 14px; bottom: 14px; padding: 14px 20px; }
  .widget{ right: 12px; bottom: 12px; width: calc(100vw - 24px); }
  .detail-close{ right: 14px; top: 14px; }
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
