:root {
  --bg: #f7f7f4;
  --card: #ffffff;
  --text: #171717;
  --muted: #666666;
  --soft: #e9e7df;
  --dark: #111111;
  --accent: #2457ff;
  --radius: 22px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 247, 244);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-logo-row {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-logo {
  width: 100px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.brand-divider {
  width: 1px;
  height: 34px;
  background: rgba(0, 0, 0, 0.14);
  flex-shrink: 0;
}

.brand-meta {
  max-width: 260px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 500;
  text-align: left;
  letter-spacing: -0.01em;
}

.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  flex-shrink: 0;
}

.nav-button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 17px;
  border-radius: 999px;
  background: var(--dark);
  color: #ffffff;
  font-weight: 550;
  white-space: nowrap;
}

.brand-meta-mobile {
  display: none;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 84px 22px;
}

.hero {
  padding-top: 96px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 550;
}

.hero-copy {
  margin: 24px 0 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
}

.button.primary {
  background: var(--dark);
  color: #ffffff;
}

.button.primary:hover {
  background: #2a2a2a;
}

.button.secondary {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--soft);
}

.button.secondary:hover {
  background: #f4f3ee;
  border-color: rgba(0, 0, 0, 0.16);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 550;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.card {
  background: var(--card);
  border: 1px solid var(--soft);
  border-radius: var(--radius);
  padding: 24px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 550;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.problem {
  background: var(--dark);
  color: #ffffff;
  border-radius: 34px;
  padding: 44px;
}

.problem h2 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-weight: 550;
}

.problem p {
  margin: 18px 0 0;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
}

.client-ribbon-section {
  max-width: none;
  padding: 20px 0 34px;
  overflow: hidden;
}

.client-ribbon {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--soft);
  border-bottom: 1px solid var(--soft);
  background: #ffffff;
}

.client-ribbon::before,
.client-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  pointer-events: none;
}

.client-ribbon::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), rgba(247, 247, 244, 0));
}

.client-ribbon::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), rgba(247, 247, 244, 0));
}

.client-ribbon-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 18px 0;
  animation: clientRibbonMove 38s linear infinite;
  will-change: transform;
}

.client-ribbon-track span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--text);
  font-size: 23px;
  font-weight: 550;
  letter-spacing: -0.02em;
}

@keyframes clientRibbonMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.services-simple {
  display: grid;
  grid-template-columns: 1.00fr 0.50fr;
  gap: 48px;
  align-items: center;
}

.services-simple-copy h2 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 550;
}

.services-simple-copy p {
  margin: 20px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
}

.service-rotator {
  --service-item-height: 64px;
  --service-gap: 14px;
  --service-step: calc(var(--service-item-height) + var(--service-gap));
  position: relative;
  height: calc((var(--service-item-height) * 6) + (var(--service-gap) * 5));
  overflow: hidden;
}

.service-rotator::before,
.service-rotator::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 2;
  pointer-events: none;
}

.service-rotator::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg), rgba(247, 247, 244, 0));
}

.service-rotator::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg), rgba(247, 247, 244, 0));
}

.service-track {
  display: flex;
  flex-direction: column;
  gap: var(--service-gap);
  animation: serviceScroll 38s linear infinite;
  will-change: transform;
}

.service-item {
  height: var(--service-item-height);
  display: flex;
  align-items: center;
  color: var(--text);
  font-size: clamp(27px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 550;
  white-space: nowrap;
}

@keyframes serviceScroll {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(var(--service-step) * -15));
  }
}

.work-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.work-heading-row .section-heading {
  margin-bottom: 0;
}

.work-carousel {
  position: relative;
}

.work-viewport {
  overflow: hidden;
}

.work-track {
  display: flex;
  gap: 18px;
  align-items: stretch;
  will-change: transform;
}

