:root {
  --ink: #080808;
  --muted: #858585;
  --line: #dfdfdf;
  --paper: #f8f8f7;
  --rail: max(44px, calc((100vw - 1110px) / 2));
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--paper);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
main {
  position: relative;
  overflow: clip;
}

.section-shell {
  width: min(100% - (var(--rail) * 2), 1110px);
  margin-inline: auto;
}
.cursor-dot {
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #111;
  box-shadow: -18px -20px 26px rgba(0, 90, 255, 0.25);
  pointer-events: none;
  transition:
    width 0.2s ease,
    height 0.2s ease,
    opacity 0.2s ease;
}

.floating-nav {
  position: fixed;
  z-index: 100;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, calc(100% - 32px));
  min-height: 58px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(250, 250, 249, 0.83);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 white;
  backdrop-filter: blur(20px);
  transition:
    width 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s ease;
}
.floating-nav .brand {
  display: flex;
  align-items: center;
  min-width: 195px;
  gap: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.brand-mark,
.button-avatar,
.callout-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  color: white;
  background:
    radial-gradient(circle at 70% 20%, #ffb160 0 15%, transparent 16%),
    linear-gradient(135deg, #053c40, #146f73 52%, #e8612b);
  font-weight: 800;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.16);
}
.floating-nav nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}
.floating-nav nav a {
  transition: opacity 0.2s ease;
}
.floating-nav nav a:hover {
  opacity: 0.5;
}
.floating-nav .nav-contact {
  padding: 13px 20px;
  margin-left: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 7px 13px rgba(0, 0, 0, 0.06);
}
.nav-dots {
  display: none;
  margin-left: auto;
  font-size: 18px;
  color: #767676;
  letter-spacing: 2px;
}
.floating-nav.is-compact {
  width: 230px;
}
.floating-nav.is-compact .brand {
  min-width: 0;
}
.floating-nav.is-compact .brand span:last-child {
  max-width: 128px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.floating-nav.is-compact nav {
  width: 0;
  opacity: 0;
  overflow: hidden;
  gap: 0;
  pointer-events: none;
}
.floating-nav.is-compact .nav-dots {
  display: block;
}

.contact-dock {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px 8px 20px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  background: rgba(250, 250, 249, 0.84);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.09);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.contact-dock.is-hidden {
  opacity: 0;
  transform: translate(-50%, 35px);
  pointer-events: none;
}
.contact-dock > span {
  display: flex;
  flex-direction: column;
  min-width: 124px;
  line-height: 1.1;
}
.contact-dock small {
  color: #777;
  font-size: 11px;
  margin-top: 3px;
}
.contact-dock a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.09);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.contact-dock a:first-of-type {
  background: #050505;
  color: #fff;
}
.contact-dock a:hover {
  transform: translateY(-3px) scale(1.03);
}

.hero {
  min-height: 605px;
  padding-top: 145px;
  display: grid;
  grid-template-columns: 0.95fr 1.08fr;
  align-items: center;
  gap: 42px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}
.availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.07);
  font-size: 12px;
  font-weight: 700;
  animation: rise 0.75s 0.05s both;
}
.availability i {
  width: 9px;
  height: 9px;
  background: #36d889;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(54, 216, 137, 0.1);
}
.hero h1,
h2 {
  margin: 0;
  letter-spacing: -0.055em;
  font-weight: 500;
}
.hero h1 {
  font-size: clamp(58px, 5.3vw, 78px);
  line-height: 0.95;
  margin-top: 29px;
  max-width: 560px;
  animation: rise 0.85s 0.12s both;
}
h1 span,
h2 span {
  color: #898989;
}
.hero-copy > p {
  max-width: 480px;
  margin: 28px 0 28px;
  color: #696969;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.025em;
  animation: rise 0.85s 0.2s both;
}
.hero-copy > p b {
  color: #111;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 8px 17px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.button:hover {
  transform: translateY(-3px);
}
.button-dark {
  color: white;
  background: #050505;
  border-color: #050505;
  box-shadow: 0 13px 22px rgba(0, 0, 0, 0.22);
}
.button-dark:hover {
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
}
.button-avatar {
  width: 31px;
  height: 31px;
  margin-left: -9px;
  font-size: 12px;
}
.hero .button {
  animation: rise 0.85s 0.26s both;
}

