:root {
  --royal: #1457ff;
  --royal-dark: #0d3fc4;
  --royal-soft: #eaf0ff;
  --ink: #090d18;
  --ink-2: #111827;
  --muted: #667085;
  --line: #dde3ec;
  --wash: #f5f7fb;
  --white: #fff;
  --shadow-sm: 0 8px 30px rgba(12, 28, 64, 0.08);
  --shadow-lg: 0 24px 70px rgba(12, 28, 64, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
}

html {
  scroll-behavior: smooth;
}

body.home,
body.site-page {
  background: var(--white);
  color: var(--ink);
  font-family: "Almarai", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.site-page {
  min-height: 100vh;
  overflow-x: hidden;
}

body.site-page *,
body.site-page *::before,
body.site-page *::after {
  box-sizing: border-box;
}

body.site-page h1,
body.site-page h2,
body.site-page h3,
body.site-page p,
body.site-page ul,
body.site-page figure {
  margin: 0;
}

body.site-page a {
  color: inherit;
}

img,
video {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

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

.page-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2px;
  max-width: calc(100vw - 32px);
  padding: 8px 16px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(9, 13, 24, 0.92);
  box-shadow: 0 8px 28px rgba(5, 8, 15, 0.2);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
  scrollbar-width: none;
  white-space: nowrap;
}

.page-nav::-webkit-scrollbar {
  display: none;
}

.page-nav a {
  padding: 4px 8px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.page-nav a:hover,
.page-nav a:focus-visible,
.page-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: none;
}

.page-nav .logo {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-nav .logo span {
  color: #3b9eff;
}

.page-nav .dot {
  width: 3px;
  height: 3px;
  margin: 0 1px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.wrap--narrow {
  width: min(800px, calc(100% - 40px));
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 64px 0;
}

.section--wash {
  border-block: 1px solid #e8ecf3;
  background: var(--wash);
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--royal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.eyebrow--light {
  color: #8db0ff;
}

.display,
.section-title,
.card-title,
.page-hero h1 {
  letter-spacing: -0.045em;
}

.display {
  max-width: 860px;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 800;
  line-height: 0.98;
}

.section-title {
  max-width: 780px;
  font-size: clamp(32px, 4.6vw, 58px);
  font-weight: 800;
  line-height: 1.02;
}

.section-title span,
.display span,
.page-hero h1 span {
  color: var(--royal);
}

.section-copy,
.lede {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.lede {
  max-width: 690px;
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--royal);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.button:hover,
.button:focus-visible {
  background: var(--royal-dark);
  box-shadow: 0 10px 26px rgba(20, 87, 255, 0.24);
  outline: none;
  transform: translateY(-2px);
}

.button--ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: #b8c3d5;
  background: var(--wash);
  box-shadow: none;
}

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

.button--light:hover,
.button--light:focus-visible {
  background: #e8efff;
}

/* Locked homepage hero begins above this surface. */
.home-main {
  position: relative;
  z-index: 3;
  background: var(--white);
  color: var(--ink);
}

.home-intro {
  padding: 76px 0 58px;
}

.founder-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.5fr;
  gap: 56px;
  align-items: center;
  padding: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0 0, rgba(20, 87, 255, 0.17), transparent 34%),
    var(--white);
  box-shadow: var(--shadow-sm);
}

.founder-kicker {
  display: flex;
  min-height: 200px;
  align-items: flex-end;
  padding: 26px;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--white);
}

.founder-kicker strong {
  max-width: 240px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.founder-panel h2 {
  max-width: 700px;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.founder-panel p {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.project-grid,
.service-grid,
.system-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 5px 18px rgba(13, 25, 48, 0.04);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.project-card:hover,
.project-card:focus-within {
  border-color: #bdc9dc;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.project-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8ecf3;
}

.project-media > img,
.project-media > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.project-card:hover .project-media > img,
.project-card:hover .project-media > video {
  transform: scale(1.025);
}

.project-media--contain > img {
  object-fit: contain;
  background: #0a0e19;
}

.project-media--collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  padding: 3px;
  background: var(--ink);
}

.project-media--collage img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
}

.project-chip,
.status-chip {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.project-card__body {
  display: flex;
  min-height: 162px;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.project-card h3 {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.project-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding-top: 15px;
  color: var(--royal);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.service-card,
.system-card,
.contact-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.service-card__num,
.system-card__num {
  color: var(--royal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-card h3,
.system-card h3,
.contact-card h3 {
  margin-top: 24px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.service-card p,
.system-card p,
.contact-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.service-card a,
.system-card a,
.contact-card a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--royal);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}

.trust-item {
  padding: 28px 22px;
  background: var(--white);
}

.trust-item strong {
  display: block;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.trust-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 42px 46px;
  border-radius: var(--radius-lg);
  background: var(--royal);
  color: var(--white);
}

.cta-band h2 {
  max-width: 720px;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.cta-band p {
  max-width: 650px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.page-hero {
  position: relative;
  padding: 150px 0 84px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 16%, rgba(20, 87, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f3f6ff 68%, #e9efff 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -190px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(20, 87, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(20, 87, 255, 0.04), 0 0 0 90px rgba(20, 87, 255, 0.025);
  pointer-events: none;
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 850px;
  color: var(--ink);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 800;
  line-height: 0.96;
}

.page-hero .lede {
  margin-top: 22px;
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.status-chip {
  padding: 7px 10px;
  background: var(--white);
  color: var(--royal);
  box-shadow: 0 4px 16px rgba(20, 87, 255, 0.09);
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.split--center {
  align-items: center;
}

.sticky-copy {
  position: sticky;
  top: 96px;
}

.feature-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 18px 18px 18px 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink-2);
  font-size: 14px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--royal);
  font-weight: 900;
}

.feature-list strong {
  display: block;
  margin-bottom: 3px;
}

.feature-list span {
  color: var(--muted);
}

.showcase {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.showcase img,
.showcase video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--ink);
}

.showcase__caption {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}

.showcase__caption strong {
  font-size: 15px;
}

.showcase__caption span {
  color: var(--muted);
  font-size: 12px;
}

.case-list {
  display: grid;
  gap: 20px;
}

.case-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.case-row:nth-child(even) .case-row__media {
  order: 2;
}

.case-row__media {
  min-height: 300px;
  background: var(--ink);
}

.case-row__media img,
.case-row__media video {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.case-row__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.case-row__body h2,
.case-row__body h3 {
  font-size: clamp(27px, 3.5vw, 44px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.case-row__body p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 17px;
}

.tag {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--royal-soft);
  color: var(--royal-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portrait-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.portrait-grid button,
.media-button {
  appearance: none;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-sm);
  background: #e7eaf0;
  cursor: zoom-in;
}

.portrait-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.35s;
}

.portrait-grid button:hover img,
.media-button:hover img {
  transform: scale(1.025);
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.media-button {
  position: relative;
  aspect-ratio: 4 / 3;
}

.media-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.media-button::after {
  content: "+";
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.filter-button {
  appearance: none;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  border-color: var(--royal);
  background: var(--royal);
  color: var(--white);
  outline: none;
}

.project-card[hidden] {
  display: none;
}

.about-photo {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}

.about-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.quote-panel {
  padding: 40px;
  border-left: 5px solid var(--royal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--wash);
}

.quote-panel p {
  font-size: clamp(24px, 3.7vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

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

.contact-card {
  min-height: 210px;
}

.contact-card__label {
  color: var(--royal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-layout {
  padding: 72px 0 94px;
}

.legal-layout .notice {
  margin-bottom: 38px;
  padding: 20px 22px;
  border: 1px solid #cbd7f0;
  border-radius: var(--radius-sm);
  background: var(--royal-soft);
  color: #1c3264;
}

.legal-layout h2 {
  margin-top: 38px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.legal-layout h3 {
  margin-top: 20px;
  font-size: 17px;
}

.legal-layout p,
.legal-layout li {
  color: #475467;
  font-size: 15px;
  line-height: 1.78;
}

.legal-layout p {
  margin-top: 12px;
}

.legal-layout ul {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-left: 22px;
}

.legal-layout a {
  color: var(--royal);
}

.legal-contact,
.deletion-step {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.deletion-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
}

.deletion-step__num {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--royal);
  color: var(--white);
  font-weight: 800;
}

.site-footer {
  padding: 58px 0 28px;
  background: var(--ink);
  color: var(--white);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 40px;
}

.site-footer__brand {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.site-footer__brand span {
  color: #3b9eff;
}

.site-footer p {
  max-width: 430px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.site-footer h3 {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer nav,
.site-footer__links {
  display: grid;
  position: static;
  max-width: none;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  transform: none;
  backdrop-filter: none;
}

.site-footer a {
  width: fit-content;
  padding: 3px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
  outline: none;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.media-modal {
  width: min(1040px, calc(100vw - 32px));
  max-width: none;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.media-modal::backdrop {
  background: rgba(3, 6, 13, 0.82);
  backdrop-filter: blur(8px);
}

.media-modal__stage {
  display: grid;
  min-height: min(70vh, 720px);
  place-items: center;
  background: #050811;
}

.media-modal__stage img,
.media-modal__stage video {
  display: block;
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
}

.media-modal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
}

.media-modal__caption {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.media-modal__close {
  appearance: none;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 21px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .section-head,
  .split,
  .founder-panel,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .service-grid,
  .system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-row {
    grid-template-columns: 1fr;
  }

  .case-row:nth-child(even) .case-row__media {
    order: 0;
  }

  .sticky-copy {
    position: static;
  }

  .portrait-grid,
  .media-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wrap,
  .wrap--narrow {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 64px 0;
  }

  .section--tight {
    padding: 48px 0;
  }

  .page-nav {
    width: calc(100vw - 20px);
    max-width: none;
    padding: 7px 10px;
  }

  .page-nav a {
    padding: 4px 6px;
    font-size: 10.5px;
  }

  .page-nav .logo {
    font-size: 11.5px;
  }

  .page-nav .dot {
    display: none;
  }

  .home nav {
    width: calc(100vw - 20px);
    max-width: none;
    padding: 7px 10px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .home nav::-webkit-scrollbar {
    display: none;
  }

  .home nav a {
    padding: 4px 6px;
    font-size: 10.5px;
  }

  .home nav .logo {
    font-size: 11.5px;
  }

  .home nav .dot {
    display: none;
  }

  .page-hero {
    padding: 126px 0 64px;
  }

  .founder-panel {
    gap: 26px;
    padding: 18px;
    border-radius: var(--radius-md);
  }

  .founder-kicker {
    min-height: 150px;
    padding: 20px;
  }

  .project-grid,
  .service-grid,
  .system-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .project-card__body {
    min-height: 148px;
  }

  .cta-band {
    padding: 30px 24px;
    border-radius: var(--radius-md);
  }

  .case-row__media,
  .case-row__media img,
  .case-row__media video {
    min-height: 220px;
  }

  .case-row__body {
    padding: 26px 22px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .showcase__caption,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-panel {
    padding: 28px 24px;
  }

  .legal-layout {
    padding: 54px 0 72px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
