/* Nomos shared marketing styles — mobile first */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;1,9..144,400&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #ffffff;
  --bg-elev: #ffffff;
  --ink: #161616;
  --muted: #5a5a5a;
  --line: #e6e6e6;
  --soft: #f4f4f2;
  --accent: #161616;
  --ok: #1f6b3a;
  --warn: #8a5a00;
  --err: #9b1c1c;
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Inter", system-ui, sans-serif;
  --max: 1120px;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(0,0,0,.04), 0 12px 40px rgba(0,0,0,.04);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

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

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* NAV */
.announce {
  background: #111;
  color: #fff;
  font-size: .82rem;
  text-align: center;
  padding: .65rem 1rem;
}
.announce a { color: #fff; font-weight: 600; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  font-weight: 400;
  font-optical-sizing: auto;
}
.nav-toggle {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--ink);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-panel {
  display: none;
  position: absolute;
  left: 0; right: 0;
  top: 64px;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--line);
  padding: 1rem 1rem 1.25rem;
}
.nav-panel.open { display: block; }
.nav-panel a {
  display: block;
  padding: .85rem .5rem;
  text-decoration: none;
  color: var(--muted);
  font-size: .92rem;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--line);
}
.nav-panel a.is-current { color: var(--ink); font-weight: 600; }
.nav-panel a:last-child { border-bottom: none; }
.nav-cta-mobile {
  display: block !important;
  margin-top: .75rem;
  text-align: center;
  background: var(--ink) !important;
  color: #fff !important;
  border-radius: 999px;
  border: none !important;
  padding: .9rem !important;
  font-weight: 600;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-panel {
    display: flex !important;
    position: static;
    background: transparent;
    border: none;
    padding: 0;
    align-items: center;
    gap: 1.25rem;
  }
  .nav-panel a {
    display: inline;
    padding: 0;
    border: none;
    font-size: .88rem;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 500;
  }
  .nav-panel a:hover { color: var(--ink); }
  .nav-panel a.is-current { color: var(--ink); }
  .nav-cta-mobile {
    display: inline-block !important;
    margin: 0 !important;
    padding: .55rem 1rem !important;
    font-size: .78rem !important;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 500;
  }
  .nav-actions {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-left: 1rem;
  }
  .nav-login {
    display: inline-flex !important;
    align-items: center;
    min-height: 36px;
    padding: .4rem .85rem !important;
    border: 1px solid var(--line) !important;
    border-radius: 8px !important;
    color: var(--ink) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: .82rem !important;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}
.btn:hover { opacity: .92; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* HERO */
.hero {
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(0,0,0,.05), transparent 60%),
    linear-gradient(180deg, #f6f6f4 0%, #efefec 100%);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 16vw, 7.5rem);
  font-weight: 400;
  letter-spacing: .1em;
  margin: 0;
  line-height: .92;
}
.hero .rule {
  width: 48px; height: 1px; background: var(--ink); margin: 1.4rem auto;
}
.hero .lede {
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  max-width: 34rem;
  margin: 0 auto;
  color: #333;
}
.hero .sub {
  margin: 1rem auto 0;
  max-width: 32rem;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.7;
}
.hero .btn-row { justify-content: center; margin-top: 2rem; }

.banner {
  width: 100%;
  height: clamp(220px, 42vw, 420px);
  overflow: hidden;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(12%);
}

/* SECTIONS */
.section { padding: 4.5rem 0; border-bottom: 1px solid var(--line); }
.section.alt { background: #f7f7f5; }
.eyebrow {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .85rem;
}
.section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1rem;
}
.section .lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 40rem;
  margin: 0;
}
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.grid-2 {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (min-width: 860px) {
  .grid-2 { grid-template-columns: 1.1fr .9fr; align-items: center; gap: 3rem; }
}

.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 240px;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; filter: grayscale(18%); }

.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 720px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
}
.card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0 0 .55rem;
}
.card p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.65; }
.card ul { margin: 1rem 0 0; padding: 0; list-style: none; }
.card li {
  font-size: .9rem;
  padding: .45rem 0;
  border-top: 1px solid var(--line);
  color: #333;
}
.card li:first-child { border-top: none; }

