:root {
  --paper: #f2efe7;
  --paper-deep: #ded8ca;
  --ink: #11110f;
  --red: #e53a2f;
  --blue: #1745b8;
  --yellow: #f2bd16;
  --white: #fffdf7;
  --green: #267051;
  --line: rgba(17, 17, 15, 0.28);
  --display: "Unbounded", sans-serif;
  --body: "Onest", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  border: 1px solid var(--ink);
}

::selection {
  color: var(--ink);
  background: var(--yellow);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--yellow);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--yellow);
  background: var(--ink);
}

a,
button {
  color: inherit;
}

a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px var(--white);
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  text-wrap: balance;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 220ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.25rem;
  padding: 0 3.25vw;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  color: inherit;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
}

.nav-links {
  display: flex;
  gap: clamp(1.2rem, 3vw, 3.5rem);
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-action {
  min-height: 2.75rem;
  padding: 0 1rem;
  color: var(--white);
  background: var(--ink);
  border: 0;
  font-weight: 600;
  cursor: pointer;
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(2.7rem, auto));
  min-height: 2.75rem;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--ink);
}

.language-switcher button {
  min-width: 2.7rem;
  padding: 0 0.7rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-family: var(--display);
  font-size: 0.64rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms var(--ease-out), background 180ms var(--ease-out);
}

.language-switcher button + button {
  border-left: 1px solid var(--ink);
}

.language-switcher button:hover,
.language-switcher button:focus-visible {
  background: var(--paper-deep);
}

.language-switcher button.is-active {
  color: var(--ink);
  background: var(--yellow);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(34rem, 1.12fr);
  height: 100svh;
  min-height: 0;
  padding-top: 5.25rem;
  border-bottom: 1px solid var(--ink);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5.5svh, 4.5rem) 3.5vw clamp(3rem, 6.5svh, 5rem);
}

