:root {
  --ink: #061b2e;
  --ink-deep: #041522;
  --ink-soft: #0b2b45;
  --blue: #4ab9f0;
  --blue-bright: #8bd8ff;
  --blue-deep: #1689c4;
  --paper: #f1f4f5;
  --paper-warm: #f7f8f8;
  --white: #ffffff;
  --text: #102b3f;
  --muted: #607382;
  --line: #cbd6dc;
  --line-dark: rgba(151, 194, 219, 0.24);
  --error: #b93636;
  --success: #176f54;
  --display: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --body: "Helvetica Neue", Arial, Helvetica, sans-serif;
  --mono: "Courier New", Courier, monospace;
  --shell: min(1280px, calc(100vw - 96px));
  --header-height: 92px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--paper-warm);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--display);
  line-height: 1.02;
}

h1,
h2 {
  letter-spacing: -0.055em;
}

h3 {
  letter-spacing: -0.025em;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-ink h1,
.section-ink h2,
.section-ink h3 {
  color: var(--white);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 132px 0;
}

.section-dark,
.section-ink {
  color: #c9d9e4;
  background: var(--ink);
}

.section-ink {
  background: var(--ink-deep);
}

.section-paper {
  background: var(--paper);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--blue-bright);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.kicker,
.micro-label,
.eyebrow,
.visual-label,
.footer-column > span,
.footer-contact > span,
.legal-grid aside > span {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 25px;
  color: var(--blue-deep);
}

.kicker::before {
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
}

.kicker-blue {
  color: var(--blue-bright);
}

.micro-label {
  margin-bottom: 12px;
  color: var(--blue-deep);
}

.eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  color: var(--blue-bright);
}

.eyebrow span {
  display: flex;
  align-items: center;
}

.eyebrow span:first-child::after {
  width: 48px;
  height: 1px;
  margin: 0 15px;
  content: "";
  background: rgba(139, 216, 255, 0.5);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 14px 19px 14px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button span {
  font-size: 19px;
  font-weight: 400;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--blue-bright);
}

.button-primary:hover {
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--blue-deep);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}

.button-outline-light:hover {
  color: var(--ink);
  border-color: var(--blue-bright);
  background: var(--blue-bright);
}

.button-full {
  width: 100%;
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
  gap: 22px;
  color: var(--blue-deep);
}

.text-link-light {
  color: var(--white);
}

