/* ===========================================================================
   Nubar website

   The tokens below are lifted from the product's src/app/globals.css so that
   the site and the product are visibly one company. If a value changes there,
   change it here too.

   The site runs the same system at a lower density: the product is packed
   because someone is doing a task, the site is open because someone is
   deciding.
   =========================================================================== */

:root {
  --ink: #1d1d1f;
  --ink-soft: #494949;
  --ink-faint: #6e6e73;

  --blue: #0071e3;
  --blue-hover: #0077ed;
  --blue-press: #0059b5;
  --link: #0066cc;

  --canvas: #f6f6f5;
  --card-bg: #ffffff;
  --surface-sunken: #efeff0;
  --hairline: rgba(0, 0, 0, 0.07);
  --hairline-strong: rgba(0, 0, 0, 0.12);

  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.04), 0 6px 20px rgba(0, 0, 0, 0.05);
  --shadow-float: 0 4px 12px rgba(0, 0, 0, 0.16), 0 12px 32px rgba(0, 0, 0, 0.12);

  --green: #14794a;
  --amber: #92610f;
  --red: #c8352b;

  --container: 1080px;
  --measure: 68ch;

  --radius-lg: 24px;
  --radius: 20px;
  --radius-sm: 12px;

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Gelasio", Georgia, "Times New Roman", serif;

  --header-h: 64px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv05" 1;
}

/* --- Type ---------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.16;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(2.05rem, 1.35rem + 2.7vw, 3.25rem); }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.5vw, 2.15rem); }
h3 { font-size: 1.2rem; line-height: 1.3; }
h4 { font-size: 1.0rem; letter-spacing: -0.01em; }

p { text-wrap: pretty; }

.serif {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.lede {
  font-size: clamp(1.12rem, 1.02rem + 0.45vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.prose { max-width: var(--measure); }
.prose > * + * { margin-top: 1.05em; }
.prose p { color: var(--ink-soft); }
.prose strong { font-weight: 600; color: var(--ink); }
.prose h3 { margin-top: 2em; }
.prose h3 + p { margin-top: 0.6em; }
.prose ul, .prose ol { padding-left: 1.15em; }
.prose li { color: var(--ink-soft); margin-top: 0.4em; }
.prose li::marker { color: var(--ink-faint); }

.small { font-size: 0.9375rem; }
.muted { color: var(--ink-faint); }

a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}
a:hover { color: var(--blue-hover); }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Layout -------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.wrap-narrow {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  padding-inline: 24px;
}

section { position: relative; }

.band {
  padding-block: clamp(56px, 8vw, 104px);
}

.band-tight { padding-block: clamp(40px, 5vw, 64px); }

.band-white {
  background: var(--card-bg);
  border-block: 1px solid var(--hairline);
}

.rule {
  border: 0;
  border-top: 1px solid var(--hairline);
}

.section-head { max-width: var(--measure); }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 + p { margin-top: 16px; }

/* --- Header -------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(246, 246, 245, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-stuck {
  border-bottom-color: var(--hairline);
}

.header-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img {
  height: 19px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding-inline: 12px;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.nav a:hover { background: rgba(0, 0, 0, 0.045); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); background: rgba(0, 0, 0, 0.05); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle:hover { background: rgba(0, 0, 0, 0.05); }
.nav-toggle svg { display: block; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: var(--header-h);
    left: 12px;
    right: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 8px;
    background: var(--card-bg);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    box-shadow: var(--shadow-float);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { height: 44px; padding-inline: 14px; border-radius: var(--radius-sm); font-size: 1rem; }
}

/* --- Buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1.0rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.08s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-hover); color: #fff; }
.btn-primary:active,
.btn-primary.is-pressed { background: var(--blue-press); transform: scale(0.985); }

.btn-secondary {
  background: var(--card-bg);
  color: var(--ink);
  border-color: var(--hairline-strong);
}
.btn-secondary:hover { background: #fff; border-color: rgba(0, 0, 0, 0.2); color: var(--ink); }
.btn-secondary:active,
.btn-secondary.is-pressed { background: var(--surface-sunken); transform: scale(0.985); }

.btn-lg { min-height: 54px; padding: 14px 32px; font-size: 1.0625rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.5; cursor: default; transform: none; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.link-quiet {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--link);
  text-decoration: none;
}
.link-quiet:hover { text-decoration: underline; }
.link-quiet .arw { transition: transform 0.18s ease; }
.link-quiet:hover .arw { transform: translateX(3px); }

/* --- Cards --------------------------------------------------------------- */