.work-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.work-image {
  aspect-ratio: 16 / 10;
  background: #efeee8;
  border-bottom: 1px solid var(--soft);
  overflow: hidden;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.work-content {
  padding: 24px;
  flex: 1;
}

.work-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 72px;
  height: 120px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111111;
  font-size: 118px;
  line-height: 0.8;
  font-weight: 300;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.work-arrow:hover {
  background: transparent;
  transform: translateY(-50%) scale(1.06);
  opacity: 0.72;
}

.work-arrow-left {
  left: -96px;
}

.work-arrow-right {
  right: -96px;
}

@media (max-width: 1240px) {
  .work-arrow {
    display: none;
  }

  .work-viewport {
    overflow: visible;
  }

  .work-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    transform: none !important;
    transition: none !important;
  }

  .work-card {
    flex: none;
    width: 100%;
  }
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1f1ec;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.one-done {
  background: var(--dark);
  color: #ffffff;
  border-radius: 34px;
  padding: clamp(34px, 6vw, 72px);
}

.one-done h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(58px, 11vw, 90px);
  line-height: 0.88;
  letter-spacing: -0.05em;
  font-weight: 550;
}

.one-done-copy {
  margin: 28px 0 0;
  max-width: 860px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.advanced-section {
  display: grid;
  gap: 30px;
}

.advanced-heading h2 {
  margin: 0;
  font-size: clamp(48px, 8vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 550;
}

.advanced-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.advanced-card {
  background: var(--card);
  border: 1px solid var(--soft);
  border-radius: 34px;
  padding: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
}

.advanced-card-large {
  grid-column: 1 / -1;
}

.advanced-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: #111111;
  border-radius: 24px;
}

.advanced-card-large video {
  aspect-ratio: 16 / 8;
}

.advanced-card-copy {
  padding: 24px 8px 14px;
}

.advanced-card h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 550;
}

.advanced-card:not(.advanced-card-large) h3 {
  font-size: clamp(26px, 3vw, 42px);
}

.advanced-card p {
  margin: 14px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.advanced-card:not(.advanced-card-large) p {
  font-size: 17px;
}

.simple-build-grid {
  grid-template-columns: 1.35fr 0.642fr;
}

.simple-build-grid .advanced-card-large {
  grid-column: 1 / -1;
}

.simple-mobile-card img {
  object-fit: cover;
  object-position: top center;
}

#simple-builds .advanced-card {
  padding: 0;
}

#simple-builds .advanced-card img {
  border-radius: 0;
}

#simple-builds .advanced-card-copy {
  padding: 24px;
  padding-bottom: 32px;
}

.local-edge {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: stretch;
  background: #111111;
  color: #ffffff;
  border-radius: 34px;
  padding: 44px;
}

.local-edge-copy h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(58px, 6vw, 70px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 550;
}

.local-edge-copy p:not(.local-edge-kicker) {
  margin: 22px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.local-edge-list {
  display: grid;
  gap: 12px;
  align-content: center;
}

.local-edge-row {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.local-edge-row span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 550;
}

.local-edge-row strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 550;
}

.local-edge-row.is-highlighted {
  position: relative;
  overflow: visible;
  isolation: isolate;
  background: #ffffff;
}

.local-edge-row.is-highlighted span,
.local-edge-row.is-highlighted strong {
  position: relative;
  z-index: 2;
}

.local-edge-row.is-highlighted span {
  color: #666666;
}

.local-edge-row.is-highlighted strong {
  color: #171717;
}

.local-edge-row.is-highlighted::after {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
  left: -75px;
  right: -54px;
  top: -44px;
  bottom: -44px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 720 230' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M44 132C62 56 235 30 405 43C590 57 690 108 650 154C607 204 382 202 204 177C52 156 18 111 84 78C170 36 380 38 560 82' fill='none' stroke='%23ff1d25' stroke-width='11' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M34 146C96 205 360 216 560 174C700 144 674 76 500 48C312 18 86 48 48 122' fill='none' stroke='%23ff1d25' stroke-width='7' stroke-linecap='round' stroke-linejoin='round' opacity='0.92'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 108% 108%;
  background-position: center -8px;
}