.hero-art {
  position: relative;
  height: 430px;
  perspective: 1200px;
  animation: artIn 1.05s 0.2s both;
}
.screen {
  position: absolute;
  overflow: hidden;
  border-radius: 13px;
  background: #111;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}
.screen-back {
  width: 63%;
  height: auto;
  top: 22%;
  filter: saturate(0.9) contrast(1.04);
}
.screen-back-a {
  aspect-ratio: 8 / 5;
  left: 3%;
  transform: rotate(-8deg) translateY(15px);
}
.screen-back-b {
  aspect-ratio: 16 / 9;
  right: 0;
  transform: rotate(7deg) translateY(7px);
}
.screen-front {
  width: 84%;
  height: auto;
  aspect-ratio: 16 / 9;
  left: 8%;
  top: 14%;
  transform: rotate(6deg);
  background: #fff;
}
.screen-front span {
  position: absolute;
  right: 14px;
  bottom: 11px;
  color: white;
  font-size: 11px;
  font-weight: 800;
  text-shadow: 0 1px 7px rgba(0, 0, 0, 0.8);
}
.hero-art:hover .screen-back-a {
  transform: rotate(-11deg) translate(-18px, 10px);
}
.hero-art:hover .screen-back-b {
  transform: rotate(10deg) translate(18px, 0);
}
.hero-art:hover .screen-front {
  transform: rotate(2deg) translateY(-8px);
}
.screen {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-strip {
  min-height: 106px;
  border-block: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding-left: var(--rail);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}
.client-stack {
  display: flex;
  align-items: center;
  min-width: 220px;
  padding-right: 28px;
}
.client-stack > span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  margin-right: -9px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: linear-gradient(135deg, #204c4f, #e1642e);
  color: white;
  font-size: 10px;
  font-weight: 800;
}
.client-stack > span:nth-child(2n) {
  background: linear-gradient(135deg, #642e18, #f0b05c);
}
.client-stack > span:nth-child(3n) {
  background: linear-gradient(135deg, #322c61, #8aa4ee);
}
.client-stack b {
  display: flex;
  flex-direction: column;
  margin-left: 17px;
  font-size: 12px;
  letter-spacing: 2px;
}
.client-stack small {
  color: #6d6d6d;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
  margin-top: 3px;
}
.logo-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.logo-marquee > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 55px;
  padding-left: 25px;
  animation: marquee 24s linear infinite;
}
.logo-marquee span {
  color: #838383;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.projects {
  padding-block: 140px 120px;
}
.portfolio-toolbar {
  margin-top: 48px;
  padding-block: 20px;
  border-block: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.portfolio-filters button {
  padding: 10px 15px;
  border: 1px solid #d5d5d5;
  border-radius: 999px;
  background: white;
  color: #555;
  cursor: pointer;
  font-weight: 700;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.portfolio-filters button:hover,
.portfolio-filters button.is-active {
  border-color: #111;
  background: #111;
  color: white;
}
.portfolio-toolbar > p {
  margin: 0;
  display: flex;
  flex-direction: column;
  text-align: right;
}
.portfolio-toolbar strong {
  font-size: 16px;
}
.portfolio-toolbar span {
  margin-top: 3px;
  color: #6b6b6b;
  font-size: 12px;
}
.section-heading > p {
  margin: 0 0 26px;
  font-size: 14px;
  font-weight: 700;
}
.section-heading h2,
.services h2 {
  font-size: clamp(50px, 5vw, 68px);
  line-height: 0.99;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 24px;
  margin-top: 68px;
}
.project-card {
  display: block;
}
.project-card[hidden] {
  display: none;
}
.project-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 14px;
  background: #efefed;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.4s ease;
}
.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}
.project-brand {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.93);
  color: #111;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 800;
}
.project-image em {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -20%);
  opacity: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.64);
  color: white;
  font-style: normal;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.project-card:hover img {
  transform: none;
  filter: saturate(1.05);
}
.project-card:hover .project-image em {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
}
.project-meta > span:first-child {
  display: flex;
  flex-direction: column;
}
.project-meta b {
  font-size: 20px;
}
.project-meta small {
  margin-top: 4px;
  color: #555;
}
.project-meta > span:last-child {
  align-self: center;
  color: #686868;
  font-size: 13px;
}
.portfolio-note {
  max-width: 620px;
  margin: 76px auto 0;
  color: #666;
  font-size: 17px;
  line-height: 1.55;
  text-align: center;
}

.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.85s var(--delay, 0ms) cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s var(--delay, 0ms) cubic-bezier(0.16, 1, 0.3, 1);
}
.has-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services {
  min-height: 780px;
  padding-block: 135px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: 70px;
}
.services-copy > p {
  margin: 76px 0 20px;
  font-weight: 700;
}
.tool-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tool-row li {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 13px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  font-size: 20px;
  font-weight: 900;
  transition: transform 0.2s ease;
}
.tool-row li:hover {
  transform: translateY(-6px) rotate(-4deg);
}
.service-list {
  display: grid;
  gap: 27px;
}
.service-chip {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 22px;
  font-weight: 600;
}
.service-chip i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: white;
  background: #050505;
  border-radius: 50%;
  box-shadow: 0 12px 16px rgba(0, 0, 0, 0.18);
  font-style: normal;
  font-size: 18px;
  transition: transform 0.35s ease;
}
.service-chip:hover i {
  transform: rotate(14deg) scale(1.1);
}