.card {
  background: var(--card-bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 32px;
}

.card-lg { border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); }

.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); }
.card p + p { margin-top: 12px; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 860px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* --- Hero ---------------------------------------------------------------- */

.hero {
  padding-top: clamp(56px, 9vw, 104px);
  padding-bottom: clamp(44px, 6vw, 72px);
}

/* The wordmark, at size, before anything is claimed. This is the one place on
   the site where the serif gets to be the largest thing on screen. */
.hero-mark {
  display: block;
  width: clamp(164px, 23vw, 264px);
  height: auto;
  margin-bottom: clamp(26px, 3.6vw, 42px);
}

.hero h1 { max-width: 16ch; }
.hero .lede { max-width: 56ch; margin-top: 22px; }
.hero .btn-row { margin-top: 34px; }

.hero-wide h1 { max-width: 22ch; }

/* --- Notice strip -------------------------------------------------------- */

.notice {
  display: block;
  background: var(--card-bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.08s ease;
}
.notice:hover { border-color: var(--hairline-strong); box-shadow: var(--shadow-card); color: inherit; }
.notice:active { transform: scale(0.995); }
.notice .eyebrow { color: var(--amber); display: block; margin-bottom: 8px; }
.notice p { color: var(--ink-soft); max-width: 62ch; }
.notice .link-quiet { margin-top: 12px; }

/* --- The statement graphic (before / after) ------------------------------ */

.statement-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}
@media (max-width: 780px) {
  .statement-pair { grid-template-columns: 1fr; }
}

.statement {
  background: var(--card-bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.statement-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--hairline);
}
.statement-head .label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.statement-head .who { font-size: 0.875rem; color: var(--ink-faint); }

.statement-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
}
.statement-row + .statement-row { border-top: 1px solid var(--hairline); }

.statement-row .desc { min-width: 0; }
.statement-row .desc .name {
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.statement-row .desc .sub { font-size: 0.8125rem; color: var(--ink-faint); }

.amount {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: 0.9375rem;
  white-space: nowrap;
}

.statement-row.is-pending { background: var(--surface-sunken); }
.statement-row.is-pending .name,
.statement-row.is-pending .amount { color: var(--amber); }

.pending-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(146, 97, 15, 0.1);
  border-radius: 999px;
  padding: 2px 8px;
  margin-right: 8px;
  vertical-align: 1px;
}

.statement-note {
  padding: 14px 20px;
  border-top: 1px solid var(--hairline);
  font-size: 0.875rem;
  color: var(--ink-faint);
  background: var(--card-bg);
}

/* --- Steps --------------------------------------------------------------- */

.steps {
  counter-reset: step;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

.step { position: relative; padding-top: 44px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.9375rem; }

/* --- Comparison (traditional vs smart cooler) ---------------------------- */

.compare { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 860px) { .compare { grid-template-columns: 1fr; } }

.compare-col {
  background: var(--card-bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px;
}
.compare-col h3 { margin-bottom: 4px; }
.compare-col .kicker { font-size: 0.875rem; color: var(--ink-faint); margin-bottom: 18px; }

.compare-list { list-style: none; }
.compare-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding-block: 9px;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.compare-list li + li { border-top: 1px solid var(--hairline); }
.compare-list .mk { flex: 0 0 18px; margin-top: 2px; }
.compare-list .mk.no { color: var(--ink-faint); }
.compare-list .mk.yes { color: var(--green); }

/* --- Facts / figures ----------------------------------------------------- */

.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 860px) { .facts { grid-template-columns: 1fr; } }

.fact {
  background: var(--card-bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 26px;
}
.fact .figure {
  font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.fact .caption { margin-top: 8px; font-size: 0.9375rem; color: var(--ink-soft); }
.fact .source { margin-top: 14px; font-size: 0.8125rem; color: var(--ink-faint); }

/* --- Document (the coalition statement, rendered) ------------------------ */

.document {
  background: var(--card-bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(28px, 4.5vw, 56px);
}

.document-head {
  padding-bottom: 22px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--hairline);
}
.document-head .doc-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.15rem + 1.1vw, 1.85rem);
  letter-spacing: 0;
  line-height: 1.25;
}
.document-head .doc-meta { margin-top: 10px; font-size: 0.875rem; color: var(--ink-faint); }

.document p { color: var(--ink-soft); max-width: var(--measure); }
.document p + p { margin-top: 1.05em; }
.document .salutation { color: var(--ink); font-weight: 500; }

.signature-block {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--hairline);
}
.signature-block .sig-intro { font-size: 0.9375rem; color: var(--ink-faint); margin-bottom: 18px; }
.sig-lines { display: grid; gap: 14px; max-width: 460px; }
.sig-line { display: grid; grid-template-columns: 108px 1fr; align-items: end; gap: 12px; }
.sig-line .sig-label { font-size: 0.875rem; color: var(--ink-faint); }
.sig-line .sig-rule { border-bottom: 1px solid var(--hairline-strong); height: 20px; }
@media (max-width: 520px) {
  .sig-line { grid-template-columns: 88px 1fr; }
}