.process-section {
  padding-top: 96px;
  padding-bottom: 110px;
}

.process-hero {
  max-width: 900px;
  margin-bottom: 56px;
}

.process-hero h2 {
  margin: 0;
  font-size: clamp(58px, 10vw, 80px);
  line-height: 0.88;
  letter-spacing: -0.05em;
  font-weight: 550;
}

.process-hero p {
  margin: 28px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.process-timeline {
  position: relative;
  display: grid;
  gap: 26px;
  padding-left: 86px;
}

.process-line {
  position: absolute;
  left: 31px;
  top: 18px;
  bottom: 18px;
  width: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.process-line span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--process-progress);
  border-radius: inherit;
  background: #111111;
  transition: height 180ms linear;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  align-items: stretch;
  opacity: 0.28;
  transform: translateY(34px) scale(0.985);
  transition: opacity 420ms ease, transform 420ms ease;
}

.process-step.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.process-step-number {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: #e5e3db;
  color: rgba(17, 17, 17, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 550;
  letter-spacing: -0.03em;
  transition: background 320ms ease, color 320ms ease, transform 320ms ease;
}

.process-step.is-active .process-step-number {
  background: #111111;
  color: #ffffff;
  transform: scale(1.08);
}

.process-step-card {
  min-height: 210px;
  background: #ffffff;
  border: 1px solid var(--soft);
  border-radius: 34px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.055);
}

.process-step-card h3 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(38px, 5.4vw, 50px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 550;
}

.process-step-card p {
  margin: 22px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.32;
  letter-spacing: -0.03em;
}

.pricing-note {
  display: flex;
  flex-direction: column;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  padding: clamp(32px, 5vw, 58px);
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid var(--soft);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.045);
}

.pricing-note span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 550;
}

.pricing-note h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(44px, 6vw, 75px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 550;
}

.pricing-note p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.contact-box {
  position: relative;
  overflow: visible;
  background: var(--card);
  border: 1px solid var(--soft);
  border-radius: 34px;
  padding: 34px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
}

.coffee-chat-arrow {
  position: absolute;
  top: -190px;
  left: 50%;
  width: 120px;
  height: 185px;
  overflow: visible;
  pointer-events: none;
  z-index: 6;
  transform: translateX(-50%);
}

.coffee-chat-arrow path {
  fill: none;
  stroke: #ff2a2a;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.coffee-arrow-line-main {
  stroke-width: 11;
  stroke-dasharray: 165;
  stroke-dashoffset: 165;
}

.coffee-arrow-line-rough {
  stroke-width: 7;
  stroke-opacity: 0.72;
  stroke-dasharray: 165;
  stroke-dashoffset: 165;
}

.coffee-arrow-head {
  stroke-width: 11;
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
}

.coffee-chat-arrow.is-visible .coffee-arrow-line-main {
  animation: drawCoffeeArrowLine 700ms ease-out forwards;
}

.coffee-chat-arrow.is-visible .coffee-arrow-line-rough {
  animation: drawCoffeeArrowLine 700ms ease-out forwards;
  animation-delay: 70ms;
}

.coffee-chat-arrow.is-visible .coffee-arrow-head {
  animation: drawCoffeeArrowHead 240ms ease-out forwards;
  animation-delay: 620ms;
}

@keyframes drawCoffeeArrowLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawCoffeeArrowHead {
  to {
    stroke-dashoffset: 0;
  }
}

form {
  display: grid;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--soft);
  background: #fbfbf8;
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  outline: none;
}

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