h1 {
  margin-bottom: clamp(1.25rem, 3svh, 2rem);
  font-size: clamp(2.8rem, min(5.6vw, 9svh), 6rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

h1 .accent-line {
  width: fit-content;
  color: var(--red);
}

.hero-lead {
  max-width: 40rem;
  margin-bottom: clamp(1.25rem, 3svh, 2.1rem);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.primary-action,
.contact-action {
  display: inline-flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
  min-height: 3.7rem;
  padding: 0.85rem 1.05rem 0.85rem 1.25rem;
  color: var(--white);
  background: var(--blue);
  border: 0;
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  transform: translate(var(--mag-x, 0), var(--mag-y, 0));
  transition: color 220ms var(--ease-out), background 220ms var(--ease-out), transform 500ms var(--ease-out);
}

.primary-action:hover,
.primary-action:focus-visible {
  color: var(--ink);
  background: var(--yellow);
}

.primary-action svg,
.contact-action svg {
  width: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.8;
}

.text-action {
  font-size: 0.9rem;
  font-weight: 600;
}

.concept-note {
  max-width: 35rem;
  margin: clamp(0.8rem, 2svh, 1.2rem) 0 0;
  color: rgba(17, 17, 15, 0.68);
  font-size: 0.72rem;
}

.google-auth-status {
  max-width: 35rem;
  margin: 0.8rem 0 0;
  padding: 0.7rem 0.8rem;
  color: var(--white);
  background: #b7251f;
  font-size: 0.72rem;
  font-weight: 600;
}

.time-terminal {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: calc(100svh - 5.25rem);
  min-height: 0;
  padding-bottom: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-left: 1px solid var(--ink);
}

.time-head {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255, 253, 247, 0.34);
}

.time-state {
  display: grid;
  gap: 0.3rem;
}

.clock-disclosure {
  color: rgba(255, 253, 247, 0.64);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.live-state {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  font-family: var(--display);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.live-state i {
  width: 0.72rem;
  height: 0.72rem;
  background: var(--yellow);
  border-radius: 50%;
  animation: live-pulse 1.3s var(--ease-out) infinite alternate;
}

@keyframes live-pulse {
  to { transform: scale(0.55); opacity: 0.5; }
}

.next-sync {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.4rem 0.8rem;
  align-items: baseline;
}

.next-sync span {
  color: rgba(255, 253, 247, 0.7);
  font-size: 0.66rem;
}

.next-sync strong {
  font-family: var(--display);
  font-size: 0.86rem;
  font-variant-numeric: tabular-nums;
}

.clock-stage {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  min-height: 0;
  padding: clamp(0.75rem, 2svh, 1.5rem) 2rem clamp(1rem, 2.5svh, 2rem);
}

.clock-stage::before,
.clock-stage::after {
  position: absolute;
  z-index: -1;
  content: "";
  background: rgba(255, 253, 247, 0.2);
}

.clock-stage::before {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.clock-stage::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.clock-assembly {
  position: relative;
  z-index: 2;
  width: clamp(17rem, min(32vw, calc(100svh - 23rem)), 33rem);
  aspect-ratio: 1;
  container-type: inline-size;
}

.clock-assembly::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--blue);
  border-radius: 50%;
  transform: translate(1rem, 1.2rem);
}

.clock-face {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--white);
  border-radius: 50%;
}

.clock-face::before {
  position: absolute;
  inset: 8.5%;
  content: "";
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.clock-ticks {
  position: absolute;
  inset: 5.5%;
}

.clock-tick {
  position: absolute;
  inset: 0;
  transform: rotate(calc(var(--tick) * 12deg));
}

.clock-tick::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 1.7rem;
  content: "";
  background: var(--yellow);
  transform: translateX(-50%) scaleY(0.47);
  transform-origin: center top;
  transition: transform 260ms var(--ease-out), background 260ms var(--ease-out);
}

.clock-tick.is-elapsed::before {
  background: var(--red);
  transform: translateX(-50%) scaleY(0.74);
}

.clock-tick.is-current::before {
  background: var(--blue);
  transform: translateX(-50%) scaleY(1);
}

.clock-label {
  position: absolute;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(0.62rem, 0.8vw, 0.8rem);
  font-weight: 600;
}

.clock-label--start { top: 10.5%; left: 50%; transform: translateX(-50%); }
.clock-label--quarter { top: 50%; right: 11%; transform: translateY(-50%); }
.clock-label--half { bottom: 10.5%; left: 50%; transform: translateX(-50%); }
.clock-label--three-quarter { top: 50%; left: 11%; transform: translateY(-50%); }

.clock-hand-axis {
  position: absolute;
  inset: 0;
  z-index: 2;
  transform: rotate(0deg);
  transform-origin: center;
}

.clock-hand {
  position: absolute;
  top: 11%;
  left: 50%;
  width: 4px;
  height: 39%;
  background: var(--red);
  transform: translateX(-50%);
}

.clock-hand::before {
  position: absolute;
  top: -0.4rem;
  left: 50%;
  width: 0.9rem;
  height: 0.9rem;
  content: "";
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: translateX(-50%);
}

.clock-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(11rem, 62%, 20rem);
  min-height: 24%;
  padding: clamp(0.65rem, 2.5cqi, 0.9rem);
  color: var(--white);
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.clock-core span {
  font-family: var(--display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.clock-core strong {
  font-family: var(--display);
  font-size: clamp(1.5rem, 8.5cqi, 2.7rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  white-space: nowrap;
}

.clock-signal {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--ink);
  font-family: var(--display);
  font-size: 0.55rem;
  font-weight: 700;
}

.clock-signal--lead { bottom: 18%; left: 8%; }
.clock-signal--job { top: 22%; right: 7%; background: var(--red); }

.clock-callout {
  position: absolute;
  z-index: 4;
  display: grid;
  width: clamp(9.5rem, 14vw, 13rem);
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--white);
}

.clock-callout span {
  font-size: 0.62rem;
  text-transform: uppercase;
}

.clock-callout strong {
  margin-top: 0.2rem;
  font-family: var(--display);
  font-size: clamp(0.72rem, 1vw, 0.94rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.clock-callout--lost { top: 2rem; left: 2rem; color: var(--white); background: var(--red); }
.clock-callout--action { right: 2rem; bottom: 2.2rem; color: var(--white); background: var(--blue); }

.clock-caption {
  position: relative;
  z-index: 4;
  min-height: 4rem;
  padding: 0.9rem 2rem;
  color: rgba(255, 253, 247, 0.72);
  border-top: 1px solid rgba(255, 253, 247, 0.34);
  font-size: 0.66rem;
  line-height: 1.45;
}

.freshness-band {
  overflow: hidden;
  color: var(--ink);
  background: var(--yellow);
  border-bottom: 1px solid var(--ink);
}

.freshness-track {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  width: max-content;
  min-height: 5rem;
  padding-inline: 1.5rem;
  font-family: var(--display);
  font-size: clamp(0.85rem, 1.35vw, 1.2rem);
  font-weight: 700;
  animation: ticker 22s linear infinite;
}

.freshness-track i {
  width: 0.85rem;
  height: 0.85rem;
  background: var(--red);
  border-radius: 50%;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.promise {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: 8vw;
  align-items: end;
  min-height: 80svh;
  padding: clamp(7rem, 13vw, 12rem) 6vw;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
  border-bottom: 1px solid var(--ink);
}

.promise h2,
.dispatch h2,
.subscription h2,
.live-proof h2,
.faq h2,
.final-cta h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(2.5rem, 5.8vw, 5.8rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.promise h2 span {
  color: var(--yellow);
}

.promise > p {
  position: relative;
  z-index: 2;
  max-width: 36rem;
  margin: 0;
  font-size: 1.05rem;
}

.promise-mark {
  position: absolute;
  top: 50%;
  right: -6vw;
  width: min(46vw, 39rem);
  aspect-ratio: 1;
  border: clamp(3.5rem, 8vw, 7rem) solid var(--red);
  border-radius: 50%;
  transform: translateY(-50%);
}

.promise-mark span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 800;
}

.promise-mark i {
  position: absolute;
  top: 50%;
  left: -15%;
  width: 130%;
  height: 2px;
  background: var(--white);
}

.dispatch {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(28rem, 0.92fr);
  min-height: 100svh;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}

.dispatch-image {
  position: relative;
  min-height: 48rem;
  margin: 0;
  overflow: hidden;
  background: var(--yellow);
  border-right: 1px solid var(--ink);
}

.dispatch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dispatch-image figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.35rem 0.5rem;
  color: var(--white);
  background: var(--ink);
  font-size: 0.62rem;
}

.dispatch-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6rem, 9vw, 9rem) 5vw;
}

.dispatch-copy ol {
  margin: clamp(4rem, 8vw, 7rem) 0 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.dispatch-copy li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--ink);
}

.dispatch-copy li > span {
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 600;
}

.dispatch-copy h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.dispatch-copy li p {
  max-width: 35rem;
  margin: 0;
  font-size: 0.88rem;
}

.subscription {
  min-height: 100svh;
  padding: clamp(7rem, 11vw, 11rem) 6vw;
  background: var(--yellow);
  border-bottom: 1px solid var(--ink);
}

.subscription-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.55fr);
  gap: 7vw;
  align-items: end;
  margin-bottom: clamp(5rem, 9vw, 8rem);
}