/* --- The action panel ---------------------------------------------------- */

.action {
  background: var(--card-bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(28px, 4.5vw, 44px);
}
.action h2 { margin-bottom: 14px; }
.action .lede { max-width: 60ch; }
.action .btn-row { margin-top: 28px; }
.action .addressed {
  margin-top: 22px;
  padding: 16px 18px;
  background: var(--surface-sunken);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.action .addressed code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 0.875rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 2px 7px;
  white-space: nowrap;
}

.after-send {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--hairline);
}
.after-send[hidden] { display: none; }
.after-send h3 { margin-bottom: 14px; }
.after-send ol { padding-left: 1.2em; }
.after-send li { color: var(--ink-soft); margin-top: 8px; }
.after-send .fallback { margin-top: 20px; font-size: 0.9375rem; color: var(--ink-faint); }

.reveal-in { animation: revealIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes revealIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* --- Downloads ----------------------------------------------------------- */

.downloads { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 780px) { .downloads { grid-template-columns: 1fr; } }

.download {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 20px 22px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.08s ease;
}
.download:hover { border-color: var(--hairline-strong); box-shadow: var(--shadow-card); color: inherit; }
.download:active { transform: scale(0.995); }
.download .doc-icon { flex: 0 0 auto; color: var(--ink-faint); margin-top: 2px; }
.download .t { display: block; font-weight: 600; font-size: 0.9875rem; }
.download .d { display: block; font-size: 0.875rem; color: var(--ink-faint); margin-top: 3px; line-height: 1.45; }

/* --- Perspective switch (customer / operator) ---------------------------- */

.perspective {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
}
@media (max-width: 560px) { .perspective { grid-template-columns: 1fr; } }

.perspective a {
  display: block;
  background: var(--card-bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 20px 22px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.08s ease;
}
.perspective a:hover {
  border-color: var(--hairline-strong);
  box-shadow: var(--shadow-card);
  color: inherit;
}
.perspective a:active { transform: scale(0.99); }
.perspective .pt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 1.0625rem;
  font-weight: 600;
}
.perspective .pt .arw { color: var(--link); transition: transform 0.18s ease; }
.perspective a:hover .pt .arw { transform: translateX(3px); }
.perspective .pd { margin-top: 6px; font-size: 0.9375rem; color: var(--ink-faint); }

/* --- Device frames ------------------------------------------------------- */

/* A phone. The bezel is thin and dark so the screen inside it reads as the
   subject rather than the frame. */
.phone {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  background: #1d1d1f;
  border-radius: 34px;
  padding: 7px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12), 0 18px 44px rgba(0, 0, 0, 0.14);
}
.phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 27px;
  background: var(--canvas);
}

/* A desktop browser. Chrome is suggested, not drawn in detail. */
.browser {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 18px 44px rgba(0, 0, 0, 0.09);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--surface-sunken);
  border-bottom: 1px solid var(--hairline);
}
.browser-bar .dots { display: flex; gap: 6px; flex: 0 0 auto; }
.browser-bar .dots i {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.13);
  display: block;
}
.browser-bar .url {
  flex: 1 1 auto;
  min-width: 0;
  background: var(--card-bg);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--ink-faint);
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
.browser img { display: block; width: 100%; height: auto; }

/* --- Walkthroughs -------------------------------------------------------- */

