/* Human review: final colors, typography, form endpoint, and client-facing terms should be reviewed before publishing. */
:root {
  color-scheme: light;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #e8eef5;
  --surface: #f8fbff;
  --surface-2: #dfe8f1;
  --surface-3: #cfdbe7;
  --ink: #101820;
  --muted: #516273;
  --quiet: #748293;
  --line: rgba(36, 54, 74, 0.15);
  --line-strong: rgba(36, 54, 74, 0.28);
  --artifact: #f7fbff;
  --artifact-2: #d2dfec;
  --artifact-ink: #101820;
  --blue: #2784ff;
  --blue-deep: #0c58c6;
  --cyan: #66d7ff;
  --blue-soft: rgba(39, 132, 255, 0.11);
  --cta-bg: #101820;
  --cta-ink: #edf5ff;
  --shadow: 0 16px 32px rgba(33, 47, 64, 0.13);
  --max: 1160px;
  --wide: 1340px;
  --radius: 7px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 74% 14%, rgba(39, 132, 255, 0.13), transparent 26rem),
    linear-gradient(145deg, rgba(102, 215, 255, 0.12), transparent 36rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(36, 54, 74, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(36, 54, 74, 0.026) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
  pointer-events: none;
}

::selection {
  background: rgba(39, 132, 255, 0.44);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--cta-bg);
  color: var(--cta-ink);
  font-weight: 720;
}

.skip-link:focus {
  top: 16px;
}

.site-header,
.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(var(--wide), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  min-height: 72px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 730;
  white-space: nowrap;
}

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 680;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.footer-links a:hover {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 6px;
  font-weight: 730;
  white-space: nowrap;
}

.nav-cta {
  padding: 8px 15px;
  background: var(--cta-bg);
  color: var(--cta-ink);
  border: 1px solid rgba(16, 24, 32, 0.42);
}

.button {
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
}

.button.primary {
  border-color: var(--cta-bg);
  background: var(--cta-bg);
  color: var(--cta-ink);
  box-shadow: inset 0 -2px 0 rgba(39, 132, 255, 0.46);
}

.button.secondary {
  background: rgba(248, 251, 255, 0.52);
  color: var(--ink);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.hero,
.section,
.feature-band,
.proof-strip,
.rules,
.final-cta {
  width: min(var(--wide), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.78fr);
  gap: 46px;
  align-items: center;
  min-height: 548px;
  padding: 40px 0 52px;
}

.hero::after,
.feature-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent 68%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 4px;
  width: 2px;
  height: 52px;
  background: var(--blue);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 660;
  line-height: 1.2;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--blue);
  opacity: 0.8;
}

.object-type {
  display: block;
  color: var(--quiet);
  font-size: 0.86rem;
  font-weight: 680;
  line-height: 1.2;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 720;
  line-height: 0.96;
}

h1 {
  max-width: 900px;
  font-size: 4.35rem;
}

h2 {
  max-width: 760px;
  font-size: 2.72rem;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.1;
}

p,
li {
  color: var(--muted);
  font-size: 1.06rem;
}

.lede {
  max-width: 710px;
  margin-top: 22px;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-artifact,
.offer-artifact,
.brief-visual,
.about-visual,
.start-card,
.delivery-note {
  position: relative;
}

.signal-node,
.memo-visual,
.brief-visual,
.request-note,
.office-note,
.delivery-note {
  border: 1px solid rgba(170, 194, 222, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--artifact), var(--artifact-2));
  color: var(--artifact-ink);
  box-shadow: var(--shadow);
}

.workflow-artifact {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.artifact-shell {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(248, 251, 255, 0.9), rgba(210, 223, 236, 0.88));
  box-shadow: var(--shadow);
  padding: 24px;
}

.artifact-topline,
.artifact-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.artifact-topline {
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(16, 24, 32, 0.14);
}

.artifact-topline span,
.artifact-footer span {
  color: rgba(16, 24, 32, 0.62);
  font-size: 0.86rem;
}

.artifact-topline strong {
  color: var(--artifact-ink);
  font-size: 1rem;
  line-height: 1.2;
}

.artifact-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.signal-node {
  min-height: 174px;
  padding: 20px;
  box-shadow: none;
}

.current-node {
  background: rgba(16, 24, 32, 0.035);
  color: var(--ink);
}

.output-node {
  background: linear-gradient(145deg, var(--artifact), var(--artifact-2));
}

.artifact-connector {
  position: relative;
  align-self: center;
  height: 1px;
  background: var(--blue);
  opacity: 0.72;
}

