:root {
  --bg: #f1f0ec;
  --ink: #22221f;
  --muted: #73716a;
  --line: #d3d1ca;
  --accent: #6c52ee;
  --palette-coral: #ff704f;
  --palette-blue: #2764ff;
  --palette-green: #2c9f3b;
  --font: Arial, Helvetica, sans-serif;
}

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

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-underline-offset: 4px;
}

::selection {
  background: var(--accent);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 64px), 1232px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  padding: 9px 14px;
  text-decoration: none;
}

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  background: rgba(241, 240, 236, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 40px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.logo-mark {
  width: 25px;
  color: var(--accent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.main-nav a,
.header-contact {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a:hover,
.header-contact:hover {
  text-decoration: underline;
}

.header-actions {
  display: flex;
  align-items: center;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-right: 14px;
  border-right: 1px solid var(--line);
}

.language-toggle button {
  min-width: 24px;
  padding: 5px 2px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.language-toggle button:hover,
.language-toggle button[aria-pressed="true"] {
  color: var(--ink);
}

.language-toggle button[aria-pressed="true"] {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.language-toggle > span {
  color: var(--line);
  font-size: 10px;
}

.header-contact {
  display: inline-flex;
  gap: 10px;
  margin-left: 14px;
}

.menu-button {
  display: none;
}

/* Hero */
.hero {
  min-height: calc(100svh - 76px);
}

.hero-inner {
  display: grid;
  min-height: calc(100svh - 76px);
  grid-template-rows: auto 1fr auto;
  padding-top: 48px;
  padding-bottom: 54px;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero h1 {
  align-self: center;
  max-width: 820px;
  padding: 110px 0;
  font-size: clamp(50px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

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

.hero-footer {
  display: grid;
  grid-template-columns: minmax(0, 470px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.hero-footer p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.hero-footer a,
.arrow-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.hero-footer a:hover,
.arrow-link:hover {
  text-decoration: underline;
}

/* Shared section headings */
.section-label {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 100px;
  margin-bottom: 120px;
}

.section-intro h2,
.about-section h2,
.start-section h2,
.contact-section h2 {
  max-width: 680px;
  font-size: clamp(34px, 3.3vw, 48px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-intro > p,
.start-grid > div > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Projects */
.work-section {
  padding: 220px 0 240px;
  border-top: 1px solid var(--line);
}

.projects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
  row-gap: 160px;
  align-items: start;
}

.project-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #dddcd7;
  isolation: isolate;
}

.project-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 480ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-image-base {
  z-index: 1;
  opacity: 1;
  transform: scale(1.001);
}

.project-image-hover {
  z-index: 2;
  opacity: 0;
  transform: scale(1.035);
}

@media (hover: hover) and (pointer: fine) {
  .project-image:hover .project-image-base {
    opacity: 0;
    transform: scale(1.018);
  }

  .project-image:hover .project-image-hover {
    opacity: 1;
    transform: scale(1);
  }
}

.project-info {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.project-id,
.project-scope {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-info h3 {
  max-width: 500px;
  margin-top: 30px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.project-info > div {
  margin-top: 20px;
}

.project-info > div > p:first-child {
  max-width: 430px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.project-scope {
  margin-top: 24px;
}

@media (max-width: 960px) {
  .projects {
    grid-template-columns: 1fr;
    gap: 160px;
  }

  .project-info {
    grid-template-columns: 160px 1fr;
    gap: 22px 40px;
  }

  .project-info h3,
  .project-info > div {
    margin-top: 0;
  }

  .project-info > div {
    grid-column: 2;
  }
}

/* How we work */
.services-section {
  padding: 220px 0;
  border-top: 1px solid var(--line);
}

.section-intro-compact {
  margin-bottom: 110px;
}

.service-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-list li {
  display: grid;
  grid-template-columns: 54px minmax(230px, 0.45fr) minmax(500px, 1.15fr);
  align-items: center;
  gap: 36px;
  min-height: 350px;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}

.service-number {
  align-self: start;
  color: var(--muted);
  font-size: 10px;
}

.service-copy h3 {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.service-copy p {
  max-width: 320px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.shape-field-service-word {
  --shape-opacity: 0.92;
  width: 100%;
  max-width: none;
  justify-self: end;
}

.capability-line {
  max-width: 720px;
  margin-top: 34px;
  padding-top: 0;
  border-top: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}

.capability-line span {
  padding: 0 10px;
  color: var(--accent);
}

/* About */
.about-section {
  padding: 230px 0;
  border-top: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 130px;
}

.about-copy > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.about-copy > p + p {
  margin-top: 20px;
}

.about-copy dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 80px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.about-copy dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-copy dd {
  font-size: 12px;
}

.stats-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 32px 30px 28px;
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat-num {
  order: -1;
  margin-bottom: 18px;
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.stat-num span {
  display: inline-block;
  margin-left: 0.08em;
  font-size: 0.34em;
  font-weight: 500;
  letter-spacing: -0.04em;
  vertical-align: top;
}

.stat:nth-child(1) .stat-num span {
  color: var(--accent);
}

.stat:nth-child(2) .stat-num span {
  color: var(--palette-coral);
}

.stat:nth-child(3) .stat-num span {
  color: var(--palette-blue);
}

.stat:nth-child(4) .stat-num span {
  color: var(--palette-green);
}

.stat-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Start */
.start-section {
  padding: 190px 0 100px;
  border-top: 1px solid var(--line);
}

.start-grid {
  display: grid;
  grid-template-columns: 190px minmax(380px, 1fr) auto;
  align-items: end;
  gap: 60px;
}

.start-grid .section-label {
  margin: 0;
  align-self: start;
}

.start-grid h2 {
  margin-bottom: 24px;
}

.start-grid > div > p {
  max-width: 560px;
}

.umkm-row {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(230px, 0.8fr) auto;
  align-items: end;
  gap: 64px;
  margin-top: 110px;
  padding: 48px;
  background: var(--ink);
  color: #fff;
}

.umkm-label {
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.umkm-heading h3 {
  max-width: 400px;
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.umkm-details {
  max-width: 310px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

.umkm-details span {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 11px;
}

.umkm-action {
  min-width: 190px;
}

.umkm-price span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.umkm-price strong {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.umkm-price small {
  margin-left: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
}

.umkm-row a {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.umkm-row a:hover {
  border-top-color: #fff;
}

/* Contact and footer */
.contact-section {
  padding: 120px 0 220px;
}

.contact-inner {
  display: grid;
  justify-items: start;
}

.contact-inner .section-label {
  margin-bottom: 46px;
}

.contact-section h2 {
  max-width: 820px;
  font-size: clamp(42px, 5vw, 68px);
}

.contact-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 60px;
}

.contact-links > a:last-child {
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  padding: 24px 0 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.footer-inner a {
  color: var(--ink);
  text-decoration: none;
}

/* Tablet and mobile navigation */
@media (max-width: 820px) {
  .container {
    width: calc(100% - 40px);
  }

  .site-header {
    height: 66px;
  }

  .main-nav {
    position: fixed;
    top: 66px;
    right: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--bg);
    padding: 12px 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-contact {
    display: none;
  }

  .language-toggle {
    padding-right: 10px;
  }

  .menu-button {
    display: grid;
    width: 42px;
    height: 42px;
    margin-left: auto;
    place-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
  }

  .menu-button span {
    width: 20px;
    height: 1px;
    background: var(--ink);
    transition: transform 160ms ease;
  }

  .menu-button.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero,
  .hero-inner {
    min-height: calc(100svh - 66px);
  }

  .hero-inner {
    padding-top: 36px;
    padding-bottom: 42px;
  }

  .hero h1 {
    padding: 90px 0;
  }

  .section-intro,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .stat:nth-child(3) {
    border-left: 0;
  }

  .stat:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .project-info {
    grid-template-columns: 130px 1fr;
    gap: 22px 36px;
  }

  .project-info > div {
    grid-column: 2;
  }

  .start-grid {
    grid-template-columns: 130px 1fr;
  }

  .start-grid .arrow-link {
    grid-column: 2;
    justify-self: start;
  }

  .umkm-row {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    padding: 38px;
  }

  .umkm-action {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }

  .umkm-row a {
    width: min(100%, 240px);
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .hero-meta span:last-child {
    display: none;
  }

  .hero h1 {
    max-width: 100%;
    padding: 80px 0;
    font-size: clamp(39px, 11vw, 50px);
  }

  .hero h1 br {
    display: none;
  }

  .hero-footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-footer p {
    max-width: 330px;
  }

  .work-section,
  .services-section {
    padding: 140px 0;
  }

  .about-section {
    padding: 150px 0;
  }

  .section-intro {
    margin-bottom: 72px;
  }

  .section-intro h2,
  .about-section h2,
  .start-section h2 {
    font-size: 34px;
  }

  .projects {
    gap: 140px;
  }

  .project-image {
    aspect-ratio: 4 / 3;
  }

  .project-info {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 20px;
    padding-top: 18px;
  }

  .project-info > div {
    grid-column: auto;
  }

  .project-info h3 {
    font-size: 25px;
  }

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

  .service-list span {
    margin-bottom: 38px;
  }

  .capability-line {
    margin-top: 28px;
    line-height: 2;
  }

  .about-grid {
    gap: 54px;
  }

  .stat {
    padding: 26px 18px 22px;
  }

  .stat-num {
    margin-bottom: 14px;
    font-size: clamp(46px, 15vw, 64px);
  }

  .stat-label {
    font-size: 9px;
  }

  .about-copy dl {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 54px;
  }

  .about-copy dl div {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
  }

  .start-section {
    padding: 140px 0 80px;
  }

  .start-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .start-grid .arrow-link {
    grid-column: auto;
  }

  .umkm-row {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 80px;
    padding: 32px 24px;
  }

  .umkm-label {
    margin-bottom: 28px;
  }

  .umkm-action {
    grid-column: auto;
    display: block;
  }

  .umkm-row a {
    width: 100%;
    margin-top: 28px;
  }

  .contact-section {
    padding: 180px 0 150px;
  }

  .contact-section h2 {
    font-size: 44px;
  }

  .contact-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-top: 44px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Viewport entry motion */
.enter-object {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--enter-delay, 0ms),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1) var(--enter-delay, 0ms);
}

.enter-object.is-entered {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

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

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

  .enter-object,
  .enter-object.is-entered {
    opacity: 1;
    transform: none;
    transition: none !important;
  }
}

/* Interactive line-shape system */
.shape-field {
  --shape-opacity: 1;
  opacity: 0;
  transition: opacity 500ms ease;
  user-select: none;
  -webkit-user-select: none;
}

.shape-field.is-ready {
  opacity: var(--shape-opacity);
}

.shape-field svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.shape-part {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.shape-part path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
  transition: opacity 200ms ease, stroke-width 200ms ease;
}

.shape-field:hover .shape-part path {
  stroke-width: 2.35;
}

.hero-stage {
  position: relative;
  display: flex;
  min-height: 460px;
  align-self: stretch;
  align-items: center;
  isolation: isolate;
}

.hero-stage h1 {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 70px 0;
}

.shape-field-hero {
  --shape-opacity: 0.95;
  position: absolute;
  top: 54%;
  right: -8%;
  z-index: 1;
  width: min(66vw, 920px);
  transform: translateY(-50%);
}

.shape-field-hero[data-shape-layout="identity"] {
  --shape-opacity: 1;
  position: relative;
  inset: auto;
  width: min(100%, 1040px);
  margin-inline: auto;
  transform: none;
}

.shape-field-hero[data-shape-layout="identity"] .shape-part path {
  stroke-width: 2.2;
}

.services-section {
  overflow: hidden;
}

.shape-field-section {
  --shape-opacity: 0.78;
  width: min(88%, 1040px);
  margin: 140px auto 0;
}

.contact-inner {
  position: relative;
  min-height: 520px;
  align-content: center;
  overflow: visible;
  isolation: isolate;
}

.contact-inner > :not(.shape-field) {
  position: relative;
  z-index: 2;
}

.shape-field-contact {
  --shape-opacity: 0.72;
  position: absolute;
  right: -10%;
  bottom: 3%;
  z-index: 1;
  width: min(64vw, 860px);
}

.shape-field-contact[data-shape-word="create|now"] {
  right: 0;
}

@media (min-width: 1025px) {
  .shape-field-contact[data-shape-word="create|now"] {
    bottom: -60%;
    width: min(76vw, 980px);
  }
}

@media (max-width: 1024px) {
  .hero-stage h1 {
    max-width: 560px;
  }

  .shape-field-hero {
    right: -14%;
    width: 76%;
  }

  .shape-field-contact {
    right: -18%;
    width: 76%;
  }
}

@media (max-width: 820px) {
  .hero-stage {
    min-height: 500px;
  }

  .hero-stage h1 {
    max-width: 520px;
    padding: 80px 0;
  }

  .shape-field-hero {
    top: 62%;
    right: -20%;
    width: 92%;
  }

  .shape-field-section {
    width: 105%;
    margin-top: 110px;
    margin-left: -2.5%;
  }

  .contact-inner {
    min-height: 590px;
  }

  .shape-field-contact {
    right: -24%;
    width: 92%;
  }
}

@media (max-width: 600px) {
  .hero-stage {
    display: flex;
    min-height: 420px;
  }

  .hero-stage h1 {
    max-width: 100%;
    padding: 82px 0 0;
  }

  .shape-field-hero {
    top: auto;
    right: -18%;
    bottom: 54px;
    width: 132%;
    transform: none;
  }

  .shape-field-hero[data-shape-layout="identity"] {
    width: calc(100% + 32px);
    margin-inline: -16px;
  }

  .shape-field-section {
    width: 128%;
    margin-top: 92px;
    margin-left: -14%;
  }

  .contact-inner {
    min-height: 0;
  }

  .shape-field-contact {
    position: relative;
    right: auto;
    bottom: auto;
    width: 130%;
    margin: 100px 0 0 -15%;
  }

  .shape-field-contact[data-shape-word="create|now"] {
    right: auto;
    width: calc(100% + 32px);
    margin-left: -16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shape-field,
  .shape-part {
    transition: none !important;
  }
}

/* Sesama stroke alphabet */
.shape-field .shape-part path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.shape-field.is-visible .shape-part path {
  animation: shape-letter-draw 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--draw-delay, 0ms);
}

.shape-field[data-shape-word="sesama"] {
  --shape-opacity: 0.96;
}

.shape-field[data-shape-word="understand|design|build"] {
  --shape-opacity: 0.82;
}

.shape-field[data-shape-word="create"] {
  --shape-opacity: 0.7;
}

@keyframes shape-letter-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shape-field .shape-part path,
  .shape-field.is-visible .shape-part path {
    animation: none !important;
    stroke-dashoffset: 0;
  }
}


/* Workflow words aligned with each step */
@media (max-width: 960px) {
  .service-list li {
    grid-template-columns: 46px minmax(220px, 0.65fr) minmax(320px, 1fr);
    gap: 28px;
    min-height: 270px;
  }
}

@media (max-width: 720px) {
  .service-list {
    display: flex;
    gap: 0;
  }

  .service-list li {
    grid-template-columns: 34px 1fr;
    gap: 18px 20px;
    min-height: 0;
    padding: 54px 0;
  }

  .service-list .service-number {
    margin: 0;
  }

  .service-copy {
    grid-column: 2;
  }

  .shape-field-service-word {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    margin-top: 34px;
  }
}