input:focus,
textarea:focus {
  border-color: rgba(36, 87, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(36, 87, 255, 0.08);
}

.form-button {
  border: 0;
  cursor: pointer;
  background: var(--dark);
  color: #ffffff;
  border-radius: 999px;
  min-height: 50px;
  font: inherit;
  font-weight: 550;
}

.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 22px 46px;
  color: var(--muted);
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .section {
    padding: 64px 18px;
  }

  .problem {
    padding: 30px;
  }

  .services-simple {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-rotator {
    --service-item-height: 58px;
  }

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

  .work-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .advanced-grid,
  .simple-build-grid,
  .local-edge,
  .contact-box,
  .pricing-note {
    grid-template-columns: 1fr;
  }

  .pricing-note {
    align-items: start;
  }

  .advanced-card-large video {
    aspect-ratio: 16 / 9;
  }

  #simple-builds .advanced-card img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top center;
  }

  .local-edge {
    padding: 30px;
  }

  .local-edge-row strong {
    font-size: 18px;
  }

  .process-timeline {
    padding-left: 58px;
  }

  .process-line {
    left: 24px;
  }

  .process-step {
    grid-template-columns: 64px 1fr;
    gap: 16px;
  }

  .process-step-number {
    width: 54px;
    height: 54px;
    font-size: 16px;
  }

  .coffee-chat-arrow {
    top: -150px;
    width: 92px;
    height: 145px;
  }
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
  }

  .sws-card-button {
    margin-top: 5px;
  }

  .brand-logo {
    width: clamp(118px, 36vw, 150px);
  }

  .brand-divider,
  .brand-meta {
    display: none;
  }

  .brand-meta-mobile {
    display: block;
    max-width: 200px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.18;
    font-weight: 500;
    text-align: right;
    letter-spacing: -0.01em;
  }

  .nav-button {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .client-ribbon-track {
    gap: 12px;
    padding: 14px 0;
  }

  .client-ribbon-track span {
    font-size: 16px;
    padding: 9px 14px;
  }

  .services-simple-copy p {
    font-size: 18px;
  }

  .service-rotator {
    --service-item-height: 50px;
    --service-gap: 12px;
    height: calc((var(--service-item-height) * 6) + (var(--service-gap) * 5));
  }

  .service-item {
    font-size: clamp(23px, 8vw, 34px);
  }

  .work-carousel {
    overflow: visible;
  }

  .work-arrow {
    display: none;
  }

  .work-viewport {
    overflow: visible;
  }

  .work-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    transform: none !important;
    transition: none !important;
  }

  .local-edge-copy h2 {
    font-size: clamp(38px, 8vw, 58px);
  }

  .work-card {
    flex: none;
    width: 100%;
  }

  .one-done {
    border-radius: 28px;
  }

  .one-done-copy {
    font-size: 20px;
  }

  .advanced-card {
    border-radius: 28px;
    padding: 14px;
  }

  .advanced-card video {
    border-radius: 20px;
  }

  .advanced-card-copy {
    padding: 18px 4px 4px;
  }

  .advanced-card p {
    font-size: 17px;
  }

  #simple-builds .advanced-card-copy {
    padding: 18px;
  }

  .local-edge-row.is-highlighted::after {
    display: none;
  }

  .process-section {
    padding-top: 72px;
    padding-bottom: 82px;
  }

  .process-timeline {
    padding-left: 0;
    gap: 18px;
  }

  .process-line {
    display: none;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .process-step-number {
    width: 58px;
    height: 58px;
  }

  .process-step-card {
    min-height: auto;
    border-radius: 28px;
    padding: 28px;
  }

  .process-step-card h3 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .contact-box {
    padding: 24px;
  }

  .coffee-chat-arrow {
    display: none;
  }

  .footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-ribbon-track,
  .service-track {
    animation: none;
  }

  .process-line span,
  .process-step,
  .process-step-number {
    transition: none;
  }

  .process-step {
    opacity: 1;
    transform: none;
  }

  .coffee-arrow-line-main,
  .coffee-arrow-line-rough,
  .coffee-arrow-head {
    stroke-dashoffset: 0;
  }

  .coffee-chat-arrow.is-visible .coffee-arrow-line-main,
  .coffee-chat-arrow.is-visible .coffee-arrow-line-rough,
  .coffee-chat-arrow.is-visible .coffee-arrow-head {
    animation: none;
  }
}