.walk-phones {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}
@media (max-width: 1000px) { .walk-phones { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .walk-phones { grid-template-columns: 1fr; gap: 40px; } }

.walk-step .cap { margin-top: 20px; }
.walk-step .cap .n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.walk-step .cap h3 { font-size: 1.0625rem; margin-bottom: 6px; }
.walk-step .cap p { font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.5; }

.walk-desk { display: grid; gap: clamp(44px, 6vw, 80px); }

.walk-row { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(24px, 4vw, 48px); align-items: center; }
.walk-row.flip > .browser { order: -1; }
@media (max-width: 900px) {
  .walk-row { grid-template-columns: 1fr; }
  .walk-row.flip > .browser { order: 0; }
}
.walk-row .txt .n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.walk-row .txt h3 { margin-bottom: 10px; }
.walk-row .txt p { color: var(--ink-soft); }
.walk-row .txt p + p { margin-top: 12px; }

.shot-note {
  margin-top: 26px;
  font-size: 0.875rem;
  color: var(--ink-faint);
  max-width: 68ch;
}

/* A screenshot we do not have yet should say so, rather than be faked. */
.shot-pending {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 260px;
  padding: 32px;
  background: var(--surface-sunken);
  border: 1px dashed var(--hairline-strong);
  border-radius: var(--radius);
  color: var(--ink-faint);
  font-size: 0.9375rem;
}

/* --- The nameplate ------------------------------------------------------- */

.plate {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #131316;
  box-shadow: var(--shadow-card);
}
.plate video, .plate img {
  display: block;
  width: 100%;
  height: auto;
}

/* --- Forms --------------------------------------------------------------- */

.form-card {
  background: var(--card-bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(26px, 4vw, 42px);
}

.field { margin-top: 20px; }
.field:first-child { margin-top: 0; }

.field label,
.fieldset-legend {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.field .hint {
  font-size: 0.875rem;
  color: var(--ink-faint);
  font-weight: 400;
  margin-bottom: 8px;
  margin-top: -3px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface-sunken);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  transition: background 0.15s ease, border-color 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}
textarea { min-height: 104px; resize: vertical; line-height: 1.55; }

input:hover, select:hover, textarea:hover { background: #eaeaeb; }
input:focus, select:focus, textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.16);
}
::placeholder { color: #a1a1a6; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%236e6e73' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 20px; }
/* Each cell starts level with its neighbour: the row supplies the spacing. */
.field-row .field { margin-top: 0; }
.field-row:first-child { margin-top: 0; }
@media (max-width: 620px) {
  .field-row { grid-template-columns: 1fr; }
  .field-row .field + .field { margin-top: 20px; }
}

/* `.field label` sets display:block and wins on specificity, so this has to
   match at least as tightly or the checkbox and its wrapping text unstack. */
.field label.checkbox,
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--ink-soft);
  cursor: pointer;
  margin-bottom: 0;
}
.checkbox input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.form-footnote { margin-top: 22px; font-size: 0.875rem; color: var(--ink-faint); }
.form-actions { margin-top: 26px; }

.form-success {
  text-align: left;
}
.form-success .tick {
  width: 42px; height: 42px;
  border-radius: 999px;
  background: rgba(20, 121, 74, 0.1);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

.error-text { color: var(--red); font-size: 0.9375rem; margin-top: 14px; }

/* --- Status line --------------------------------------------------------- */

.status {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: var(--measure);
}
.status .dot {
  flex: 0 0 auto;
  width: 9px; height: 9px;
  border-radius: 999px;
  background: var(--green);
  margin-top: 9px;
}

/* --- Footer -------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--hairline);
  padding-block: 48px 56px;
  margin-top: 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand img { height: 18px; width: auto; display: block; opacity: 0.9; }
.footer-brand p { margin-top: 12px; font-size: 0.875rem; color: var(--ink-faint); max-width: 34ch; }

.footer-nav { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-nav ul { list-style: none; }
.footer-nav .col-title {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
}
.footer-nav li + li { margin-top: 8px; }
.footer-nav a {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--ink); text-decoration: underline; }

.footer-base {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  font-size: 0.8125rem;
  color: var(--ink-faint);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
}

/* --- Utility ------------------------------------------------------------- */

.mt-0 { margin-top: 0; }
.mt-s { margin-top: 14px; }
.mt-m { margin-top: 24px; }
.mt-l { margin-top: 40px; }
.mt-xl { margin-top: clamp(40px, 6vw, 72px); }

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --- Reveal on scroll ---------------------------------------------------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header, .site-footer, .btn, .nav-toggle { display: none !important; }
  body { background: #fff; }
  .document { border: 0; box-shadow: none; padding: 0; }
}