.subscription-heading p {
  max-width: 39rem;
  margin: 0;
}

.subscription-ledger {
  border-top: 2px solid var(--ink);
}

.ledger-row {
  display: grid;
  grid-template-columns: 7rem minmax(14rem, 0.8fr) minmax(18rem, 1.3fr) auto;
  gap: 2rem;
  align-items: center;
  min-height: 7rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--ink);
}

.ledger-code,
.ledger-row > strong {
  font-family: var(--display);
  font-size: 0.64rem;
  font-weight: 600;
  text-transform: uppercase;
}

.ledger-code {
  width: fit-content;
  padding: 0.35rem 0.48rem;
  color: var(--white);
  background: var(--ink);
}

.ledger-row--lead .ledger-code {
  background: var(--blue);
}

.ledger-row--job .ledger-code {
  background: var(--red);
}

.ledger-row h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  text-transform: uppercase;
}

.ledger-row p {
  margin: 0;
}

.ledger-row > strong {
  text-align: right;
}

.live-proof {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  min-height: 88svh;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid var(--ink);
}

.proof-clock {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--red);
  font-family: var(--display);
  font-size: clamp(5rem, 13vw, 12rem);
  font-weight: 800;
  line-height: 0.82;
}

.proof-clock span {
  position: relative;
  z-index: 2;
}