.about {
  padding-block: 120px 145px;
  border-top: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  margin-top: 85px;
}
.founder-card {
  min-height: 430px;
  padding: 32px;
  border: 1px solid #d7d7d7;
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 80% 12%,
      rgba(238, 118, 55, 0.22),
      transparent 35%
    ),
    linear-gradient(145deg, #073d41, #0c2426 72%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.14);
}
.founder-photo {
  width: clamp(160px, 48%, 200px);
  height: auto;
  aspect-ratio: 1;
  margin-bottom: auto;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}
.founder-card .founder-label {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.about-card.founder-card h3 {
  margin: 0 0 6px;
  font-size: 34px;
  letter-spacing: -0.05em;
}
.founder-card > p:not(.founder-label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}
.founder-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.founder-focus span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
}
.about-card h3 {
  margin: 20px 0 5px;
  font-size: 24px;
}
.about-card > p {
  color: #555;
  margin: 0;
}
.about-card button {
  display: table;
  margin: 38px auto 0;
  padding: 10px 17px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: white;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.07);
}
.about-copy {
  font-size: 25px;
  line-height: 1.28;
  letter-spacing: -0.035em;
  color: #666;
}
.about-copy p {
  margin: 0 0 34px;
}
.about-copy b {
  color: #121212;
}
.signature {
  margin-top: 60px;
  font-family: cursive;
  font-size: 31px;
  line-height: 0.75;
  transform: rotate(-8deg);
  color: #111;
}

.callout-card h3 {
  margin: 28px 0 15px;
  font-size: 31px;
  letter-spacing: -0.045em;
}

.faq {
  padding-block: 125px 145px;
  border-top: 1px solid var(--line);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  margin-top: 70px;
  align-items: start;
}
.accordion {
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  min-height: 64px;
  padding: 16px;
  display: grid;
  grid-template-columns: 38px 1fr 24px;
  gap: 0;
  align-items: center;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.faq-item button span {
  font-variant-numeric: tabular-nums;
}
.faq-item button b {
  font-size: 14px;
}
.faq-item button i {
  justify-self: end;
  font-style: normal;
  font-size: 21px;
}
.answer {
  display: grid;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.2s ease;
}
.answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 54px;
  color: #4e4e4e;
  line-height: 1.5;
}
.faq-item.is-open .answer {
  grid-template-rows: 1fr;
  border-top: 1px solid #ddd;
}
.faq-item.is-open .answer p {
  padding-block: 20px 24px;
}
.callout-card {
  padding: 32px;
  border: 1px solid #d8d8d8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.07);
}
.callout-mark {
  width: 70px;
  height: 70px;
  font-size: 27px;
}
.callout-card h3 span {
  color: #888;
}
.callout-card p {
  color: #555;
  line-height: 1.5;
  margin: 0 0 28px;
}

