@font-face {
  font-family: ElegantHebrew;
  src: url("assets/fonts/noto-hebrew-300.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: ElegantHebrew;
  src: url("assets/fonts/noto-hebrew-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: ElegantHebrew;
  src: url("assets/fonts/noto-hebrew-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: ElegantHebrew;
  src: url("assets/fonts/noto-hebrew-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: BrandSerif;
  src: url("assets/fonts/cormorant-italic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
:root {
  --paper: #fbf6fc;
  --ink: #302337;
  --muted: #78657e;
  --pink: #f3b5de;
  --hot: #995282;
  --line: #e6dce9;
  --night: #2c2138;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --display: ElegantHebrew, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background:
    radial-gradient(ellipse at 100% 20%, #efdaf08f, transparent 40%),
    radial-gradient(ellipse at 0% 64%, #eadffca6, transparent 42%), var(--paper);
  color: var(--ink);
  font-family: ElegantHebrew, sans-serif;
  font-size: 17px;
  line-height: 1.65;

  font-weight: 400;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--hot);
  outline-offset: 6px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.2;
}
h2 {
  font-size: clamp(40px, 4.65vw, 70px);
  letter-spacing: -1.8px;
  text-wrap: balance;
}
h2 em {
  font-style: normal;
  color: transparent;

  background: linear-gradient(110deg, #60416f 4%, #a74783 55%, #725395 100%);

  background-clip: text;

  -webkit-background-clip: text;

  font-weight: 500;
}
p + p {
  margin-top: 18px;
}
button[hidden],
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1200px, 86%);
  margin-inline: auto;
}
.section {
  padding-block: 88px;
}
.section-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 0.7px;
  margin-bottom: 34px;
  color: var(--muted);
}
.tiny-star {
  font-size: 26px;
  color: var(--hot);
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.3px;
}
.skip-link {
  position: fixed;
  top: -100px;
  right: 20px;
  z-index: 50;
  background: var(--paper);
  padding: 12px 20px;
}
.skip-link:focus {
  top: 15px;
}
.header {
  height: 88px;
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 4%;
  background: linear-gradient(110deg, #fdf8fdea, #f2eafbdf, #fff8f5ed);
  transition:
    box-shadow 0.4s,
    background 0.4s;
  border-bottom: 1px solid transparent;

  backdrop-filter: blur(18px);
}
.header.scrolled {
  background: linear-gradient(110deg, #fdf8fdfa, #f2eafbfa, #fff8f5fa);
  backdrop-filter: blur(16px);
  box-shadow: 0 7px 30px #3a173b08;
  border-color: var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.wordmark {
  display: block;
  font-family: BrandSerif, serif;
  font-size: 51px;
  letter-spacing: -2.2px;
  font-weight: 500;
  text-align: left;
  position: relative;

  font-style: italic;
}
.brand-dot {
  color: var(--hot);
}
.wordmark small {
  display: block;
  font:
    8px ElegantHebrew,
    sans-serif;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 0px;

  font-style: normal;
}
.header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 400;
}
.header nav > a {
  position: relative;
  padding-block: 8px;
  transition: color 0.25s;
}
.header nav > a:hover {
  color: var(--hot);
}
.header nav > a:not(.nav-contact):after {
  content: "";
  position: absolute;
  inset: auto 0 3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.header nav > a:hover:after {
  transform: scaleX(1);
}
.nav-contact {
  padding: 10px 19px !important;
  border: 1px solid #d9c2df;
  border-radius: 999px;
  display: flex;
  gap: 22px;
  align-items: center;

  background: linear-gradient(120deg, #fffdfde0, #f1e6f6f0);

  box-shadow:
    inset 0 1px 0 #fff,
    0 5px 16px #734b9110;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  isolation: isolate;
  aspect-ratio: 16/9;
  width: calc(100% - 40px);
  max-width: 1680px;
  margin: 0 auto;
  background: #354331;
  color: white;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;

  box-shadow: 0 15px 65px #a0789d1c;
}
.hero-poster,
.hero-video,
.hero-motion-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-poster {
  z-index: -3;
}
.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.hero-video,
.hero-motion-image {
  z-index: -2;
  object-fit: contain;
  opacity: 0;
}
.hero-video.ready,
.hero-motion-image.ready {
  opacity: 1;
}
.hero-shade {
  z-index: -1;
  background: linear-gradient(
    0deg,
    #18201820,
    transparent 22%,
    #101a1017 60%,
    transparent
  );
}
.hero-content {
  padding: 55px 20px;
  max-width: 1100px;
  width: 100%;
  text-align: center;
}
.hero .eyebrow {
  margin-bottom: 22px;
  text-shadow: 0 2px 8px #000b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-weight: 400;

  letter-spacing: 0.7px;
}
.hero .eyebrow > span {
  width: 5px;
  height: 5px;
  background: #ffd1e7;
  box-shadow: 0 0 0 4px #fff2f929;
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(45px, 5.8vw, 89px);
  line-height: 1.12;
  letter-spacing: -2.5px;
  text-shadow:
    0 2px 8px #0004,
    0 10px 25px #0003,
    0 20px 45px #0003;

  font-weight: 300;
}
.hero h1 span {
  display: block;
}
.hero h1 .hero-accent {
  color: white;

  font-weight: 500;

  letter-spacing: -2.6px;
}
.hero-description {
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.85;
  margin-top: 25px;
  text-shadow:
    0 2px 8px #000c,
    0 5px 20px #0008;

  font-weight: 300;
}
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 29px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 27px;
  padding: 9px 24px 9px 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 56px;
  font-size: 14px;
  font-weight: 500;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s,
    background 0.4s;

  position: relative;

  isolation: isolate;
}
.button span {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.4s var(--ease);

  display: grid;

  place-items: center;

  width: 36px;

  height: 36px;

  border-radius: 50%;

  background: #ffffff8a;

  color: #674577;

  font-weight: 300;

  box-shadow: inset 0 1px 1px #fff9;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px #ce94d04a;
}
.button:hover span {
  transform: rotate(-8deg) translate(-1px, -1px);
}
.button:active {
  transform: translateY(1px);
}
.button-pink {
  background: linear-gradient(
    115deg,
    #fff5fc 0%,
    #f9d9f0 36%,
    #e3d5f7 76%,
    #f6eafc 100%
  );
  color: #483052;
  border-color: #fff9;
  box-shadow:
    inset 0 1px 0 #fff,
    0 8px 32px #35203526;
}
.button-dark {
  background: linear-gradient(115deg, #4b305d, #76527e 60%, #975f8d);
  color: #fff;

  border-color: #dfbce073;

  box-shadow:
    inset 0 1px 0 #f8dfff40,
    0 10px 25px #4f315d1c;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-block: 8px;
  font-size: 14px;
  border-bottom: 1px solid #ffffff70;
  transition: gap 0.4s var(--ease);
}
.text-link:hover {
  gap: 28px;
}
.text-link.dark {
  border-color: #b48fa5;
  color: var(--ink);
}
.hero-bottom {
  position: absolute;
  inset: auto 32px 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  font-size: 11px;
  text-shadow: 0 2px 8px #000;
}
.hero-note {
  letter-spacing: 0.9px;
}
.scroll-hint {
  position: absolute;
  left: calc(50% - 15px);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  font-size: 25px;
}
.video-toggle {
  background: #29202c80;
  border: 1px solid #ffffff80;
  border-radius: 99px;
  padding: 7px 13px;
  font-size: 10px;
  min-height: 32px;
  color: white;
  margin-inline-start: auto;

  border-color: #ead9ef8c;

  font-weight: 300;
}
.frame-corner {
  width: 20px;
  height: 20px;
  position: absolute;
  border-color: #ffffffe0;
  border-style: solid;
  pointer-events: none;
}
.corner-start {
  top: 20px;
  right: 20px;
  border-width: 1px 1px 0 0;
}
.corner-end {
  bottom: 20px;
  left: 20px;
  border-width: 0 0 1px 1px;
}
.capability-strip {
  max-width: 1680px;
  width: calc(100% - 40px);
  margin: auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 15px;
  padding: 24px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 400;

  background: linear-gradient(110deg, #faf3fb20, #f1e3f45c, #eae3f751);

  border-radius: 0 0 12px 12px;
}
.capability-strip > span:nth-child(even) {
  color: var(--hot);
  font-size: 19px;
}
.positioning {
  padding-block: 82px 75px;
}
.positioning-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 12%;
  align-items: center;
}
.positioning h2 {
  font-size: clamp(48px, 5.4vw, 78px);
}
.positioning-copy > p:first-child {
  font-size: 22px;
  line-height: 1.7;
  font-weight: 400;
}
.positioning-copy > p:nth-child(2) {
  color: var(--muted);
  max-width: 460px;
  font-size: 16px;
}
.positioning-copy .text-link {
  margin-top: 18px;
}
.services {
  background:
    radial-gradient(ellipse at 95% 0%, #91637d36, transparent 65%),
    linear-gradient(122deg, #302539 0%, #3b2b49 52%, #292131 100%);
  color: #fcf0f7;
  width: calc(100% - 40px);
  max-width: 1680px;
  padding: 70px max(6%, calc((100% - 1200px) / 2));
  border-radius: 18px;
  position: relative;

  box-shadow:
    inset 0 1px 0 #e3bddc2b,
    0 15px 45px #39234610;
}
.services:before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #ba8baf33;
  border-radius: inherit;
  pointer-events: none;
}
.services h2 em {
  color: transparent;

  background: linear-gradient(100deg, #fff1f8, #ecc5ee 60%, #d7c5fb);

  background-clip: text;

  -webkit-background-clip: text;
}
.services .section-label {
  color: #bbaab8;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 40px;
}
.section-heading > p {
  font-size: 15px;
  max-width: 320px;
  color: var(--muted);
}
.services .section-heading > p {
  color: #c7b7c6;
}
.service {
  border-top: 1px solid #c3a6bd30;
  transition: background 0.4s;
}
.service:last-child {
  border-bottom: 1px solid #c3a6bd30;
}
.service summary {
  list-style: none;
  display: grid;
  grid-template-columns: 45px 1.2fr 1fr 30px;
  gap: 18px;
  align-items: center;
  cursor: pointer;
  padding: 25px 8px;
  transition:
    color 0.4s,
    padding 0.4s var(--ease);
}
.service summary::-webkit-details-marker {
  display: none;
}
.service summary:hover {
  color: var(--pink);
  padding-inline: 14px;
}
.number {
  font-family: ElegantHebrew, sans-serif;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: #e4aacb;
  text-align: right;
  direction: ltr;
}
.service h3 {
  font-family: ElegantHebrew, sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.15;
}
.service-caption {
  font-size: 13px;
  color: #c2b0bf;
}
.plus {
  width: 27px;
  height: 27px;
  border: 1px solid #92758a;
  border-radius: 50%;
  position: relative;
  transition:
    transform 0.4s,
    background 0.4s;
}
.plus:before,
.plus:after {
  content: "";
  position: absolute;
  top: 12px;
  left: 7px;
  width: 11px;
  height: 1px;
  background: currentColor;
  transition: transform 0.4s;
}
.plus:after {
  transform: rotate(90deg);
}
details[open] .plus:after {
  transform: rotate(0);
}
details[open] .plus {
  background: var(--pink);
  color: var(--night);
  border-color: var(--pink);
}
details[open] h3 {
  color: var(--pink);
}
.service-body {
  padding: 0 71px 27px;
  max-width: 830px;
  animation: panel-in 0.45s var(--ease);
}
.service-body p {
  color: #d5c8d2;
  font-size: 15px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-block: 17px 9px;
}
.tags span {
  border: 1px solid #c2a9bc45;
  padding: 2px 9px;
  border-radius: 2px;
  font-size: 11px;
}
.service .text-link.dark {
  color: #ffcae7;
  border-color: #c992b5;
  font-size: 12px;
}
.custom {
  padding-block: 90px;
  background:
    radial-gradient(ellipse at 25% 60%, #e2cef18c, transparent 65%),
    linear-gradient(120deg, #f4e5f442, transparent 60%, #fff1f563);
}
.custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: center;
}
.custom .eyebrow {
  color: var(--hot);
  margin-bottom: 20px;
}
.custom-copy {
  max-width: 420px;
  color: var(--muted);
  font-size: 16px;
  margin-block: 24px;
}
.custom .text-link {
  border-color: var(--line);
}
.connections {
  height: 370px;
  position: relative;
  direction: ltr;
}
.connections:before {
  content: "";
  position: absolute;
  inset: 20% 22%;
  background: linear-gradient(135deg, #fefcff7a, #efdff982);
  border: 1px solid #eac1d9;
  transform: rotate(-8deg);
  border-radius: 25px;
  box-shadow:
    0 25px 65px #a47ab71a,
    inset 0 1px 0 #fff;

  border-color: #d8b9df;
}
.connections svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.connections path {
  fill: none;
  stroke: #c883af;
  stroke-width: 1;
  stroke-dasharray: 350;
  stroke-dashoffset: 0;
}
.motion-ready .connections:not(.visible) path {
  stroke-dashoffset: 350;
}
.connections.visible path {
  transition: stroke-dashoffset 1.4s var(--ease) 0.2s;
}
.node {
  position: absolute;
  transform: translate(-50%, -50%);
  background: linear-gradient(130deg, #fffafe, #f1e9f7);
  border: 1px solid #d9acc7;
  box-shadow: 0 5px 20px #c59bb712;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 12px;
  color: #65445b;
  white-space: nowrap;

  border-color: #d8c4df;
}
.n1 {
  top: 17.5%;
  left: 14%;
}
.n2 {
  top: 17.5%;
  left: 86%;
}
.n3 {
  top: 50%;
  left: 10%;
}
.n4 {
  top: 50%;
  left: 90%;
}
.n5 {
  top: 82.5%;
  left: 14%;
}
.n6 {
  top: 82.5%;
  left: 86%;
}
.core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: linear-gradient(130deg, #fff7fd 0%, #efd0e9 40%, #ccb8e8 100%);
  border: 1px solid #fff7;
  box-shadow:
    inset 0 2px 0 #fffd,
    0 12px 40px #9c6fac3b;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 500;
}
.core > span {
  font-size: 31px;
  color: #9c4a7d;
  line-height: 1.2;
}
.core small {
  font-size: 10px;
  font-weight: 400;
  margin-top: 5px;
}
.projects {
  padding-block: 15px 85px;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.project-art {
  height: 350px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.6s var(--ease);
}
.project-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.project:hover .project-art img {
  transform: scale(1.03);
}
.art-web {
  background:
    radial-gradient(ellipse at 20% 10%, #fff7fd90, transparent 65%),
    linear-gradient(125deg, #e4c6ec, #f2bede 56%, #c7b9e4);
  color: #693f72;
}
.art-system {
  background: linear-gradient(135deg, #34283f, #73557a 70%, #af82a3);
  color: #f4daec;
}
.art-caption {
  position: absolute;
  right: 24px;
  top: 20px;
  font-size: 11px;
  z-index: 2;
  letter-spacing: 0.6px;
}
.art-index {
  position: absolute;
  left: 20px;
  bottom: 17px;
  font:
    11px ElegantHebrew,
    sans-serif;
}
.design-study {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  font-family: ElegantHebrew, sans-serif;
  font-size: clamp(70px, 7vw, 110px);
  letter-spacing: -4px;
  transform: rotate(-7deg);

  font-weight: 300;
}
.design-study:before,
.design-study:after {
  content: "";
  position: absolute;
  inset: 38px 18%;
  border: 1px solid #fff7;
  transform: rotate(18deg);
  pointer-events: none;
}
.design-study:after {
  transform: rotate(28deg);
}
.design-study > span {
  position: relative;
  z-index: 1;
  text-shadow: 0 4px 0 #ffe6f142;
}
.system-study {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: ElegantHebrew, sans-serif;
  font-size: 62px;
  line-height: 1.16;

  font-weight: 300;
}
.system-study em {
  font-style: normal;
  color: #fff0fa;
}
.system-study:before {
  content: "";
  position: absolute;
  inset: 15% 10%;
  border: 1px solid #bf90b075;
  transform: skewY(-8deg);
  border-radius: 4px;
}
.system-study:after {
  content: "+";
  position: absolute;
  left: 20%;
  top: 20%;
  font:
    30px ElegantHebrew,
    sans-serif;
  color: #bd79a4;
}
.project-title {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  margin-top: 20px;
}
.project-title h3 {
  font-family: ElegantHebrew, sans-serif;
  font-size: 20px;
  font-weight: 500;
}
.project-title > span {
  font-size: 11px;
  color: var(--muted);
}
.project > p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 7px;
}
.project-status {
  display: inline-block;
  font-size: 10px;
  color: var(--hot);
  margin-top: 10px;
  border-bottom: 1px solid #d4a8c3;
}
.project > .text-link {
  margin-top: 12px;
}
.about {
  border-top: 1px solid var(--line);
  padding-block: 65px 85px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 10%;
}
.about-lead {
  font-size: 23px;
  font-weight: 400;
  line-height: 1.6;
}
.about-lead + p {
  font-size: 16px;
  color: var(--muted);
}
.values {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.values li {
  border-top: 1px solid var(--line);
  padding: 12px 0;
  font-size: 14px;
}
.values li:before {
  content: "+";
  font:
    17px ElegantHebrew,
    sans-serif;
  color: var(--hot);
  margin-inline-end: 14px;
}
.contact {
  background:
    radial-gradient(ellipse at 20% 30%, #fffaffc7, transparent 60%),
    linear-gradient(118deg, #ecdaef 0%, #f4cee3 38%, #d3c7ec 76%, #ede1f4 100%);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  padding-block: 78px;
}
.contact:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, #fff8, transparent 65%);
  z-index: -1;
}
.contact .eyebrow {
  color: #874c70;
  margin-bottom: 22px;
}
.contact h2 {
  font-size: clamp(56px, 7.1vw, 108px);
  letter-spacing: -2.8px;

  font-weight: 300;
}
.contact h2 em {
  color: transparent;

  background: linear-gradient(110deg, #5a3a70, #a3568a 55%, #61497e);

  background-clip: text;

  -webkit-background-clip: text;

  font-weight: 400;
}
.contact p:not(.eyebrow) {
  margin-block: 24px;
  font-size: 16px;
}
.contact-pending {
  font-size: 12px;
  color: #764a65;
  display: inline-block;
  border-top: 1px solid #c19aae;
  padding-top: 14px;
}
.contact-orbit {
  position: absolute;
  top: 70px;
  left: calc(50% - 380px);
  width: 760px;
  height: 330px;
  border: 1px solid #ac619634;
  border-radius: 50%;
  transform: rotate(-18deg);
  z-index: -1;
}
.contact-orbit:after {
  content: "";
  position: absolute;
  inset: -50px 80px;
  border: 1px solid #ac61961c;
  border-radius: 50%;
  transform: rotate(32deg);
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-block: 30px;

  padding-bottom: 110px;

  flex-wrap: wrap;
}
.footer-wordmark {
  font:
    italic 500 44px BrandSerif,
    serif;
  letter-spacing: -2px;
}
.footer nav {
  display: flex;
  gap: 25px;
  font-size: 12px;
}
.footer small {
  font-size: 10px;
  color: var(--muted);
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}
.motion-ready .reveal.visible {
  opacity: 1;
  transform: none;
}
.motion-ready .service.reveal:nth-child(2) {
  transition-delay: 0.06s;
}
.motion-ready .service.reveal:nth-child(3) {
  transition-delay: 0.12s;
}
.entering h1 span,
.entering .hero-enter {
  animation: text-in 1.1s var(--ease) both;
}
.entering h1 span:first-child {
  animation-delay: 0.16s;
}
.entering h1 span:nth-child(2) {
  animation-delay: 0.3s;
}
.entering h1 span:nth-child(3) {
  animation-delay: 0.45s;
}
.entering .hero-description {
  animation-delay: 0.65s;
}
.entering .hero-actions {
  animation-delay: 0.8s;
}
.entering .hero .eyebrow {
  animation-delay: 0s;
}
@keyframes text-in {
  from {
    opacity: 0;
    transform: translateY(25px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}
@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1720px) {
  .header {
    max-width: 1760px;
    margin: auto;
  }
  .hero-content {
    padding-block: 90px;
  }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .hero-content {
    padding: 34px 20px 47px;
  }
  .hero h1 {
    font-size: 5.4vw;
  }
  .hero .eyebrow {
    font-size: 10px;
    margin-bottom: 14px;
  }
  .hero-description {
    font-size: 14px;
    margin-top: 18px;
  }
  .hero-actions {
    margin-top: 19px;
    gap: 22px;
  }

  .hero-bottom {
    bottom: 14px;
  }
  .hero-note {
    font-size: 9px;
  }
  .service summary {
    grid-template-columns: 30px 1fr 26px;
  }
  .service-caption {
    display: none;
  }
  .service-body {
    padding-inline: 56px 20px;
  }
  .section {
    padding-block: 68px;
  }
  .header nav {
    gap: 24px;
  }
  .project-art {
    height: 300px;
  }
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }
  .header {
    height: 76px;
    padding-inline: 6%;
  }
  .wordmark {
    font-size: 33px;
    letter-spacing: -2.5px;
  }
  .wordmark small {
    font-size: 7px;
    letter-spacing: 2.2px;
  }
  .menu-toggle {
    display: block;
    background: none;
    border: 1px solid #c8aabc;
    border-radius: 3px;
    width: 43px;
    height: 40px;
    position: relative;
  }
  .menu-toggle span {
    position: absolute;
    height: 1px;
    width: 19px;
    background: currentColor;
    top: 15px;
    left: 11px;
    transition: transform 0.35s var(--ease);
  }
  .menu-toggle span + span {
    top: 23px;
  }
  .menu-open .menu-toggle span {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-open .menu-toggle span + span {
    transform: translateY(-4px) rotate(-45deg);
  }
  .header nav {
    display: none;
    position: absolute;
    top: 76px;
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 22px 6% 30px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 20px #4a214615;
  }
  .header.menu-open nav {
    display: flex;
    animation: panel-in 0.35s var(--ease);
  }
  .header nav > a {
    font-size: 20px;
    padding: 10px 0;
  }
  .nav-contact {
    max-width: 220px;
  }
  .hero {
    width: calc(100% - 24px);
    aspect-ratio: 9/16;
    border-radius: 4px;
  }
  .hero-content {
    padding: 68px 15px 72px;
  }
  .hero h1 {
    font-size: clamp(36px, 10.6vw, 76px);
    line-height: 1.05;
    letter-spacing: -1.1px;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.5px;
    gap: 6px;
    margin-bottom: 22px;
  }
  .hero .eyebrow > span {
    width: 4px;
    height: 4px;
    box-shadow: 0 0 0 3px #fff3;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.65;
    margin: 23px auto 0;
    max-width: 290px;
  }
  .hero-description br {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
  }

  .hero-bottom {
    inset: auto 18px 20px;
    height: 30px;
  }
  .hero-note {
    display: none;
  }
  .hero-bottom .scroll-hint {
    position: static;
    font-size: 22px;
  }
  .video-toggle {
    font-size: 10px;
    min-height: 30px;
    padding: 5px 9px;
  }
  .frame-corner {
    width: 13px;
    height: 13px;
  }
  .corner-start {
    top: 16px;
    right: 16px;
  }
  .corner-end {
    bottom: 16px;
    left: 16px;
    display: none;
  }
  .capability-strip {
    width: calc(100% - 24px);
    padding: 20px 4px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 11px 8px;
    font-size: 11px;
    text-align: center;
  }
  .capability-strip > span:nth-child(4) {
    display: none;
  }
  .capability-strip > span:nth-child(6) {
    grid-column: 2;
  }
  .capability-strip > span:nth-child(5) {
    grid-row: 2;
    grid-column: 1;
  }
  .capability-strip > span:nth-child(7) {
    grid-row: 2;
    grid-column: 3;
  }
  .capability-strip > span:nth-child(even) {
    font-size: 15px;
  }
  .wrap {
    width: 86%;
  }
  .section {
    padding-block: 56px;
  }
  .section-label {
    font-size: 10px;
    margin-bottom: 25px;
  }
  .section-label > span:last-child:not(:first-child):not(.tiny-star) {
    max-width: 130px;
    text-align: left;
  }
  h2 {
    font-size: 43px;
    letter-spacing: -1px;
  }
  .positioning-body,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .positioning h2 {
    font-size: 49px;
  }
  .positioning-copy > p:first-child {
    font-size: 22px;
  }
  .positioning-copy > p:nth-child(2) {
    font-size: 15px;
  }
  .services {
    width: calc(100% - 24px);
    padding: 43px 7%;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    margin-top: 21px;
    font-size: 14px;
  }
  .service summary {
    grid-template-columns: 22px 1fr 25px;
    gap: 10px;
    padding: 23px 0;
  }
  .service summary:hover {
    padding-inline: 0;
  }
  .service h3 {
    font-size: 21px;
  }
  .service-caption {
    display: none;
  }
  .service-body {
    padding: 0 0 24px;
  }
  .service-body p {
    font-size: 14px;
  }
  .service .text-link {
    font-size: 12px;
  }
  .tags span {
    font-size: 10px;
  }
  .custom-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .custom-copy {
    font-size: 15px;
    max-width: 350px;
  }
  .connections {
    height: 300px;
    max-width: 400px;
    width: 96%;
    margin-inline: auto;
  }
  .node {
    padding: 7px 9px;
    font-size: 11px;
  }
  .core {
    width: 118px;
    height: 118px;
    font-size: 17px;
    border-radius: 14px;
  }
  .core > span {
    font-size: 26px;
  }
  .projects {
    padding-top: 10px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .project-art {
    height: 300px;
  }
  .design-study {
    font-size: 83px;
  }
  .system-study {
    font-size: 60px;
  }
  .project-title {
    margin-top: 17px;
    align-items: flex-start;
  }
  .project-title h3 {
    font-size: 20px;
  }
  .project-title > span {
    font-size: 10px;
  }
  .project > p {
    font-size: 12px;
  }
  .about-lead {
    font-size: 23px;
  }
  .about-lead + p {
    font-size: 15px;
  }
  .values li {
    font-size: 13px;
  }
  .contact h2 {
    font-size: 60px;
    letter-spacing: -1.5px;
  }
  .contact p:not(.eyebrow) {
    font-size: 14px;
    max-width: 300px;
    margin-inline: auto;
  }
  .contact .eyebrow {
    font-size: 10px;
    letter-spacing: 0.5px;
  }
  .contact-orbit {
    width: 460px;
    height: 240px;
    left: calc(50% - 230px);
    top: 55px;
  }
  .footer {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer nav {
    gap: 20px;
  }
  .footer small {
    width: 100%;
  }
  .footer-wordmark {
    font-size: 29px;
  }
}
@media (max-width: 360px) {
  .hero .eyebrow {
    font-size: 8px;
  }
  .hero h1 {
    font-size: 33px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero-content {
    padding-block: 58px;
  }
  .hero-actions {
    margin-top: 18px;
  }
  .hero .eyebrow {
    margin-bottom: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-video,
  .hero-motion-image {
    display: none;
  }
  .connections path {
    stroke-dashoffset: 0 !important;
  }
}
.services summary:focus-visible {
  outline-color: #ffbce2;
}
.hero a:focus-visible,
.hero button:focus-visible {
  outline-color: #fff;
}

.footer-whatsapp {
  font-size: 12px;
  color: #724976;
  border-bottom: 1px solid #d3afcf;
  padding-bottom: 4px;
}
@media (max-width: 768px) {
  .wordmark {
    font-size: 44px;
    letter-spacing: -2px;
  }
  .wordmark small {
    font-size: 7px;
  }
  .hero h1 {
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -1.7px;
    font-size: clamp(33px, 9.7vw, 72px);
  }
  .hero h1 .hero-accent {
    letter-spacing: -1.9px;
  }

  .hero-description {
    font-size: 12px;
    line-height: 1.9;
  }
  .hero-actions {
    gap: 12px;
  }

  .button span {
    width: 33px;
    height: 33px;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .service h3 {
    font-size: 19px;
  }

  .footer-wordmark {
    font-size: 37px;
  }
}

@media (max-width: 360px) {
  .hero-content {
    padding-block: 36px 50px;
  }
  .hero .eyebrow {
    margin-bottom: 12px;
  }
  .hero-description {
    margin-top: 16px;
  }
}

/* One centered action group: a primary button, then two quieter links. */
.hero .hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: min(100%, 252px);
  margin-inline: auto;
  gap: 4px;
}
.hero-actions > .button {
  min-height: 54px;
  padding: 8px 20px 8px 10px;
  gap: 14px;
  border: 1px solid #fff9;
  background: linear-gradient(115deg, #fff6fb, #f4dfea 65%, #eee3f4);
  box-shadow:
    inset 0 1px 0 #fff,
    0 6px 24px #29142e1f;
  font-size: 13px;
  font-weight: 500;
}
.hero-actions > .button span {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  font-size: 18px;
  background: #ffffff70;
  box-shadow: none;
}
.hero-actions > .text-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 14px;
  gap: 9px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-shadow:
    0 1px 5px #152215,
    0 2px 12px #152215b3;
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.hero-actions > .text-link {
  margin-top: 3px;
}
.hero-actions > .text-link span {
  font-size: 15px;
}
@media (hover: hover) {
  .hero-actions > .text-link:hover {
    background: #ffffff14;
    transform: translateY(-1px);
  }
}
.hero-actions > .text-link:active {
  transform: translateY(1px);
}
@media (min-width: 769px) and (max-width: 1100px) {
  .hero-content {
    padding-block: 14px 42px;
  }
  .hero .eyebrow {
    margin-bottom: 6px;
  }
  .hero h1 {
    font-size: 4.2vw;
  }
  .hero-description {
    font-size: 12px;
    line-height: 1.65;
    margin-top: 10px;
  }
  .hero .hero-actions {
    margin-top: 12px;
    width: 232px;
    gap: 2px;
  }
  .hero-actions > .button {
    min-height: 48px;
    padding-block: 6px;
  }
}
@media (max-width: 768px) {
  .hero .hero-actions {
    width: min(100%, 238px);
  }
  .hero-actions > .button {
    font-size: 12px;
    min-height: 52px;
  }
}
@media (max-width: 360px) {
  .hero .hero-actions {
    margin-top: 14px;
    gap: 2px;
  }
  .hero-actions > .button {
    min-height: 48px;
  }
}