.proof-clock i {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 0.7rem;
  background: var(--yellow);
  transform: translateY(-50%);
}

.proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6rem, 10vw, 9rem) 7vw;
}

.proof-copy > p {
  max-width: 42rem;
  margin: 2rem 0 3.5rem;
  font-size: 1.05rem;
}

.proof-sample {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 2rem;
  align-items: center;
  max-width: 52rem;
  padding: 1.5rem;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 1rem 1.2rem 2.5rem rgba(0, 0, 0, 0.28);
}

.proof-sample div span,
.proof-sample div strong {
  display: block;
}

.proof-sample div span,
.proof-sample time,
.proof-sample small {
  font-family: var(--display);
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
}

.proof-sample div span {
  color: var(--red);
}

.proof-sample div strong {
  margin-top: 0.35rem;
  font-size: 1rem;
}

.proof-sample time {
  color: var(--green);
  font-variant-numeric: tabular-nums;
}

.proof-sample small {
  grid-column: 1 / -1;
  padding-top: 0.7rem;
  color: rgba(17, 17, 15, 0.56);
  border-top: 1px solid var(--line);
}

.faq {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: 8vw;
  align-items: start;
  padding: clamp(7rem, 11vw, 10rem) 6vw;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}

.faq-heading {
  position: sticky;
  top: 7rem;
}

.faq-heading h2 span {
  color: var(--blue);
}

.faq-heading p {
  max-width: 34rem;
  margin: 2rem 0 0;
  font-size: 1.05rem;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--ink);
}

.faq-list summary {
  padding: 1.7rem 0;
  font-family: var(--display);
  font-size: clamp(1rem, 1.65vw, 1.45rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  cursor: pointer;
}

.faq-list summary::marker {
  color: var(--blue);
}

.faq-list details[open] summary {
  color: var(--blue);
}

.faq-list details p {
  max-width: 64ch;
  margin: -0.35rem 0 1.8rem;
  padding-inline-start: 1.15rem;
  font-size: 1rem;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(8rem, 0.3fr) minmax(0, 1fr) auto;
  gap: 5vw;
  align-items: center;
  min-height: 76svh;
  padding: 7vw 6vw;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
  border-bottom: 1px solid var(--ink);
}

.final-cta > div:nth-child(2),
.final-cta > button,
.cta-status {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 14ch;
}

.final-cta > div:nth-child(2) > p {
  max-width: 42rem;
  margin: 2rem 0 0;
}

.cta-shape {
  position: relative;
  width: clamp(8rem, 15vw, 14rem);
  aspect-ratio: 1;
}

.cta-shape span:first-child {
  position: absolute;
  inset: 0;
  border: clamp(2rem, 4vw, 4rem) solid var(--red);
  border-radius: 50%;
}

.cta-shape span:last-child {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--yellow);
}

.contact-action {
  min-width: 15rem;
  color: var(--ink);
  background: var(--yellow);
}

.contact-action:hover,
.contact-action:focus-visible {
  color: var(--white);
  background: var(--red);
}

.cta-status {
  grid-column: 2 / -1;
  max-width: 42rem;
  margin: -2vw 0 0;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 253, 247, 0.62);
  font-size: 0.72rem;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 3rem;
  align-items: center;
  min-height: 11rem;
  padding: 2.5rem 6vw;
  color: var(--white);
  background: var(--ink);
}

footer p {
  margin: 0;
}

footer > div {
  display: flex;
  gap: 2rem;
  color: rgba(255, 253, 247, 0.68);
  font-size: 0.72rem;
}