footer {
  position: relative;
  z-index: 60;
  background: #030303;
  color: white;
  overflow: hidden;
}
.footer-inner {
  width: min(100% - (var(--rail) * 2), 1110px);
  min-height: 780px;
  margin: auto;
  padding-top: 85px;
  position: relative;
}
.footer-inner h2 {
  font-size: clamp(54px, 6vw, 84px);
  line-height: 0.86;
  letter-spacing: -0.055em;
}
.footer-inner h2 span {
  color: white;
}
.footer-inner h2 i {
  color: #777;
  font-style: normal;
}
.word-cycle {
  display: inline-block;
  animation: wordBlur 0.65s both;
}
.footer-contact {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 64px;
}
.footer-contact > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact small,
.footer-bottom small {
  color: #777;
}
.footer-contact a,
.footer-contact span {
  font-size: 17px;
}
.footer-rule {
  height: 1px;
  background: #575757;
  margin: 40px 0 28px;
}
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.footer-bottom > div {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-bottom span {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 10px 26px;
  font-size: 12px;
}
.footer-bottom p {
  color: #888;
  margin: auto 0 0;
  text-align: right;
  font-size: 12px;
}
.footer-name {
  position: absolute;
  left: 50%;
  bottom: -105px;
  transform: translateX(-50%);
  font-size: clamp(180px, 24vw, 350px);
  font-weight: 700;
  letter-spacing: -0.09em;
  white-space: nowrap;
  line-height: 1;
  color: white;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes artIn {
  from {
    opacity: 0;
    transform: translate(60px, 35px) rotate(3deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes wordBlur {
  from {
    opacity: 0;
    filter: blur(17px);
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}

@media (max-width: 900px) {
  :root {
    --rail: 20px;
  }
  .cursor-dot {
    display: none;
  }
  .floating-nav {
    width: calc(100% - 32px);
    max-width: 620px;
    top: 14px;
  }
  .floating-nav .brand {
    min-width: 0;
  }
  .floating-nav .brand span:last-child {
    display: none;
  }
  .floating-nav nav {
    margin-left: auto;
    gap: 14px;
  }
  .floating-nav nav a:not(.nav-contact) {
    display: none;
  }
  .floating-nav.is-compact {
    width: 184px;
  }
  .floating-nav.is-compact:hover {
    width: 184px;
  }
  .floating-nav.is-compact:hover nav {
    display: none;
  }
  .floating-nav.is-compact .brand span:last-child {
    display: block;
    max-width: 100px;
    font-size: 12px;
  }
  .hero {
    min-height: auto;
    padding-top: 125px;
    padding-bottom: 80px;
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .hero h1 {
    font-size: clamp(52px, 14vw, 72px);
    max-width: 680px;
  }
  .hero-art {
    height: min(70vw, 520px);
  }
  .trust-strip {
    padding-left: var(--rail);
  }
  .client-stack {
    min-width: 205px;
  }
  .projects,
  .about,
  .faq {
    padding-block: 90px;
  }
  .services {
    min-height: auto;
    padding-block: 95px;
    grid-template-columns: 1fr;
  }
  .service-list {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-card {
    max-width: 500px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .callout-card {
    max-width: 580px;
  }
  .footer-inner {
    min-height: 690px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 14px;
  }
  .contact-dock {
    bottom: 12px;
  }
  .contact-dock > span {
    min-width: 104px;
  }
  .contact-dock a {
    width: 38px;
    height: 38px;
  }
  .hero {
    padding-top: 112px;
  }
  .hero h1 {
    font-size: 14vw;
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .hero-art {
    height: 78vw;
    margin-inline: -4px;
  }
  .screen {
    border-radius: 8px;
  }
  .trust-strip {
    height: 118px;
  }
  .client-stack {
    display: none;
  }
  .logo-marquee > div {
    gap: 36px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }
  .portfolio-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .portfolio-toolbar > p {
    text-align: left;
  }
  .section-heading h2,
  .services h2 {
    font-size: 12.6vw;
  }
  .service-list {
    grid-template-columns: 1fr;
  }
  .tool-row li {
    width: 48px;
    height: 48px;
  }
  .about-copy {
    font-size: 20px;
  }
  .faq-item button {
    grid-template-columns: 34px 1fr 20px;
  }
  .footer-inner {
    min-height: 720px;
    padding-top: 68px;
  }
  .footer-contact,
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-contact {
    margin-top: 45px;
  }
  .footer-contact > div:nth-child(3) {
    display: none;
  }
  .footer-bottom > div:nth-child(2),
  .footer-bottom p {
    display: none;
  }
  .footer-name {
    bottom: -52px;
    font-size: 38vw;
  }
}

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