.work-cards { display: grid; gap: .85rem; margin-top: 1.75rem; }
.work-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.2rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  min-height: 88px;
  transition: border-color .15s, transform .15s;
}
.work-card:hover { border-color: #bbb; transform: translateY(-1px); }
.work-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: .04em;
}
.work-card span { color: var(--muted); font-size: .92rem; }
.work-card .arrow { color: var(--muted); font-size: 1.2rem; }
@media (min-width: 800px) {
  .work-cards { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

.steps { display: grid; gap: 1rem; margin-top: 2rem; counter-reset: step; }
.step {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--muted);
}
.step h3 { font-family: var(--serif); font-weight: 400; font-size: 1.3rem; margin: .4rem 0; }
.step p { margin: 0; color: var(--muted); }
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

.site-footer {
  padding: 3rem 0 2rem;
  background: #111;
  color: #ddd;
}
.site-footer .logo { color: #fff; }
.footer-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .55rem 1rem;
}
.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: .9rem;
}
.footer-links a:hover { color: #fff; }
.footer-note {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #2a2a2a;
  color: #888;
  font-size: .82rem;
  line-height: 1.6;
}

.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 400;
  margin: 0 0 .75rem;
  line-height: 1.1;
}
.prose { max-width: 42rem; }
.prose p { color: var(--muted); line-height: 1.75; }
.prose ul { color: var(--muted); line-height: 1.7; }
.prose h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  margin: 2rem 0 .75rem;
  color: var(--ink);
}

.form { display: grid; gap: .85rem; max-width: 32rem; }
.form label { font-size: .85rem; font-weight: 600; }
.form input, .form textarea, .form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .75rem .9rem;
  background: #fff;
}
.form textarea { min-height: 140px; resize: vertical; }

.nav-actions { margin-top: .75rem; }
.nav-login {
  display: block;
  padding: .85rem .5rem;
  text-decoration: none;
  color: var(--muted);
}

/* LANDING — product demo hero */
.hero-editorial {
  padding: 3.5rem 0 2.25rem;
  background: #fff;
}
.hero-editorial .copy {
  max-width: 40rem;
  margin: 0 auto;
}
.hero-editorial p {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.55;
  color: #4a4a4a;
  font-weight: 400;
}