.footer-brand {
  color: var(--white);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 0.82fr) minmax(31rem, 1.18fr);
  }

  h1 {
    font-size: clamp(2.8rem, min(5.3vw, 9svh), 4.8rem);
  }

  .clock-assembly {
    width: clamp(17rem, min(30vw, calc(100svh - 22rem)), 28rem);
  }

  .clock-callout {
    width: 9.5rem;
  }

  .clock-callout--lost { top: 1.25rem; left: 1.25rem; }
  .clock-callout--action { right: 1.25rem; bottom: 1.5rem; }

  .ledger-row {
    grid-template-columns: 6rem minmax(12rem, 0.8fr) minmax(15rem, 1.2fr);
  }

  .ledger-row > strong {
    grid-column: 2 / -1;
    text-align: left;
  }

  .final-cta {
    grid-template-columns: 8rem 1fr;
  }

  .contact-action {
    grid-column: 2;
    width: fit-content;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 4.5rem;
    padding: 0 1.25rem;
  }

  .nav-links a {
    display: none;
  }

  .nav-links a[href="/pricing/"] {
    display: inline-flex;
  }

  .nav-links {
    gap: 0.75rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
    padding-top: 4.5rem;
  }

  .hero-copy {
    min-height: 78svh;
    padding: 5rem 1.25rem 6rem;
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 4.4rem);
  }

  .time-terminal {
    height: auto;
    min-height: 75svh;
    padding-bottom: 0;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .clock-stage {
    min-height: 68svh;
  }

  .clock-assembly {
    width: min(72vw, 31rem);
  }

  .promise,
  .dispatch,
  .subscription-heading,
  .live-proof,
  .faq {
    grid-template-columns: 1fr;
  }

  .promise {
    gap: 3rem;
    min-height: 82svh;
    padding: 7rem 1.25rem;
  }

  .promise h2,
  .dispatch h2,
  .subscription h2,
  .live-proof h2,
  .faq h2,
  .final-cta h2 {
    font-size: clamp(2.35rem, 10vw, 4.6rem);
  }

  .promise-mark {
    right: -30vw;
    width: 78vw;
  }

  .dispatch-image {
    min-height: 64svh;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .dispatch-copy {
    padding: 6rem 1.25rem;
  }

  .subscription {
    padding: 6rem 1.25rem;
  }

  .subscription-heading {
    gap: 2.5rem;
    margin-bottom: 5rem;
  }

  .ledger-row {
    grid-template-columns: 5rem 1fr;
    gap: 0.9rem 1rem;
    padding: 1.4rem 0;
  }

  .ledger-row p,
  .ledger-row > strong {
    grid-column: 2;
  }

  .proof-clock {
    min-height: 56svh;
  }

  .proof-copy {
    padding: 6rem 1.25rem;
  }

  .faq {
    gap: 4rem;
    padding: 6rem 1.25rem;
  }

  .faq-heading {
    position: static;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: 88svh;
    padding: 6rem 1.25rem;
  }

  .contact-action,
  .cta-status {
    grid-column: auto;
  }

  .cta-status {
    margin-top: -1rem;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3.5rem 1.25rem;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    width: 2.1rem;
    height: 2.1rem;
  }

  .nav-action {
    min-height: 2.35rem;
    padding-inline: 0.7rem;
    font-size: 0.72rem;
  }

  .language-switcher {
    grid-template-columns: repeat(2, 2.35rem);
    min-height: 2.35rem;
  }

  .language-switcher button {
    min-width: 2.35rem;
    padding: 0;
  }

  .hero-copy {
    min-height: 80svh;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .time-head {
    align-items: flex-start;
    padding: 1rem;
  }

  .next-sync {
    grid-template-columns: 1fr;
    text-align: right;
  }

  .clock-stage {
    min-height: 66svh;
    padding: 1rem 0.75rem 1.5rem;
  }

  .clock-assembly {
    width: min(82vw, 20rem);
  }

  .clock-assembly::before {
    transform: translate(0.55rem, 0.7rem);
  }

  .clock-callout {
    width: 8.7rem;
    padding: 0.6rem 0.65rem;
  }

  .clock-callout--lost { top: 1rem; left: 0.75rem; }
  .clock-callout--action { right: 0.75rem; bottom: 1rem; }

  .clock-signal {
    width: 2.55rem;
    height: 2.55rem;
  }

  .clock-caption {
    padding: 1rem;
  }

  .promise-mark {
    opacity: 0.7;
  }

  .proof-sample {
    grid-template-columns: 1fr;
  }

  .proof-sample time {
    justify-self: start;
  }

  .proof-sample small {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
