:root {
  --background: #f7f8fb;
  --surface: #ffffff;
  --surface-subtle: #f0f3f8;
  --ink: #101828;
  --muted: #5c6878;
  --faint: #8490a1;
  --line: #e2e7ef;
  --line-strong: #cfd6e1;
  --blue: #2563eb;
  --blue-dark: #1849b7;
  --blue-soft: #edf4ff;
  --navy: #0b1220;
  --green: #158466;
  --rose-soft: #f9eef2;
  --display: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:focus-visible {
  border-radius: 6px;
  outline: 3px solid rgb(37 99 235 / 35%);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  font-weight: 700;
  text-decoration: none;
  translate: 0 -180%;
}

.skip-link:focus {
  translate: 0;
}

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

.site-header {
  min-height: 5.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand strong {
  font-weight: 760;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
  padding: 0.45rem;
  border-radius: 8px;
  background: var(--navy);
}

.brand-mark i {
  height: 42%;
  border-radius: 2px;
  background: #8bb3ff;
}

.brand-mark i:nth-child(2) {
  height: 82%;
  background: white;
}

.brand-mark i:nth-child(3) {
  height: 60%;
  background: #5689f4;
}

.nav-links {
  display: flex;
  gap: 1.7rem;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 540;
  text-decoration: none;
  transition: color 150ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 0.66rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: var(--surface);
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: none;
  transition:
    border-color 150ms ease,
    background 150ms ease;
}

.nav-cta:hover {
  border-color: #a9b5c5;
  background: #fafbfd;
}

.hero {
  min-height: 44rem;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(24rem, 0.93fr);
  align-items: center;
  gap: clamp(3.5rem, 8vw, 7rem);
  padding-block: 5rem 6rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.69rem;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 0.45rem;
  height: 0.45rem;
  display: inline-block;
  margin: 0 0.5rem 0.02rem 0;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgb(21 132 102 / 10%);
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.6rem, 6.5vw, 5.9rem);
  font-weight: 730;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  color: var(--blue);
  font-style: normal;
}

.hero-lead {
  max-width: 35rem;
  margin: 1.8rem 0 0;
  color: #344054;
  font-size: clamp(1.12rem, 1.8vw, 1.28rem);
  line-height: 1.55;
}

.hero-detail {
  max-width: 34rem;
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  min-height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 670;
  text-decoration: none;
  transition:
    transform 150ms ease,
    background 150ms ease,
    border-color 150ms ease;
}

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

.button-primary {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: white;
  box-shadow: 0 8px 20px rgb(37 99 235 / 16%);
}

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

.button-secondary {
  border: 1px solid var(--line-strong);
  background: var(--surface);
}

.button-secondary:hover {
  border-color: #a9b5c5;
}

.studio-board {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 24px 70px rgb(16 24 40 / 9%);
}

.studio-board-title {
  padding: 1.55rem 1.6rem;
  border-bottom: 1px solid var(--line);
}

.studio-board-title span,
.studio-board-title strong {
  display: block;
}

.studio-board-title span {
  margin-bottom: 0.25rem;
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-board-title strong {
  font-size: 1.35rem;
  font-weight: 680;
  letter-spacing: -0.025em;
}

.studio-tiles article {
  position: relative;
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0 0.9rem;
  padding: 1.35rem 1.6rem;
  border-bottom: 1px solid var(--line);
  transition: background 150ms ease;
}

.studio-tiles article:hover {
  background: #fafbfd;
}

.studio-tiles article:last-child {
  border-bottom: 0;
}

.service-code {
  grid-row: 1 / span 2;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 720;
}

.studio-tiles h2 {
  margin: 0 0 0.12rem;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.015em;
}

.studio-tiles p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.studio-board-note {
  margin: 0;
  padding: 0.9rem 1.6rem;
  border-top: 1px solid var(--line);
  background: var(--surface-subtle);
  color: var(--faint);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.scope-strip {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.scope-strip-inner {
  min-height: 4.6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.scope-strip b {
  margin-right: 0.45rem;
  color: var(--blue);
  font-weight: 700;
}

.section {
  padding-block: 7.5rem;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 3rem;
}

.section-heading h2,
.ai-practical h2,
.closing h2 {
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 4.25rem);
  font-weight: 690;
  letter-spacing: -0.055em;
  line-height: 1.04;
  text-wrap: balance;
}

.section-heading > p:last-child,
.work-heading > p,
.ai-practical-copy > p:last-child {
  max-width: 40rem;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card {
  min-height: 38rem;
  position: relative;
  overflow: hidden;
  padding: clamp(1.7rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 10px 35px rgb(16 24 40 / 5%);
}

.service-card.ai-card {
  min-height: 31rem;
  grid-column: 1 / -1;
  padding-right: max(2.25rem, 48%);
  background: var(--navy);
  color: white;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.ai-card .service-card-top {
  border-color: rgb(255 255 255 / 12%);
}

.card-number,
.card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.card-number {
  color: var(--blue);
}

.ai-card .card-number {
  color: #8bb3ff;
}

.card-label {
  color: var(--faint);
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 18ch;
  margin: 2rem 0 0.9rem;
  font-size: clamp(1.7rem, 2.8vw, 2.25rem);
  font-weight: 660;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.service-card > p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
}

.ai-card > p {
  color: #aeb8c7;
}

.service-card ul {
  max-width: 29rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.35rem;
  border-top: 1px solid var(--line);
  color: #465264;
  font-size: 0.85rem;
}

.ai-card li {
  border-color: rgb(255 255 255 / 11%);
  color: #c6cdd7;
}

.service-card li::before {
  width: 0.4rem;
  height: 0.4rem;
  content: "";
  position: absolute;
  top: 1.02rem;
  left: 0.08rem;
  border-radius: 50%;
  background: var(--blue);
}

.ai-card li::before {
  background: #8bb3ff;
}

.app-preview {
  width: 15rem;
  height: 10rem;
  position: absolute;
  right: 1rem;
  bottom: 0;
}

.mini-phone {
  width: 7.2rem;
  height: 12.5rem;
  position: absolute;
  padding: 1.4rem 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 22px 22px 0 0;
  background: var(--surface);
  box-shadow: 0 15px 35px rgb(16 24 40 / 13%);
}

.phone-back {
  right: 0;
  bottom: -3rem;
  rotate: 5deg;
  background: var(--blue-soft);
}

.phone-front {
  right: 6.4rem;
  bottom: -2rem;
  rotate: -3deg;
}

.mini-phone span {
  width: 2.2rem;
  height: 0.25rem;
  display: block;
  margin: 0 auto 1.1rem;
  border-radius: 999px;
  background: var(--line-strong);
}

.mini-phone b {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--blue);
  font-size: 0.56rem;
}

.mini-phone i {
  height: 0.45rem;
  display: block;
  margin: 0.55rem 0;
  border-radius: 999px;
  background: var(--line);
}

.mini-phone i:last-child {
  width: 60%;
  background: #8bb3ff;
}

.web-preview {
  width: 17rem;
  height: 10rem;
  position: absolute;
  right: -1rem;
  bottom: -0.5rem;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 14px 0 0 0;
  background: var(--surface);
  box-shadow: 0 15px 35px rgb(16 24 40 / 12%);
  rotate: -1deg;
}

.browser-bar {
  height: 1.7rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface-subtle);
}

.browser-bar i {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--line-strong);
}

.browser-bar span {
  width: 5rem;
  height: 0.35rem;
  margin-left: 0.4rem;
  border-radius: 999px;
  background: var(--line-strong);
}

.browser-body {
  padding: 1rem;
}

.browser-body b {
  width: 70%;
  height: 1.6rem;
  display: block;
  margin-bottom: 1.1rem;
  border-radius: 4px;
  background: var(--blue);
  opacity: 0.85;
}

.browser-body span {
  width: 90%;
  height: 0.45rem;
  display: block;
  margin: 0.55rem 0;
  border-radius: 999px;
  background: var(--line);
}

.browser-body span:last-child {
  width: 55%;
}

.ai-flow {
  width: 40%;
  min-height: 13rem;
  position: absolute;
  top: 7.7rem;
  right: 2.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 14px;
  background: #121c2e;
}

.ai-flow span {
  padding: 1rem 0.5rem;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 8px;
  background: rgb(255 255 255 / 4%);
  color: #c6cdd7;
  font-size: 0.6rem;
  font-weight: 650;
  text-align: center;
}

.ai-flow span:nth-of-type(2) {
  border-color: rgb(139 179 255 / 35%);
  background: rgb(37 99 235 / 16%);
  color: #b9d0ff;
}

.ai-flow b {
  color: #8bb3ff;
  font-size: 1.2rem;
}

.ai-flow small {
  grid-column: 1 / -1;
  padding-top: 0.9rem;
  border-top: 1px solid rgb(255 255 255 / 10%);
  color: #8d99aa;
  text-align: center;
}

.ai-practical {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  padding-inline: clamp(1.5rem, 5vw, 4rem);
  border: 1px solid #d6e4ff;
  border-radius: 22px;
  background: var(--blue-soft);
}

.ai-practical h2 {
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
}

.workflow-board {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 12px 35px rgb(37 99 235 / 8%);
}

.workflow-head {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.workflow-row {
  display: grid;
  grid-template-columns: 0.82fr 2.5rem 1.18fr;
  align-items: center;
  gap: 0.8rem;
  padding: 1.15rem 1rem;
  border-bottom: 1px solid var(--line);
}

.workflow-row span,
.workflow-row strong {
  font-size: 0.8rem;
  font-weight: 550;
}

.workflow-row span {
  color: var(--muted);
}

.workflow-row i {
  height: 1px;
  position: relative;
  background: #9bbcfb;
}

.workflow-row i::after {
  content: "›";
  position: absolute;
  top: -0.8rem;
  right: -0.05rem;
  color: var(--blue);
  font-size: 1.3rem;
}

.workflow-note {
  padding: 0.9rem 1rem;
  background: #f8fafc;
  color: var(--muted);
  font-size: 0.74rem;
}

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

.work-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 3rem;
}

.work-heading > p {
  margin: 0 0 0.35rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.project-card {
  min-height: 40rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 10px 35px rgb(16 24 40 / 5%);
  text-decoration: none;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgb(16 24 40 / 9%);
}

.project-meta {
  display: flex;
  justify-content: space-between;
  color: var(--faint);
  font-size: 0.63rem;
  font-weight: 680;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project-copy h3 {
  margin: 1.7rem 0 0;
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.project-tagline {
  margin: 0.4rem 0 1rem !important;
  color: var(--blue) !important;
  font-size: 1.05rem !important;
  font-weight: 680;
}

.wedding-project .project-tagline {
  color: #9a4464 !important;
}

.project-copy > p {
  max-width: 33rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.project-link {
  display: inline-flex;
  gap: 0.45rem;
  margin-top: 1.4rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 680;
}

.project-link i {
  color: var(--blue);
  font-style: normal;
}

.pulse-project-visual,
.wedding-project-visual {
  min-height: 17rem;
  position: relative;
  margin-top: 2rem;
  border-radius: 14px;
}

.pulse-project-visual {
  background: linear-gradient(145deg, #edf4ff, #eefaf7);
}

.wedding-project-visual {
  background: linear-gradient(145deg, #fbf2f5, #f7f2ee);
}

.pulse-screen {
  width: 11.5rem;
  height: 17rem;
  position: absolute;
  right: 50%;
  bottom: -4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 26px 26px 0 0;
  background: var(--navy);
  color: white;
  box-shadow: 0 18px 45px rgb(11 18 32 / 22%);
  translate: 50% 0;
}

.pulse-screen > span {
  color: #8090a5;
  font-size: 0.52rem;
  letter-spacing: 0.12em;
}

.pulse-screen > strong {
  margin-top: 1rem;
  color: #63d9c0;
  font-size: 4.5rem;
  line-height: 1;
}

.pulse-screen > small {
  color: #8d99aa;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
}

.pulse-screen > div {
  height: 3.6rem;
  display: flex;
  align-items: end;
  gap: 0.35rem;
  margin-top: 1.8rem;
}

.pulse-screen i {
  width: 0.45rem;
  height: 40%;
  display: block;
  border-radius: 999px;
  background: var(--blue);
}

.pulse-screen i:nth-child(2) {
  height: 70%;
}

.pulse-screen i:nth-child(3) {
  height: 95%;
  background: #63d9c0;
}

.pulse-screen i:nth-child(4) {
  height: 58%;
}

.pulse-screen i:nth-child(5) {
  height: 78%;
}

.pulse-ring {
  position: absolute;
  border: 1px solid #c2d5fa;
  border-radius: 50%;
}

.ring-one {
  width: 18rem;
  height: 18rem;
  right: 50%;
  bottom: -3rem;
  translate: 50% 0;
}

.ring-two {
  width: 13rem;
  height: 13rem;
  right: 50%;
  bottom: -0.5rem;
  border-color: #b9eadf;
  translate: 50% 0;
}

.guest-card {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 16px 40px rgb(59 42 49 / 12%);
}

.guest-card-back {
  width: 12rem;
  height: 8rem;
  right: 1.2rem;
  bottom: 0.5rem;
  padding: 1.2rem;
  rotate: 6deg;
  background: #f7e8ee;
}

.guest-card-back span,
.guest-card-back b {
  display: block;
}

.guest-card-back span {
  color: #9a6a7c;
  font-size: 0.55rem;
}

.guest-card-back b {
  margin-top: 0.7rem;
  color: #9a4464;
  font-size: 2rem;
}

.guest-card-main {
  width: 15rem;
  height: 15rem;
  right: 50%;
  bottom: -2.5rem;
  z-index: 2;
  padding: 1.5rem;
  rotate: -2deg;
  translate: 34% 0;
}

.guest-card-main small,
.guest-card-main strong,
.guest-card-main span {
  display: block;
}

.guest-card-main small {
  color: #9a4464;
  font-size: 0.55rem;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.guest-card-main strong {
  margin: 1.2rem 0 1.8rem;
  font-size: 1.3rem;
  line-height: 1.18;
}

.guest-card-main span {
  padding: 0.7rem;
  border-radius: 8px;
  background: #ad5575;
  color: white;
  font-size: 0.7rem;
  font-weight: 650;
  text-align: center;
}

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

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 17rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.process-list span {
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.process-list h3 {
  margin: 4.25rem 0 0.7rem;
  font-size: 1.3rem;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.closing {
  min-height: 23rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
  padding: 4rem;
  border-radius: 22px;
  background: var(--navy);
  color: white;
}

.closing h2 {
  max-width: 16ch;
  font-size: clamp(2.4rem, 4.7vw, 4rem);
}

.closing .eyebrow {
  color: #8bb3ff;
}

.closing .button-primary {
  border-color: white;
  background: white;
  color: var(--navy);
  box-shadow: none;
}

.site-footer {
  min-height: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.75rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 940px) {
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-block: 4.5rem;
  }

  .studio-board {
    max-width: 42rem;
  }

  .scope-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 1.2rem;
  }

  .ai-practical {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 2rem, 1160px);
  }

  .site-header {
    min-height: 4.6rem;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    gap: 3rem;
    padding-block: 3.5rem 4rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .scope-strip-inner,
  .service-grid,
  .work-heading,
  .process-list {
    grid-template-columns: 1fr;
  }

  .scope-strip-inner {
    gap: 0.65rem;
  }

  .section {
    padding-block: 5rem;
  }

  .service-card,
  .service-card.ai-card {
    min-height: auto;
    grid-column: auto;
    padding: 1.5rem 1.5rem 13rem;
  }

  .service-card.ai-card {
    padding-bottom: 15rem;
  }

  .ai-flow {
    width: auto;
    min-height: 10rem;
    inset: auto 1.5rem 1.5rem;
  }

  .ai-practical {
    padding: 3rem 1.5rem;
  }

  .work-heading {
    gap: 1rem;
  }

  .project-card {
    min-height: 39rem;
    padding: 1.5rem;
  }

  .process-list {
    gap: 1rem;
  }

  .process-list li {
    min-height: auto;
  }

  .process-list h3 {
    margin-top: 2.8rem;
  }

  .closing {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 2rem;
    padding: 3rem 1.5rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 2rem;
  }
}

@media (max-width: 470px) {
  .brand {
    font-size: 0.92rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .ai-flow {
    grid-template-columns: 1fr;
  }

  .ai-flow b {
    rotate: 90deg;
    text-align: center;
  }

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

  .workflow-row i {
    width: 2rem;
  }

  .project-card {
    min-height: 40rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