.artifact-connector::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
  transform: rotate(45deg);
}

.artifact-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 24, 32, 0.14);
}

.signal-node .object-type,
.memo-visual .object-type,
.request-note .object-type,
.office-note .object-type,
.delivery-note .object-type {
  margin-bottom: 14px;
}

.signal-node strong,
.memo-visual strong,
.brief-visual strong,
.request-note strong,
.office-note strong,
.delivery-note strong {
  display: block;
  max-width: 310px;
  color: var(--artifact-ink);
  font-size: 1.38rem;
  font-weight: 730;
  line-height: 1.04;
}

.current-node strong {
  color: var(--ink);
}

.signal-node p,
.request-note li,
.delivery-note p {
  color: rgba(16, 24, 32, 0.72);
  font-size: 0.95rem;
}

.current-node p {
  color: var(--muted);
}

.signal-node p {
  margin-top: 15px;
}

.proof-strip {
  padding: 26px 0 38px;
  border-top: 1px solid var(--line);
}

.proof-strip p {
  max-width: 930px;
  color: var(--ink);
  font-size: 1.86rem;
  font-weight: 700;
  line-height: 1.08;
}

.section {
  padding: 80px 0;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(340px, 1fr);
  gap: 70px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.62fr);
  gap: 60px;
  align-items: start;
  margin-bottom: 36px;
}

.section-head p:not(.eyebrow) {
  max-width: 560px;
}

.work-type-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
}

.work-type-list article {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 13px;
  align-items: start;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line);
}

.work-type-list svg {
  width: 26px;
  height: 26px;
  stroke: var(--blue);
  stroke-width: 1.65;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.work-type-list h3 {
  margin-bottom: 6px;
}

.work-type-list p {
  font-size: 0.96rem;
}

.process-editorial {
  border-top: 1px solid var(--line);
}

.editorial-steps,
.rules,
.worklist {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.editorial-steps,
.rules {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.editorial-steps article,
.rules article,
.worklist li {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.editorial-steps article {
  min-height: 206px;
  padding: 28px;
}

.step-number,
.rules article span {
  display: block;
  margin-bottom: 34px;
  color: var(--quiet);
  font-size: 0.96rem;
  font-weight: 680;
  line-height: 1;
  text-transform: none;
}

.editorial-steps p,
.rules p {
  margin-top: 12px;
}

.feature-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(330px, 0.58fr);
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 16px;
}

.feature-copy .button {
  margin-top: 28px;
}

.brief-visual {
  min-height: 248px;
  padding: 26px;
}

.brief-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(16, 24, 32, 0.16);
}

.brief-header span {
  color: rgba(16, 24, 32, 0.62);
  font-size: 0.9rem;
  font-weight: 680;
  text-transform: none;
}

.brief-header strong {
  color: var(--artifact-ink);
  font-size: 1.08rem;
}

.brief-line {
  display: grid;
  grid-template-columns: minmax(112px, 0.48fr) 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(16, 24, 32, 0.16);
}

.brief-line span {
  color: rgba(16, 24, 32, 0.62);
  font-size: 0.9rem;
  font-weight: 680;
  text-transform: none;
}

.brief-line p {
  color: var(--artifact-ink);
  font-size: 0.98rem;
}

.copy-block p + p,
.boundary-note p + p,
.contact-card p + p {
  margin-top: 18px;
}

.offer-hero {
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.62fr);
}

.offer-artifact {
  min-height: 340px;
}

.memo-visual {
  position: absolute;
  left: 0;
  right: 0;
  top: 44px;
  padding: 26px;
}

.memo-visual .brief-line {
  grid-template-columns: minmax(112px, 0.48fr) 1fr;
}

.time-mark {
  position: absolute;
  left: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  max-width: 245px;
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(39, 132, 255, 0.38);
  background: rgba(39, 132, 255, 0.12);
  color: var(--ink);
  box-shadow: none;
}

.time-mark strong {
  font-size: 1.56rem;
  line-height: 0.9;
  color: var(--blue);
}

.time-mark span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1.18;
}

.rules article {
  min-height: 178px;
  padding: 26px;
}