.demo-stage {
  padding: 0 1rem 4rem;
  background: #fff;
}
.demo-frame {
  width: min(100%, 1080px);
  margin: 0 auto;
  background: #1c1c1c;
  border-radius: 16px;
  padding: 1.1rem 1.1rem 0;
  min-height: 520px;
}
.demo-shell {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border-radius: 12px 12px 0 0;
  min-height: 500px;
  overflow: visible;
}
.demo-side {
  display: none;
  background: #f6f6f4;
  border-right: 1px solid var(--line);
  padding: 1rem .75rem;
}
.demo-side .create {
  display: block;
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: .65rem .75rem;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: .85rem;
}
.demo-side a, .demo-side button.nav-item {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: #444;
  text-decoration: none;
  padding: .5rem .65rem;
  border-radius: 8px;
  font-size: .88rem;
  cursor: pointer;
}
.demo-side a:hover, .demo-side button.nav-item:hover,
.demo-side a.active, .demo-side button.nav-item.active {
  background: #ecece8;
  color: var(--ink);
}
.demo-main {
  padding: 1.5rem 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.demo-brand {
  font-family: var(--serif);
  font-size: 1.7rem;
  text-align: center;
  margin: .25rem 0 1.25rem;
}
.demo-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .85rem;
  background: #fff;
}
.demo-box textarea {
  width: 100%;
  min-height: 88px;
  border: 0;
  resize: vertical;
  padding: .35rem .25rem;
  outline: none;
  font-size: .98rem;
  line-height: 1.5;
}
.demo-toolbar {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .35rem;
}
.demo-tool {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  min-height: 36px;
  padding: .35rem .7rem;
  font-size: .82rem;
  cursor: pointer;
  position: relative;
}
.demo-tool[aria-expanded="true"] { border-color: #bbb; }
.demo-send {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: #161616;
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
}
.demo-send:disabled { opacity: .45; cursor: not-allowed; }
.country-menu {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  z-index: 8;
  width: min(280px, 80vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .4rem;
  max-height: 420px;
  overflow: auto;
}
.country-menu.open { display: block; }
.country-item {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: .55rem .6rem;
  border-radius: 8px;
  font-size: .86rem;
  cursor: pointer;
}
.country-item:hover { background: #f4f4f2; }
.country-item:disabled { color: #999; cursor: not-allowed; }
.country-item .tag {
  font-size: .7rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ok);
}
.country-item:disabled .tag { color: #999; }
.demo-status { min-height: 1.2em; margin: .75rem 0 0; font-size: .85rem; color: var(--muted); }
.demo-result {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.demo-result h3 {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .5rem;
  font-weight: 600;
}
.demo-result .answer { font-size: .92rem; line-height: 1.6; color: #222; }
.demo-result .sources a { color: #0b3d8c; }
.demo-open {
  display: inline-block;
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--muted);
}

@media (min-width: 860px) {
  .demo-shell { grid-template-columns: 200px 1fr; }
  .demo-side { display: block; }
  .demo-main { padding: 2rem 2.25rem 2.25rem; }
}

/* LOGIN */
.login-wrap {
  min-height: calc(100dvh - 64px);
  display: grid;
  place-items: center;
  padding: 3rem 1rem 4rem;
}
.login-card {
  width: min(100%, 420px);
}
.login-card h1 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  margin: 0 0 .5rem;
}
.login-card p { color: var(--muted); margin: 0 0 1.5rem; line-height: 1.6; }
.login-card .form { max-width: none; }

/* JURISDICTION PICKER */
.jdx-grid {
  display: grid;
  gap: .75rem;
  margin: 1.5rem 0 0;
}
@media (min-width: 720px) {
  .jdx-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1020px) {
  .jdx-grid { grid-template-columns: repeat(3, 1fr); }
}
.jdx-card {
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 1.1rem 1.15rem 1.15rem;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  column-gap: .7rem;
  row-gap: .45rem;
  min-height: 132px;
}
.jdx-card .jdx-flag { font-size: 1.35rem; line-height: 1; grid-row: 1; }
.jdx-card strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}
.jdx-card .jdx-tag { grid-column: 3; grid-row: 1; align-self: center; }
.jdx-card p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.5;
}
.jdx-card:hover:not(:disabled) { border-color: #111; }
.jdx-card.is-selected { border-color: #111; box-shadow: inset 0 0 0 1px #111; }
.jdx-card.is-soon, .jdx-card:disabled {
  cursor: not-allowed;
  background: #f7f7f5;
  color: #888;
}
.jdx-card:disabled strong { color: #888; }
.jdx-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: .55rem .6rem;
  border-radius: 8px;
  font-size: .86rem;
  cursor: pointer;
}
.jdx-item:hover:not(:disabled) { background: #f4f4f2; }
.jdx-item:disabled { color: #999; cursor: not-allowed; }
.jdx-item.is-selected { background: #ecece8; }
.jdx-item .jdx-name { flex: 1; }
.jdx-flag { font-size: 1.05rem; line-height: 1; }
.jdx-tag {
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.jdx-tag-live { color: var(--ok); }
.jdx-tag-expanding { color: var(--warn); }
.jdx-tag-coming-soon { color: #999; }
.jdx-trigger {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.jdx-compact { position: relative; }
.jdx-note {
  margin: .85rem 0 0;
  font-size: .85rem;
  color: var(--muted);
}

/* ABOUT */
.about-hero {
  position: relative;
  min-height: min(78vh, 700px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: #161616;
}
.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(8%);
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,.78) 8%, rgba(12,12,12,.28) 48%, rgba(12,12,12,.18) 100%);
}
.about-hero .copy {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.25rem;
}
.about-hero .eyebrow { color: rgba(255,255,255,.72); }
.about-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  max-width: 14ch;
  margin: 0;
  color: #fff;
}
.about-hero p {
  max-width: 36rem;
  margin: 1.1rem 0 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255,255,255,.86);
}
.about-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 860px) {
  .about-split { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.about-split .photo-frame { min-height: 320px; }
.about-split .photo-frame img { min-height: 360px; filter: none; }
.about-dark {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.about-dark.about-problem {
  min-height: min(72vh, 640px);
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.about-dark.about-problem img.bg { opacity: .48; }
.about-dark.about-problem h2 {
  font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  max-width: 16ch;
  line-height: 1.05;
  margin: 0 0 1.15rem;
}
.about-dark.about-problem .lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 40rem;
  line-height: 1.65;
}
.about-dark img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .38;
  filter: grayscale(20%);
}
.about-dark .container { position: relative; z-index: 1; }
.about-dark .eyebrow { color: rgba(255,255,255,.65); }
.about-dark h2, .about-dark h1, .section.about-dark h2 { color: #fff; }
.about-dark .lead, .about-dark p { color: rgba(255,255,255,.82); }
.about-points {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 720px) {
  .about-points { grid-template-columns: repeat(3, 1fr); }
}
.about-points article {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 1.15rem 1.2rem;
  background: rgba(0,0,0,.28);
}
.about-points h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 .4rem;
}
.about-points p { margin: 0; font-size: .92rem; line-height: 1.6; }
.about-word-steps {
  display: grid;
  gap: .65rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: wordstep;
}
.about-word-steps li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: .7rem;
  color: var(--muted);
  line-height: 1.55;
}
.about-word-steps li::before {
  counter-increment: wordstep;
  content: counter(wordstep);
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
}
.word-preview {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #f3f3f3;
  min-height: 320px;
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.word-preview-bar {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .75rem;
  background: #2b579a;
  color: #fff;
  font-size: .78rem;
  letter-spacing: .02em;
}
.word-logo {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 4px;
  background: #185abd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  font-family: "Segoe UI", var(--sans, sans-serif);
}
.word-preview-file { flex: 1; opacity: .92; }
.word-preview-app {
  background: rgba(255,255,255,.16);
  border-radius: 999px;
  padding: .15rem .55rem;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.word-preview-body {
  display: grid;
  grid-template-columns: 1.15fr .95fr;
  min-height: 280px;
  background: #fff;
}
.word-preview-doc {
  padding: 1.25rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  border-right: 1px solid var(--line);
  background: #fafafa;
}
.word-preview-line {
  display: block;
  height: 8px;
  width: 88%;
  border-radius: 99px;
  background: #e4e4e0;
}
.word-preview-line.long { width: 96%; }
.word-preview-line.mid { width: 72%; }
.word-preview-line.short { width: 48%; }
.word-preview-caret {
  width: 2px;
  height: 18px;
  background: #2b579a;
  margin-top: .15rem;
}
.word-preview-pane {
  padding: .9rem .85rem 1rem;
  background: #fff;
}
.word-preview-pane-head {
  font-weight: 650;
  font-size: .82rem;
  margin-bottom: .75rem;
}
.word-preview-pane ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.word-preview-pane li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .55rem .6rem;
  font-size: .78rem;
  line-height: 1.4;
  color: var(--muted);
}
.word-preview-pane strong {
  display: block;
  color: var(--ink);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .12rem;
}
@media (max-width: 640px) {
  .word-preview-body { grid-template-columns: 1fr; }
  .word-preview-doc { display: none; }
}
.about-band {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: #111;
}
.about-band img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: grayscale(10%);
}
@media (min-width: 860px) {
  .about-band { min-height: 380px; }
  .about-band img { min-height: 380px; }
}
.about-credits {
  font-size: .75rem;
  color: #888;
  margin-top: 1rem;
}
#word { scroll-margin-top: 5rem; }

.section.tight { padding-top: 2.5rem; }