.lead-copy {
  font-size: clamp(21px, 2vw, 28px);
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(158, 199, 222, 0.18);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-sticky {
  position: fixed;
  background: rgba(6, 27, 46, 0.96);
  box-shadow: 0 8px 30px rgba(0, 10, 20, 0.16);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  gap: 36px;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: 250px;
  align-items: center;
}

.desktop-nav {
  display: flex;
  height: 100%;
  gap: 36px;
  align-items: center;
}

.desktop-nav a,
.header-portal {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-portal {
  display: flex;
  justify-self: end;
  gap: 14px;
  align-items: center;
}

.header-portal i {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: var(--blue-bright);
  font-size: 17px;
  font-style: normal;
  transition: color 180ms ease, background 180ms ease;
}

.header-portal:hover i {
  color: var(--ink);
  background: var(--blue-bright);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

/* Home hero */
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.42;
  pointer-events: none;
  background-image: linear-gradient(rgba(92, 155, 192, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(92, 155, 192, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, transparent 0, black 40%, black 100%);
}

.hero-home {
  min-height: 790px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 698px;
  grid-template-columns: minmax(0, 1.03fr) minmax(480px, 0.97fr);
  gap: 7vw;
  align-items: center;
  padding: 80px 0 74px;
}

.hero-copy h1,
.page-hero h1,
.not-found h1 {
  max-width: 840px;
  margin-bottom: 32px;
  color: var(--white);
  font-size: clamp(58px, 6.6vw, 106px);
  font-weight: 800;
  line-height: 0.91;
}

.hero-copy h1 em,
.page-hero h1 em,
.not-found h1 em {
  color: var(--blue-bright);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 38px;
  color: #c9dae5;
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.55;
}

.hero-rule {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 47%;
  height: 5px;
  background: var(--blue);
}

.hero-rule::before {
  position: absolute;
  bottom: 0;
  left: -45px;
  width: 45px;
  height: 46px;
  content: "";
  border-bottom: 5px solid var(--blue);
  border-left: 5px solid var(--blue);
}

.build-board {
  position: relative;
  border: 1px solid rgba(147, 199, 229, 0.36);
  color: #8facc0;
  background: rgba(4, 21, 34, 0.62);
  box-shadow: 0 40px 90px rgba(0, 8, 17, 0.25);
}

.build-board::before,
.build-board::after {
  position: absolute;
  width: 22px;
  height: 22px;
  content: "";
  pointer-events: none;
}

.build-board::before {
  top: -6px;
  left: -6px;
  border-top: 2px solid var(--blue-bright);
  border-left: 2px solid var(--blue-bright);
}

.build-board::after {
  right: -6px;
  bottom: -6px;
  border-right: 2px solid var(--blue-bright);
  border-bottom: 2px solid var(--blue-bright);
}

.board-topline,
.board-footer {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.board-topline {
  border-bottom: 1px solid rgba(147, 199, 229, 0.25);
}

.board-status {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--blue-bright);
}

.board-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6ee4b5;
  box-shadow: 0 0 0 4px rgba(110, 228, 181, 0.1);
}

.board-canvas {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background-image: radial-gradient(circle, rgba(136, 193, 225, 0.22) 1px, transparent 1px);
  background-size: 18px 18px;
}

.board-axis {
  position: absolute;
  opacity: 0.5;
  background: var(--blue-deep);
}

.board-axis-x {
  top: 51%;
  right: 0;
  left: 0;
  height: 1px;
}

.board-axis-y {
  top: 0;
  bottom: 0;
  left: 48%;
  width: 1px;
}

.board-note {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 8px;
  padding: 7px 9px;
  border: 1px solid rgba(142, 195, 226, 0.3);
  color: #b8ccda;
  background: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.board-note b {
  color: var(--blue-bright);
}

.board-note-one {
  top: 34px;
  left: 24px;
}

.board-note-two {
  top: 92px;
  right: 20px;
}

.board-note-three {
  right: 35px;
  bottom: 26px;
}

.browser-block {
  position: absolute;
  z-index: 1;
  top: 87px;
  left: 50%;
  width: 68%;
  overflow: hidden;
  border: 1px solid #709bb5;
  background: #f4f7f8;
  box-shadow: 18px 22px 0 rgba(37, 121, 168, 0.16);
  transform: translateX(-50%);
}

.browser-bar {
  display: flex;
  height: 27px;
  gap: 5px;
  align-items: center;
  padding: 0 9px;
  background: #dce4e8;
}

.browser-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8798a2;
}

.browser-bar span {
  margin-left: auto;
  color: #4e6776;
  font-family: var(--mono);
  font-size: 7px;
}

.browser-page {
  min-height: 235px;
  padding: 26px 24px;
  background: linear-gradient(135deg, #09253c 0 62%, #106b99 62% 100%);
}

.browser-kicker,
.browser-heading {
  display: block;
  background: #7cd2ff;
}

.browser-kicker {
  width: 57px;
  height: 4px;
  margin-bottom: 19px;
}

.browser-heading {
  width: 72%;
  height: 13px;
  margin-bottom: 8px;
  background: #fff;
}

.browser-heading.short {
  width: 50%;
}

.browser-columns {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.browser-columns span {
  height: 63px;
  border: 1px solid rgba(139, 216, 255, 0.55);
  background: rgba(5, 26, 43, 0.45);
}

.coordinate {
  position: absolute;
  color: var(--blue-bright);
  font-family: var(--mono);
  font-size: 8px;
}

.coordinate-a {
  top: 225px;
  left: 10px;
  transform: rotate(-90deg);
}

.coordinate-b {
  right: 10px;
  bottom: 105px;
}

.board-footer {
  min-height: 48px;
  gap: 8px;
  border-top: 1px solid rgba(147, 199, 229, 0.25);
}

.board-footer strong {
  padding: 4px 6px;
  color: var(--ink);
  background: var(--blue-bright);
}

/* Proof */
.proof-strip {
  color: #c8d8e2;
  background: var(--ink-soft);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid > div {
  display: grid;
  min-height: 106px;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 34px;
  border-right: 1px solid rgba(149, 193, 217, 0.22);
}

.proof-grid > div:first-child {
  padding-left: 0;
}

.proof-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-grid strong {
  color: var(--blue-bright);
  font-family: var(--mono);
  font-size: 12px;
}

.proof-grid span {
  max-width: 250px;
  font-size: 14px;
  line-height: 1.45;
}

/* Shared headings */
.section-heading {
  margin-bottom: 70px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 8vw;
  align-items: end;
}

.split-heading h2,
.process-intro h2,
.portal-callout h2,
.fit-grid h2,
.engagement-grid h2,
.faq-grid h2,
.founder-grid h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 5vw, 76px);
}

.split-heading > p {
  max-width: 500px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 18px;
}

.section-ink .split-heading > p {
  color: #aabfcd;
}

/* Services preview */
.section-services-preview {
  background: var(--paper-warm);
}

.service-index {
  margin-bottom: 34px;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  min-height: 122px;
  grid-template-columns: 72px minmax(250px, 0.8fr) minmax(280px, 1fr) 52px;
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 180ms ease, padding 180ms ease, background 180ms ease;
}

.service-row:hover {
  padding-inline: 18px;
  color: var(--blue-deep);
  background: #fff;
}

.service-number {
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: 13px;
}

.service-name {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.service-description {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.service-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 20px;
}

/* Work */
.section-work {
  overflow: hidden;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.32fr 0.68fr;
  gap: 26px;
}

.work-card {
  min-width: 0;
}

.work-visual {
  position: relative;
  display: block;
  min-height: 460px;
  overflow: hidden;
  text-decoration: none;
}

.work-card:not(.work-card-wide) .work-visual {
  min-height: 460px;
}

.visual-marketing {
  padding: 55px 42px 0;
  background: #69c6ee;
}

.visual-marketing::before {
  position: absolute;
  top: -85px;
  right: -65px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(6, 27, 46, 0.3);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 38px rgba(6, 27, 46, 0.07), 0 0 0 75px rgba(6, 27, 46, 0.05);
}

.visual-portal {
  padding: 55px 30px 0;
  background: #113a58;
}

.visual-label {
  position: absolute;
  z-index: 2;
  top: 19px;
  left: 22px;
  color: var(--ink);
  font-size: 10px;
}

.visual-portal .visual-label {
  color: var(--blue-bright);
}

.site-preview {
  position: relative;
  height: 405px;
  overflow: hidden;
  border: 8px solid #fff;
  background: var(--white);
  box-shadow: 0 25px 50px rgba(4, 21, 34, 0.2);
  transform: rotate(-1deg);
  transition: transform 400ms ease;
}

.work-visual:hover .site-preview {
  transform: rotate(0) translateY(-8px);
}

.preview-nav {
  display: flex;
  height: 38px;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  padding: 0 16px;
  background: #fff;
}

.preview-nav i {
  width: 58px;
  height: 12px;
  margin-right: auto;
  background: var(--ink);
}

.preview-nav span {
  width: 31px;
  height: 3px;
  background: #7891a1;
}

.preview-hero {
  position: relative;
  display: flex;
  height: 212px;
  align-items: center;
  padding: 28px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.preview-hero strong {
  position: relative;
  z-index: 1;
  font-size: 33px;
  line-height: 1;
}

.preview-hero i {
  position: absolute;
  right: -45px;
  width: 190px;
  height: 190px;
  border: 25px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 25px rgba(74, 185, 240, 0.15);
}

.preview-cards {
  display: grid;
  padding: 16px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.preview-cards span {
  height: 110px;
  border: 1px solid #ccd7dd;
  background: linear-gradient(#e9eff2 0 45%, #fff 45%);
}

.portal-preview {
  display: grid;
  height: 405px;
  overflow: hidden;
  grid-template-columns: 24% 76%;
  border: 7px solid #fff;
  background: #e9eef1;
  box-shadow: 0 25px 50px rgba(0, 7, 15, 0.28);
  transform: rotate(1.5deg) translateY(4px);
  transition: transform 400ms ease;
}

.work-visual:hover .portal-preview {
  transform: rotate(0) translateY(-8px);
}

.portal-rail {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 18px 12px;
  color: #fff;
  background: var(--ink);
}

.portal-rail b {
  margin-bottom: 17px;
  color: var(--blue-bright);
  font-size: 17px;
}

.portal-rail i {
  width: 70%;
  height: 5px;
  background: #668094;
}

.portal-main {
  padding: 30px 18px;
}

.portal-title {
  display: block;
  width: 68%;
  height: 13px;
  margin-bottom: 24px;
  background: var(--ink);
}

.portal-main > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.portal-main i {
  display: block;
  height: 120px;
  border: 1px solid #bdcbd2;
  background: #fff;
}

.work-meta {
  display: grid;
  grid-template-columns: minmax(210px, 0.6fr) 1fr auto;
  gap: 38px;
  align-items: start;
  padding: 28px 0 0;
}

.work-meta h3 {
  margin: 0;
  color: #fff;
  font-size: 27px;
}

.work-meta > p {
  margin: 0;
  color: #aabfcd;
  font-size: 14px;
  line-height: 1.55;
}

.circle-link {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--blue-bright);
  font-size: 20px;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.circle-link:hover {
  color: var(--ink);
  background: var(--blue-bright);
}

.work-meta-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.work-meta-stack .text-link {
  margin-top: auto;
}

/* Process */
.section-process {
  background: #fff;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(480px, 1.28fr);
  gap: 10vw;
}

.process-intro {
  position: sticky;
  top: 140px;
  align-self: start;
}

.process-intro h2 {
  margin-bottom: 28px;
}

.process-intro > p:not(.kicker) {
  max-width: 440px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 18px;
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  display: grid;
  min-height: 175px;
  grid-template-columns: 66px 1fr;
  gap: 26px;
  padding: 0 0 44px;
}

.process-list li:not(:last-child)::before {
  position: absolute;
  top: 41px;
  bottom: 8px;
  left: 20px;
  width: 1px;
  content: "";
  background: var(--line);
}

.process-list li > span {
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  border: 1px solid var(--blue-deep);
  border-radius: 50%;
  color: var(--blue-deep);
  background: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.process-list h3 {
  margin: 3px 0 12px;
  font-size: 30px;
}

.process-list p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
}

/* Portal callout */
.portal-callout {
  position: relative;
  overflow: hidden;
  color: #c9d9e4;
  background: #0b3653;
}

.portal-callout::after {
  position: absolute;
  top: -25%;
  right: -8%;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(139, 216, 255, 0.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 60px rgba(139, 216, 255, 0.035), 0 0 0 120px rgba(139, 216, 255, 0.025);
}

.portal-callout-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
  align-items: center;
}

.portal-callout h2 {
  margin-bottom: 28px;
  color: #fff;
}

.portal-callout p:not(.kicker) {
  max-width: 480px;
  margin-bottom: 34px;
}

.workspace-demo {
  border: 1px solid rgba(139, 216, 255, 0.45);
  background: #eaf0f3;
  box-shadow: 22px 25px 0 rgba(3, 18, 30, 0.22);
  transform: rotate(1deg);
}

.workspace-header {
  display: flex;
  height: 38px;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  color: #597184;
  background: #fff;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
}

.workspace-header i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #43bb87;
}

.workspace-body {
  display: grid;
  min-height: 350px;
  grid-template-columns: 21% 79%;
}

.workspace-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 31px 19px;
  background: var(--ink);
}

.workspace-sidebar i {
  width: 70%;
  height: 6px;
  background: #49677c;
}

.workspace-sidebar i:first-child {
  width: 100%;
  background: var(--blue-bright);
}

.workspace-content {
  padding: 40px 28px;
}

.workspace-welcome {
  display: block;
  width: 43%;
  height: 16px;
  margin-bottom: 30px;
  background: var(--ink);
}

.workspace-stat {
  display: grid;
  margin-bottom: 24px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.workspace-stat i {
  height: 70px;
  border-top: 3px solid var(--blue-deep);
  background: #fff;
}

.workspace-requests {
  padding: 12px;
  background: #fff;
}

.workspace-requests span {
  display: block;
  height: 31px;
  border-bottom: 1px solid #d5dfe4;
}

/* Closing/footer */
.closing-cta {
  padding: 110px 0;
  color: #c7d9e4;
  background: var(--ink);
}

.closing-grid {
  display: grid;
  grid-template-columns: 0.5fr 1.2fr auto;
  gap: 5vw;
  align-items: center;
}

.closing-grid .kicker {
  margin: 0;
  color: var(--blue-bright);
}

.closing-grid h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(43px, 5vw, 74px);
}

.site-footer {
  color: #aabfcd;
  background: var(--ink-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.55fr 0.65fr 1fr;
  gap: 5vw;
  padding: 76px 0 64px;
}

.footer-brand img {
  width: 246px;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 280px;
  margin: 0;
  font-size: 14px;
}

.footer-column,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column > span,
.footer-contact > span {
  margin-bottom: 22px;
  color: #66859a;
}

.footer-column a {
  margin-bottom: 10px;
  color: #d5e0e7;
  font-size: 14px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--blue-bright);
}

.footer-contact > a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--blue-bright);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.footer-contact small {
  margin-top: 17px;
  color: #7893a4;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(151, 194, 219, 0.15);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom a {
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--blue-bright);
}

/* Page heroes */
.page-hero {
  min-height: 590px;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 8vw;
  align-items: end;
  padding: 180px 0 85px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(56px, 6vw, 95px);
}

.page-hero-lede {
  max-width: 490px;
  margin: 0 0 10px;
  color: #c8d9e4;
  font-size: clamp(19px, 1.65vw, 23px);
  line-height: 1.55;
}

/* About */
.story-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 11vw;
  align-items: center;
}

.story-mark {
  position: relative;
  max-width: 430px;
  padding: 50px;
  background: var(--ink);
}

.story-mark::before,
.story-mark::after {
  position: absolute;
  content: "";
}

.story-mark::before {
  top: -14px;
  right: -14px;
  width: 65%;
  height: 65%;
  border-top: 1px solid var(--blue-deep);
  border-right: 1px solid var(--blue-deep);
}

.story-mark::after {
  right: -38px;
  bottom: 58px;
  width: 70px;
  height: 4px;
  background: var(--blue);
}

.story-mark img {
  width: 100%;
}

.story-mark span {
  position: absolute;
  right: 18px;
  bottom: 15px;
  left: 18px;
  color: var(--blue-bright);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-align: center;
}

.story-copy h2 {
  max-width: 730px;
  margin-bottom: 35px;
  font-size: clamp(42px, 5vw, 74px);
}

.story-copy > p:not(.kicker) {
  max-width: 690px;
  color: var(--muted);
}

.story-copy .lead-copy {
  color: var(--text) !important;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principle-grid article {
  min-height: 290px;
  padding: 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.44);
}

.principle-grid article > span {
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.principle-grid h3 {
  margin: 60px 0 16px;
  font-size: 30px;
}

.principle-grid p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10vw;
}

.founder-copy > p {
  max-width: 650px;
  color: #aec2d0;
}

.founder-copy .lead-copy {
  color: #fff;
}

.founder-signoff {
  display: flex;
  margin-top: 60px;
  gap: 40px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: var(--blue-bright);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.founder-signoff span:first-child {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.fit-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10vw;
}

.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 22px 10px 22px 50px;
  border-bottom: 1px solid var(--line);
  font-size: 19px;
}

.check-list li:first-child {
  border-top: 1px solid var(--line);
}

.check-list li::before {
  position: absolute;
  top: 24px;
  left: 11px;
  color: var(--blue-deep);
  content: "↳";
  font-family: var(--mono);
  font-weight: 700;
}

/* Services page */
.services-hero {
  padding-bottom: 0;
}

.services-hero .page-hero-grid {
  min-height: 550px;
  padding-bottom: 55px;
}

.service-jump {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
}

.service-jump a {
  padding: 22px 20px;
  border-right: 1px solid var(--line-dark);
  color: #aac1d0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
}

.service-jump a:first-child {
  border-left: 1px solid var(--line-dark);
}

.service-jump a:hover {
  color: var(--ink);
  background: var(--blue-bright);
}

.service-detail {
  padding: 130px 0;
  background: #fff;
}

.service-detail-dark {
  color: #afc4d2;
  background: var(--ink-deep);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 0.38fr 1.62fr;
  gap: 9vw;
}

.service-stamp {
  display: flex;
  width: 180px;
  height: 180px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.service-detail-dark .service-stamp {
  border-color: var(--line-dark);
}

.service-stamp span {
  color: var(--blue-deep);
  font-family: var(--display);
  font-size: 55px;
  font-weight: 800;
  line-height: 1;
}

.service-detail-dark .service-stamp span {
  color: var(--blue-bright);
}

.service-stamp i {
  width: 28px;
  height: 1px;
  margin: 13px 0 10px;
  background: currentColor;
}

.service-stamp small {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.service-main h2 {
  max-width: 920px;
  margin-bottom: 36px;
  font-size: clamp(45px, 5vw, 78px);
}

.service-detail-dark .service-main h2 {
  color: #fff;
}

.service-main > p:not(.kicker):not(.plan-note) {
  max-width: 760px;
  color: var(--muted);
}

.service-detail-dark .service-main > p:not(.kicker) {
  color: #a9bfcc;
}

.service-main > .lead-copy {
  color: var(--text) !important;
}

.service-detail-dark .service-main > .lead-copy {
  color: #fff !important;
}

.deliverables-grid {
  display: grid;
  margin-top: 60px;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
}

.deliverables-grid h3 {
  margin-bottom: 22px;
  font-size: 24px;
}

.deliverables-grid ul,
.plan-grid ul {
  padding: 0;
  margin: 0;
  color: var(--muted);
  list-style: none;
}

.deliverables-grid li,
.plan-grid li {
  position: relative;
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid rgba(203, 214, 220, 0.75);
  font-size: 14px;
}

.deliverables-grid li::before,
.plan-grid li::before {
  position: absolute;
  left: 1px;
  color: var(--blue-deep);
  content: "+";
}

.capability-list {
  display: grid;
  margin-top: 60px;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
}

.capability-list span {
  padding: 18px 18px 18px 25px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: #d5e1e8;
  font-size: 15px;
}

.capability-list span::before {
  margin-right: 14px;
  color: var(--blue-bright);
  content: "↳";
  font-family: var(--mono);
}

.stack-line {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 31px;
  align-items: center;
  margin-top: 38px;
  color: #7592a5;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.09em;
}

.stack-line small {
  color: var(--blue-bright);
}

.plan-grid {
  display: grid;
  margin-top: 62px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.plan-grid article {
  position: relative;
  padding: 34px 28px;
  border: 1px solid var(--line);
  background: var(--paper-warm);
}

.plan-grid .plan-featured {
  border-top: 4px solid var(--blue-deep);
  background: #fff;
}

.plan-grid h3 {
  margin: 24px 0 13px;
  font-size: 25px;
}

.plan-grid article > p:not(.micro-label) {
  min-height: 78px;
  color: var(--muted);
  font-size: 14px;
}

.plan-grid ul {
  margin-top: 24px;
}

.plan-note {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.engagement-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 10vw;
}

.engagement-list article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.engagement-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.engagement-list > article > span {
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: 12px;
}

.engagement-list h3 {
  margin: -3px 0 9px;
  font-size: 27px;
}

.engagement-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.faq-section {
  background: #fff;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 12px;
  left: 7px;
  width: 11px;
  height: 1px;
  content: "";
  background: var(--blue-deep);
}

.faq-list summary span::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 720px;
  padding: 0 50px 27px 0;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Contact */
.contact-section {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 9vw;
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 130px;
}

.contact-aside ol {
  padding: 0;
  margin: 0 0 50px;
  list-style: none;
}

.contact-aside li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-aside li:first-child {
  border-top: 1px solid var(--line);
}

.contact-aside li span {
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: 11px;
}

.contact-aside li p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
  text-decoration: none;
}

.contact-direct span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}

.contact-direct strong {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--blue-deep);
  color: var(--ink);
  font-size: 16px;
}

.contact-note {
  padding: 23px;
  border-left: 3px solid var(--blue-deep);
  background: var(--paper);
}

.contact-note strong {
  color: var(--ink);
  font-size: 14px;
}

.contact-note p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-wrap {
  padding: clamp(28px, 5vw, 66px);
  border: 1px solid var(--line);
  background: var(--paper-warm);
}

.form-heading {
  margin-bottom: 45px;
}

.form-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(39px, 4vw, 59px);
}

.form-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-heading > p:last-child span {
  color: var(--blue-deep);
}

.project-form,
.auth-card form,
.request-dialog form:not(.dialog-close-form) {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.field-grid {
  display: grid;
  gap: 24px;
}

.field-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.field label,
.field legend,
.service-fieldset legend {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.field label span,
.service-fieldset legend span {
  color: var(--blue-deep);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #b9c7cf;
  border-radius: 0;
  color: var(--ink);
  outline: 0;
  background: #fff;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field select {
  appearance: none;
  padding-right: 40px;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-deep);
  box-shadow: 0 0 0 3px rgba(22, 137, 196, 0.13);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.field small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
}

.service-fieldset {
  min-width: 0;
  padding: 0;
  margin: 2px 0 0;
  border: 0;
}

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

.choice-grid label {
  position: relative;
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-grid span {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 10px 14px 10px 42px;
  border: 1px solid #b9c7cf;
  color: var(--text);
  background: #fff;
  font-size: 13px;
}

.choice-grid span::before {
  position: absolute;
  left: 14px;
  width: 16px;
  height: 16px;
  border: 1px solid #94a8b4;
  content: "";
}

.choice-grid input:checked + span {
  border-color: var(--blue-deep);
  color: var(--ink);
  background: #eaf7fd;
}

.choice-grid input:checked + span::before {
  border-color: var(--blue-deep);
  background: var(--blue-deep);
  box-shadow: inset 0 0 0 3px #fff;
}

.choice-grid input:focus-visible + span {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

.field-meta {
  display: flex;
  min-height: 18px;
  justify-content: space-between;
}

.field-error {
  min-height: 1em;
  color: var(--error) !important;
  font-size: 11px;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
}

.consent-field input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--blue-deep);
}

.consent-field a {
  color: var(--ink);
}

.form-submit {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 4px;
}

.form-submit p {
  max-width: 185px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.form-status,
.portal-message {
  padding: 14px 16px;
  border-left: 3px solid var(--blue-deep);
  color: var(--text);
  background: #eaf5fa;
  font-size: 13px;
}

.form-status.is-error,
.portal-message.is-error {
  border-left-color: var(--error);
  color: #742525;
  background: #fbecec;
}

.form-status.is-success,
.portal-message.is-success {
  border-left-color: var(--success);
  color: #145640;
  background: #e9f6f1;
}

.form-result-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  color: #c9d9e4;
  background: var(--ink);
}

.form-result {
  width: min(590px, 100%);
  padding: clamp(30px, 7vw, 62px);
  border: 1px solid var(--line-dark);
  background: var(--ink-soft);
}

.form-result h1 {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(43px, 8vw, 66px);
}

.form-result > p:not(.kicker) {
  margin-bottom: 30px;
}

/* Legal and 404 */
.legal-hero {
  padding: 190px 0 90px;
}

.legal-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(58px, 7vw, 100px);
}

.legal-content {
  padding: 100px 0 130px;
  background: #fff;
}

.legal-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 9vw;
  justify-content: center;
}

.legal-grid aside {
  position: sticky;
  top: 130px;
  display: flex;
  align-self: start;
  flex-direction: column;
  padding-top: 8px;
}

.legal-grid aside > span {
  margin-bottom: 17px;
  color: var(--blue-deep);
}

.legal-grid aside a {
  padding: 8px 0;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.legal-grid aside a:hover {
  color: var(--ink);
}

.legal-grid article h2 {
  margin: 55px 0 18px;
  font-size: 31px;
  scroll-margin-top: 130px;
}

.legal-grid article h2:first-of-type {
  margin-top: 45px;
}

.legal-grid article p {
  color: var(--muted);
}

.legal-grid article a {
  color: var(--blue-deep);
}

.legal-intro {
  color: var(--text) !important;
  font-size: 24px;
  line-height: 1.5;
}

.not-found {
  min-height: 100vh;
  padding-top: var(--header-height);
}

.not-found-grid {
  display: grid;
  min-height: calc(100vh - var(--header-height));
  grid-template-columns: 1fr 0.8fr;
  gap: 8vw;
  align-items: center;
  padding: 90px 0;
}

.not-found h1 {
  font-size: clamp(58px, 7vw, 100px);
}

.not-found p:not(.eyebrow) {
  margin-bottom: 32px;
  color: #b0c4d1;
}

.error-map {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  border: 1px solid var(--line-dark);
  overflow: hidden;
  background-image: radial-gradient(circle, rgba(139, 216, 255, 0.24) 1px, transparent 1px);
  background-size: 18px 18px;
}

.error-map b {
  color: rgba(139, 216, 255, 0.13);
  font-family: var(--display);
  font-size: 190px;
  letter-spacing: -0.08em;
}

.error-map i {
  position: absolute;
  right: 25px;
  bottom: 22px;
  color: var(--blue-bright);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.1em;
}

.error-line {
  position: absolute;
  display: block;
  height: 1px;
  background: var(--blue);
  transform-origin: left;
}

.line-one {
  top: 22%;
  left: 0;
  width: 75%;
  transform: rotate(19deg);
}

.line-two {
  top: 50%;
  left: 28%;
  width: 90%;
  transform: rotate(-35deg);
}

.line-three {
  bottom: 18%;
  left: 8%;
  width: 44%;
  transform: rotate(-8deg);
}

/* Client portal auth */
.portal-page {
  background: var(--paper);
}

.portal-page #main-content,
.portal-shell {
  min-height: 100vh;
}

.portal-loading {
  display: grid;
  min-height: 100vh;
  place-content: center;
  justify-items: center;
  color: var(--muted);
  background: var(--paper);
}

.portal-loading img {
  margin-bottom: 18px;
}

.portal-loading p {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.portal-auth {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(440px, 0.92fr) minmax(520px, 1.08fr);
}

.portal-auth-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 45px clamp(40px, 6vw, 100px) 50px;
  overflow: hidden;
  color: #bdd0dc;
  background: var(--ink);
}

.portal-auth-brand::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  opacity: 0.45;
  background-image: linear-gradient(rgba(92, 155, 192, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(92, 155, 192, 0.09) 1px, transparent 1px);
  background-size: 65px 65px;
  mask-image: linear-gradient(135deg, transparent, #000);
}

.portal-auth-brand > * {
  position: relative;
  z-index: 1;
}

.portal-back {
  align-self: flex-start;
  color: #a9bfcc;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.portal-auth-brand h1 {
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(56px, 6vw, 90px);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.portal-auth-brand h1 em {
  color: var(--blue-bright);
  font-family: var(--serif);
  font-weight: 400;
}

.portal-auth-brand > div > p:last-child {
  max-width: 520px;
  font-size: 18px;
}

.auth-feature-list {
  display: flex;
  gap: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
}

.auth-feature-list span {
  display: flex;
  gap: 9px;
  align-items: center;
}

.auth-feature-list i {
  color: var(--blue-bright);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
}

.portal-auth-panel {
  display: grid;
  place-items: center;
  padding: 60px;
  background: var(--paper);
}

.auth-card {
  width: min(430px, 100%);
  padding: 48px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 24px 60px rgba(21, 48, 65, 0.08);
}

.auth-card > img {
  width: 225px;
  margin-bottom: 54px;
}

.auth-card > img[src*="mark"] {
  width: 54px;
}

.auth-card h2 {
  margin-bottom: 12px;
  font-size: 39px;
}

.auth-card > p:not(.micro-label):not(.auth-help) {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 14px;
}

.auth-card form {
  gap: 21px;
}

.label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.label-row label {
  margin: 0;
}

.inline-action {
  padding: 0;
  border: 0;
  color: var(--blue-deep);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  text-decoration: underline;
}

.auth-return {
  margin-top: 25px;
}

.auth-help {
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.auth-help a {
  color: var(--blue-deep);
}

/* Dashboard */
.portal-dashboard {
  min-height: 100vh;
  padding-left: 260px;
  background: var(--paper);
}

.dashboard-sidebar {
  position: fixed;
  z-index: 20;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: 260px;
  flex-direction: column;
  padding: 30px 22px;
  color: #afc4d1;
  background: var(--ink);
}

.dashboard-logo {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 65px;
  color: #fff;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 0.94;
  text-decoration: none;
}

.dashboard-logo img {
  width: 46px;
}

.dashboard-logo small {
  color: var(--blue-bright);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.11em;
}

.dashboard-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dashboard-nav {
  display: flex;
  min-height: 47px;
  gap: 13px;
  align-items: center;
  padding: 10px 13px;
  border: 0;
  color: #9eb5c4;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.dashboard-nav span {
  width: 20px;
  color: var(--blue-bright);
  font-size: 17px;
  font-weight: 400;
  text-align: center;
}

.dashboard-nav:hover,
.dashboard-nav.is-active {
  color: #fff;
  background: rgba(139, 216, 255, 0.11);
}

.dashboard-side-bottom {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

.dashboard-side-bottom a,
.dashboard-side-bottom button {
  padding: 8px 3px;
  border: 0;
  color: #93acbc;
  background: transparent;
  font-size: 11px;
  text-align: left;
  text-decoration: none;
}

.dashboard-side-bottom a:hover,
.dashboard-side-bottom button:hover {
  color: var(--blue-bright);
}

.dashboard-main {
  min-height: 100vh;
}

.dashboard-header {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 0 clamp(28px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.dashboard-header > div {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.dashboard-header .micro-label {
  margin: 0;
  font-size: 8px;
}

.dashboard-header strong {
  color: var(--ink);
  font-size: 12px;
}

.account-avatar {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--blue-bright);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.dashboard-menu {
  display: none;
}

.dashboard-message {
  max-width: 1200px;
  margin: 22px auto -10px;
}

.dashboard-panel {
  max-width: 1340px;
  padding: 66px clamp(28px, 5vw, 70px) 90px;
  margin: 0 auto;
}

.dashboard-welcome,
.panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.dashboard-welcome h1,
.panel-heading h1 {
  margin-bottom: 12px;
  font-size: clamp(42px, 4vw, 60px);
}

.dashboard-welcome > div > p:last-child,
.panel-heading > div > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.dashboard-stats {
  display: grid;
  margin-bottom: 24px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.dashboard-stats article {
  position: relative;
  display: flex;
  min-height: 155px;
  flex-direction: column;
  padding: 25px 27px;
  border: 1px solid var(--line);
  background: #fff;
}

.dashboard-stats article::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 3px;
  content: "";
  background: var(--blue-deep);
}

.dashboard-stats article > span,
.request-filter span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.dashboard-stats strong {
  margin: auto 0 1px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 41px;
  line-height: 1;
}

.dashboard-stats .stat-plan {
  font-size: 24px;
}

.dashboard-stats small {
  color: var(--muted);
  font-size: 10px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.dashboard-card {
  padding: 29px;
  border: 1px solid var(--line);
  background: #fff;
}

.card-heading,
.request-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 23px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.card-heading .micro-label {
  margin-bottom: 5px;
  font-size: 8px;
}

.card-heading h2 {
  margin: 0;
  font-size: 25px;
}

.card-heading button {
  padding: 0;
  border: 0;
  color: var(--blue-deep);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
}

.site-list,
.request-list {
  display: flex;
  flex-direction: column;
}

.site-item {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e1e7ea;
}

.site-item:last-child {
  border-bottom: 0;
}

.site-item-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue-deep);
  background: #eaf5fa;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}

.site-item strong,
.request-item strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-item small,
.request-item small {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-item a {
  color: var(--blue-deep);
  font-size: 17px;
  text-decoration: none;
}

.request-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid #e1e7ea;
}

.request-item:last-child {
  border-bottom: 0;
}

.request-date {
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}

.request-list-full .request-item {
  grid-template-columns: 1fr auto auto;
  min-height: 72px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  color: #4c6473;
  background: #eaf0f3;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-badge[data-status="in_progress"] {
  color: #0b618b;
  background: #e1f3fc;
}

.status-badge[data-status="completed"] {
  color: #176f54;
  background: #e5f5ef;
}

.status-badge[data-status="needs_input"] {
  color: #8a5d0d;
  background: #fff3d9;
}

.empty-state {
  padding: 28px 10px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.request-filter {
  margin-bottom: 0;
}

.request-filter strong {
  color: var(--ink);
  font-size: 16px;
}

.current-plan-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 36px;
  margin-bottom: 46px;
  border-top: 4px solid var(--blue-deep);
  color: #b9ccd8;
  background: var(--ink);
}

.current-plan-card h2 {
  margin: 5px 0 12px;
  color: #fff;
  font-size: 34px;
}

.current-plan-card p:not(.micro-label) {
  max-width: 570px;
  margin: 0;
  font-size: 13px;
}

.current-plan-card > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.current-plan-card > div:last-child strong {
  color: #fff;
  font-size: 30px;
}

.current-plan-card > div:last-child span {
  color: var(--blue-bright);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.plan-options-label {
  margin-bottom: 17px;
}

.portal-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.portal-plan {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  background: #fff;
}

.portal-plan h3 {
  margin: 14px 0 6px;
  font-size: 24px;
}

.portal-plan-price {
  color: var(--ink);
  font-size: 27px;
  font-weight: 800;
}

.portal-plan-price small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.portal-plan p {
  color: var(--muted);
  font-size: 12px;
}

.portal-plan ul {
  padding: 0;
  margin: 8px 0 24px;
  list-style: none;
}

.portal-plan li {
  padding: 5px 0;
  color: var(--muted);
  font-size: 11px;
}

.portal-plan li::before {
  margin-right: 7px;
  color: var(--blue-deep);
  content: "+";
}

.portal-plan .button {
  min-height: 43px;
  margin-top: auto;
  font-size: 11px;
}

.billing-security {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 18px 22px;
  border-left: 3px solid var(--blue-deep);
  background: #e6edf1;
}

.billing-security span {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

.billing-security p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

/* Request dialog */
.request-dialog {
  width: min(650px, calc(100vw - 40px));
  max-height: calc(100dvh - 40px);
  padding: 46px;
  border: 0;
  color: var(--text);
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 10, 20, 0.32);
}

.request-dialog::backdrop {
  background: rgba(3, 16, 26, 0.76);
  backdrop-filter: blur(3px);
}

.dialog-close-form {
  position: absolute;
  top: 14px;
  right: 14px;
}

.dialog-close-form button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  font-size: 23px;
}

.dialog-heading {
  margin-bottom: 31px;
}

.dialog-heading h2 {
  margin-bottom: 11px;
  font-size: 37px;
}

.dialog-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 64px, 1100px);
  }

  .header-inner {
    grid-template-columns: 210px 1fr auto;
  }

  .brand {
    width: 210px;
  }

  .desktop-nav {
    gap: 24px;
    justify-content: center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.8fr);
    gap: 5vw;
  }

  .hero-copy h1 {
    font-size: clamp(56px, 6.7vw, 80px);
  }

  .board-canvas {
    min-height: 370px;
  }

  .work-grid {
    grid-template-columns: 1fr 0.72fr;
  }

  .visual-marketing {
    padding-inline: 27px;
  }

  .work-meta {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .work-meta .circle-link {
    display: none;
  }

  .portal-auth {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .portal-auth-panel {
    padding: 35px;
  }

  .portal-auth-brand {
    padding-inline: 45px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 78px;
    --shell: min(100% - 46px, 820px);
  }

  .section {
    padding: 95px 0;
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .brand {
    width: 202px;
  }

  .desktop-nav,
  .header-portal {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 48px;
    height: 48px;
    flex-direction: column;
    gap: 7px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    background: transparent;
  }

  .menu-toggle i {
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] i:first-of-type {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i:last-of-type {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 40px max(23px, calc((100vw - min(100% - 46px, 820px)) / 2));
    background: var(--ink);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav > a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line-dark);
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-nav > a[aria-current="page"] {
    color: var(--blue-bright);
  }

  .mobile-nav .mobile-portal {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    color: var(--blue-bright);
    font-size: 17px;
  }

  .hero-home {
    min-height: 0;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 68px;
    padding: 140px 0 90px;
  }

  .hero-copy h1 {
    max-width: 720px;
    font-size: clamp(59px, 10vw, 86px);
  }

  .build-board {
    width: min(620px, 100%);
    justify-self: end;
  }

  .proof-grid > div {
    padding-inline: 18px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .service-row {
    grid-template-columns: 48px minmax(210px, 0.8fr) 1fr 45px;
    gap: 18px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .work-visual,
  .work-card:not(.work-card-wide) .work-visual {
    min-height: 500px;
  }

  .work-meta-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .work-meta-stack .text-link {
    margin-top: 0;
    justify-self: start;
  }

  .process-layout,
  .portal-callout-grid,
  .story-grid,
  .founder-grid,
  .fit-grid,
  .service-detail-grid,
  .engagement-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .process-intro,
  .contact-aside {
    position: static;
  }

  .portal-callout-grid {
    gap: 65px;
  }

  .closing-grid {
    grid-template-columns: 1fr auto;
  }

  .closing-grid .kicker {
    grid-column: 1 / -1;
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    padding-top: 34px;
    border-top: 1px solid var(--line-dark);
  }

  .page-hero-grid {
    min-height: 570px;
    grid-template-columns: 1fr;
    gap: 40px;
    align-content: end;
  }

  .page-hero-lede {
    max-width: 650px;
  }

  .story-mark {
    width: min(430px, 85%);
    justify-self: center;
  }

  .service-stamp {
    width: 125px;
    height: 125px;
  }

  .service-stamp span {
    font-size: 40px;
  }

  .plan-grid,
  .portal-plan-grid {
    grid-template-columns: 1fr;
  }

  .plan-grid article > p:not(.micro-label) {
    min-height: 0;
  }

  .legal-grid {
    grid-template-columns: 180px 1fr;
    gap: 6vw;
  }

  .portal-auth {
    grid-template-columns: 1fr;
  }

  .portal-auth-brand {
    min-height: 520px;
    padding: 35px 8vw 45px;
  }

  .portal-auth-brand h1 {
    font-size: clamp(55px, 10vw, 85px);
  }

  .portal-auth-panel {
    min-height: 620px;
    padding: 65px 25px;
  }

  .portal-dashboard {
    padding-left: 0;
  }

  .dashboard-sidebar {
    width: 260px;
    transform: translateX(-100%);
    transition: transform 200ms ease;
  }

  .portal-dashboard.menu-visible .dashboard-sidebar {
    transform: none;
    box-shadow: 20px 0 60px rgba(0, 10, 20, 0.2);
  }

  .dashboard-header {
    justify-content: space-between;
  }

  .dashboard-menu {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: #fff;
  }

  .dashboard-menu span {
    width: 18px;
    height: 1px;
    background: var(--ink);
  }

  .dashboard-header > div {
    margin-left: auto;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 36px);
  }

  body {
    font-size: 16px;
  }

  .section {
    padding: 76px 0;
  }

  .brand {
    width: 180px;
  }

  .eyebrow {
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 35px;
  }

  .eyebrow span:first-child::after {
    display: none;
  }

  .eyebrow span {
    width: 100%;
  }

  .hero-grid {
    gap: 55px;
    padding-top: 122px;
  }

  .hero-copy h1,
  .page-hero h1,
  .not-found h1 {
    font-size: clamp(50px, 16vw, 69px);
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .board-canvas {
    min-height: 300px;
  }

  .browser-block {
    top: 70px;
    width: 79%;
  }

  .browser-page {
    min-height: 180px;
  }

  .board-note-two,
  .board-footer span:nth-child(2),
  .board-footer span:nth-child(3) {
    display: none;
  }

  .board-note-three {
    bottom: 18px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }

  .proof-grid > div,
  .proof-grid > div:first-child,
  .proof-grid > div:last-child {
    min-height: 68px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .proof-grid > div:last-child {
    border-bottom: 0;
  }

  .split-heading h2,
  .process-intro h2,
  .portal-callout h2,
  .fit-grid h2,
  .engagement-grid h2,
  .faq-grid h2,
  .founder-grid h2,
  .service-main h2,
  .story-copy h2 {
    font-size: clamp(39px, 12vw, 55px);
  }

  .service-row {
    min-height: 130px;
    grid-template-columns: 35px 1fr 40px;
    gap: 11px;
    padding: 22px 0;
  }

  .service-row:hover {
    padding-inline: 8px;
  }

  .service-description {
    grid-column: 2 / -1;
    grid-row: 2;
  }

  .service-arrow {
    width: 38px;
    height: 38px;
  }

  .work-visual,
  .work-card:not(.work-card-wide) .work-visual {
    min-height: 355px;
  }

  .visual-marketing,
  .visual-portal {
    padding: 50px 15px 0;
  }

  .site-preview,
  .portal-preview {
    height: 320px;
  }

  .preview-hero {
    height: 175px;
  }

  .preview-hero strong {
    font-size: 26px;
  }

  .work-meta-stack {
    display: flex;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 13px;
  }

  .workspace-body {
    min-height: 260px;
    grid-template-columns: 25% 75%;
  }

  .workspace-content {
    padding: 25px 15px;
  }

  .closing-cta {
    padding: 80px 0;
  }

  .closing-grid {
    grid-template-columns: 1fr;
  }

  .closing-grid h2 {
    font-size: clamp(39px, 12vw, 55px);
  }

  .closing-grid .button {
    justify-self: start;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 45px 24px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 25px 0;
  }

  .page-hero,
  .page-hero-grid {
    min-height: 570px;
  }

  .page-hero-grid {
    padding: 145px 0 72px;
  }

  .principle-grid,
  .deliverables-grid,
  .capability-list {
    grid-template-columns: 1fr;
  }

  .principle-grid article {
    min-height: 250px;
    padding: 30px;
  }

  .principle-grid h3 {
    margin-top: 45px;
  }

  .founder-signoff {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .service-jump {
    grid-template-columns: 1fr;
  }

  .service-jump a,
  .service-jump a:first-child {
    padding: 15px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
  }

  .service-detail {
    padding: 80px 0;
  }

  .service-detail-grid {
    gap: 40px;
  }

  .service-stamp {
    width: 105px;
    height: 105px;
  }

  .plan-grid article {
    padding: 28px 23px;
  }

  .engagement-list article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .contact-grid {
    gap: 52px;
  }

  .form-wrap {
    width: calc(100% + 20px);
    margin-left: -10px;
  }

  .field-grid-two,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .form-submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-hero {
    padding: 150px 0 70px;
  }

  .legal-content {
    padding: 70px 0 90px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-grid aside {
    display: none;
  }

  .not-found-grid {
    grid-template-columns: 1fr;
  }

  .error-map {
    min-height: 280px;
  }

  .error-map b {
    font-size: 130px;
  }

  .portal-auth-brand {
    min-height: 600px;
    padding: 28px 24px 35px;
  }

  .auth-feature-list {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .portal-auth-panel {
    min-height: 570px;
    padding: 45px 18px;
  }

  .auth-card {
    padding: 34px 25px;
  }

  .auth-card > img {
    margin-bottom: 42px;
  }

  .dashboard-header {
    padding: 0 17px;
  }

  .dashboard-panel {
    padding: 45px 17px 70px;
  }

  .dashboard-welcome,
  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .dashboard-stats article {
    min-height: 125px;
  }

  .request-list-full .request-item {
    grid-template-columns: 1fr auto;
  }

  .request-list-full .request-item time {
    display: none;
  }

  .current-plan-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 23px;
  }

  .current-plan-card > div:last-child {
    align-items: flex-start;
    text-align: left;
  }

  .billing-security {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .request-dialog {
    width: 100vw;
    max-width: none;
    height: 100dvh;
    max-height: none;
    padding: 52px 22px 30px;
    margin: 0;
  }
}

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

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

  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