.fit-stack {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.fit-stack div,
.boundary-note,
.contact-card {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.fit-stack strong,
.contact-card strong {
  color: var(--ink);
  font-size: 1.12rem;
}

.fit-stack p {
  margin-top: 8px;
}

.receive-section {
  border-top: 1px solid var(--line);
}

.output-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.output-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.output-list strong {
  display: block;
  color: var(--ink);
}

.output-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.worklist {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.worklist li {
  min-height: 194px;
  padding: 22px;
}

.worklist strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.1;
}

.worklist span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.request-note,
.office-note,
.delivery-note {
  display: grid;
  min-height: 192px;
  align-content: center;
  gap: 14px;
  padding: 26px;
}

.request-note img,
.office-note img,
.delivery-note img {
  width: 38px;
  height: 38px;
  object-fit: cover;
}

.request-note ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
}

.request-note li {
  padding-top: 10px;
  border-top: 1px solid rgba(16, 24, 32, 0.16);
}

.office-note strong {
  max-width: 260px;
}

.delivery-note {
  place-items: center;
  text-align: center;
}

.delivery-note p {
  max-width: 240px;
}

.start-card {
  max-width: 308px;
  justify-self: end;
}

.plain-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 690;
}

.intake-section {
  border-top: 1px solid var(--line);
}

.intake-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(440px, 1fr);
  gap: 60px;
  align-items: start;
}

.intake-intro p:not(.eyebrow) {
  margin-top: 16px;
}

.intake-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--ink);
}

.intake-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 680;
  text-transform: none;
}

.intake-form .full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #f8fbff;
  color: #101820;
  padding: 11px;
  font: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.intake-form .button {
  justify-self: start;
  margin-top: 6px;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
  box-shadow: none;
}

.contact-hero {
  min-height: 430px;
}

.who-section {
  align-items: center;
}

.who-section .copy-block {
  max-width: 650px;
  padding-left: 28px;
  border-left: 1px solid var(--line-strong);
}

.final-cta {
  padding: 78px 0 96px;
  border-top: 1px solid var(--line);
}

.final-cta p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 16px;
}

.final-cta .button {
  margin-top: 28px;
}

.site-footer {
  min-height: 112px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  justify-content: end;
  gap: 18px;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 3.9rem;
  }
}

@media (max-width: 980px) {
  .site-header,
  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 16px 0;
  }

  .site-nav,
  .footer-links {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: start;
  }

  .nav-cta {
    justify-self: end;
  }

  .hero,
  .offer-hero,
  .feature-band,
  .two-col,
  .section-head,
  .intake-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .workflow-artifact,
  .offer-artifact {
    min-height: auto;
  }

  .editorial-steps,
  .rules,
  .worklist {
    grid-template-columns: 1fr;
  }

  .worklist li,
  .editorial-steps article {
    min-height: auto;
  }

  .step-number,
  .rules article span {
    margin-bottom: 32px;
  }

  .brief-visual {
    max-width: 520px;
  }

  .start-card {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header,
  .site-footer,
  .hero,
  .section,
  .feature-band,
  .proof-strip,
  .rules,
  .final-cta {
    width: min(var(--max), calc(100% - 24px));
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.78rem;
  }

  .nav-cta {
    padding: 8px 12px;
    font-size: 0.88rem;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: 2.54rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .lede {
    font-size: 1.03rem;
  }

  .proof-strip p {
    font-size: 1.48rem;
  }

  .hero-copy::before {
    left: -12px;
    height: 44px;
  }

  .work-type-list,
  .output-list,
  .intake-form {
    grid-template-columns: 1fr;
  }

  .workflow-artifact,
  .offer-artifact {
    display: grid;
    gap: 10px;
    min-height: auto;
    padding-top: 8px;
  }

  .artifact-shell {
    padding: 18px;
  }

  .artifact-topline,
  .artifact-footer {
    display: grid;
    gap: 4px;
  }

  .artifact-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .artifact-connector {
    width: 1px;
    height: 22px;
    justify-self: 22px;
  }

  .artifact-connector::after {
    right: -4px;
    top: auto;
    bottom: 0;
    transform: rotate(135deg);
  }

  .signal-node {
    width: 100%;
    min-height: 0;
    padding: 19px;
  }

  .output-node {
    width: 100%;
  }

  .signal-node strong,
  .memo-visual strong,
  .brief-visual strong,
  .request-note strong,
  .office-note strong,
  .delivery-note strong {
    font-size: 1.34rem;
  }

  .brief-line,
  .memo-visual .brief-line {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .memo-visual {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    padding: 22px;
  }

  .time-mark {
    position: relative;
    left: auto;
    bottom: auto;
    justify-self: start;
  }

  .feature-band,
  .section {
    padding: 62px 0;
  }
}
