:root {
  --ink: #171b2b;
  --blue: #1a6fff;
  --orange: #ff5c00;
  --blue-dark: #0759e8;
  --orange-dark: #e95200;
  --blue-soft: #e5efff;
  --surface: #fff;
  --surface-muted: #f0f3f8;
  --text-secondary: #596477;
  --page-gutter: max(clamp(24px, 7.5vw, 144px), calc((100vw - 1600px) / 2));
  --paper: #f7f8fc;
  --muted: #6a7283;
  --line: #dfe4ee;
  --white: #fff;
  --sans: "DM Sans", "Noto Sans Khmer", "Noto Sans SC", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.site-header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-gutter);
  padding-right: max(var(--page-gutter), env(safe-area-inset-right));
  padding-left: max(var(--page-gutter), env(safe-area-inset-left));
  position: absolute;
  z-index: 20;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.brand-logo {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  gap: 42px;
  font-size: 14px;
}
.desktop-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.3s ease;
}
.desktop-nav a:hover:after {
  width: 100%;
}
.nav-cta {
  font-size: 14px;
  border-bottom: 1px solid var(--ink);
  padding: 9px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.nav-cta:hover,
.text-link:hover {
  color: var(--blue);
  border-color: var(--blue);
}
.nav-cta:visited,
.text-link:visited,
.partner-grid a:visited {
  color: #40506a;
}
.nav-cta > span:last-child {
  margin-left: 10px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.language-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(26, 111, 255, 0.18);
  border-radius: 999px;
  background: rgba(247, 248, 252, 0.78);
  backdrop-filter: blur(10px);
}
.language-switcher button {
  min-width: 44px;
  height: 44px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  color: #697386;
  background: transparent;
  font: 600 10px/1 var(--sans);
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}
.language-switcher button:hover {
  color: var(--ink);
}
.language-switcher button.active {
  color: #fff;
  background: var(--blue);
}
.menu-button {
  display: none;
  border: 0;
  background: none;
  padding: 10px;
  width: 44px;
  height: 44px;
}
.menu-button span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  margin: 6px;
}
.hero {
  min-height: 800px;
  height: 100vh;
  height: 100svh;
  max-height: 940px;
  padding: 140px var(--page-gutter) 70px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 30%, rgba(255, 92, 0, 0.13), transparent 29%),
    var(--paper);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: 54%;
  margin-bottom: 2vh;
}
.eyebrow,
.section-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
}
.eyebrow > span:first-child {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border: 2px solid var(--blue);
  border-radius: 50%;
}
.hero h1,
.manifesto h2,
.business h2,
.partners h2,
.contact h2 {
  font-size: clamp(54px, 6.4vw, 96px);
  letter-spacing: -0.065em;
  line-height: 1.04;
  margin: 30px 0;
  font-weight: 600;
  text-wrap: balance;
}
.hero h1 em,
.partners h2 em,
.contact h2 em {
  font-style: normal;
  color: var(--blue);
}
.hero-lead {
  font-size: 17px;
  line-height: 1.9;
  color: #656d7d;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 42px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 17px 22px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  min-height: 52px;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button:active {
  transform: translateY(0);
}
.button.primary {
  background: var(--orange);
  color: var(--ink);
}
.button.primary:hover {
  background: var(--orange-dark);
}
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #abb3c1;
  padding: 12px 0;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.text-link > span:last-child {
  margin-left: 13px;
}
.hero-visual {
  position: absolute;
  right: 5.5vw;
  width: 41vw;
  height: 620px;
  top: 51%;
  transform: translateY(-46%);
}
.orbit {
  position: absolute;
  border: 1px solid rgba(26, 111, 255, 0.13);
  border-radius: 50%;
  left: 10%;
  top: 7%;
}
.orbit-one {
  width: 520px;
  height: 520px;
}
.orbit-two {
  width: 410px;
  height: 410px;
  left: 20%;
  top: 16%;
}
.phone {
  position: absolute;
  width: 260px;
  height: 536px;
  background: #fff;
  border: 7px solid var(--ink);
  border-radius: 36px;
  box-shadow: 0 35px 80px rgba(30, 48, 79, 0.2);
  left: 28%;
  top: 4%;
  transform: rotate(3deg);
  overflow: hidden;
  z-index: 4;
}
.phone-top {
  height: 35px;
  padding: 10px 15px 0;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
}
.phone-top i {
  position: absolute;
  width: 72px;
  height: 18px;
  background: var(--ink);
  border-radius: 0 0 12px 12px;
  left: 87px;
  top: 0;
}
.phone-body {
  padding: 5px 15px;
}
.location span {
  font-size: 7px;
  display: block;
  color: #8a92a2;
}
.location b {
  font-size: 9px;
}
.search {
  background: #f0f3f8;
  border-radius: 7px;
  padding: 8px;
  margin: 12px 0;
  font-size: 8px;
  color: #8a92a2;
}
.search span {
  font-size: 13px;
  margin-right: 5px;
}
.promo {
  height: 125px;
  background: var(--orange);
  border-radius: 11px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.promo small {
  font-size: 7px;
}
.promo strong {
  font-size: 16px;
  display: block;
  line-height: 1.3;
  margin-top: 4px;
}
.phone-order {
  display: inline-block;
  font-size: 7px;
  background: var(--ink);
  color: white;
  padding: 6px 9px;
  margin-top: 8px;
  border-radius: 3px;
}
.dish {
  position: absolute;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: #fff;
  right: -14px;
  bottom: -18px;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 8px #edf0f5;
}
.dish span {
  font-size: 49px;
}
.categories {
  display: flex;
  justify-content: space-between;
  margin: 16px 2px;
}
.categories span {
  font-size: 17px;
  width: 39px;
  height: 39px;
  background: white;
  border-radius: 10px;
  display: grid;
  place-items: center;
  box-shadow: 0 5px 14px #e2e7f0;
}
.categories b {
  font-size: 7px;
  display: block;
  margin-top: 5px;
}
.nearby {
  display: flex;
  justify-content: space-between;
  margin: 15px 0 8px;
}
.nearby b {
  font-size: 11px;
}
.nearby small {
  font-size: 7px;
  color: #777;
}
.store {
  display: flex;
  gap: 10px;
  background: #fff;
  padding: 8px;
  border-radius: 9px;
}
.store-img {
  width: 55px;
  height: 55px;
  background: #fff0e8;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 27px;
}
.store div:last-child > * {
  display: block;
}
.store b {
  font-size: 9px;
  margin: 4px 0;
}
.store span {
  font-size: 6px;
  color: var(--blue);
}
.store small {
  font-size: 6px;
  color: #888;
  margin-top: 5px;
}
.floating-card {
  position: absolute;
  background: #fff;
  box-shadow: 0 15px 40px rgba(30, 48, 79, 0.14);
  z-index: 6;
}
.delivery {
  right: 0;
  top: 20%;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  width: 205px;
  border-radius: 9px;
}
.delivery .card-icon {
  width: 31px;
  height: 31px;
  background: var(--orange);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
}
.delivery small,
.delivery b {
  display: block;
  font-size: 8px;
}
.delivery small {
  color: #8b918c;
  margin-bottom: 4px;
}
.delivery b {
  font-size: 10px;
}
.delivery i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  right: 12px;
  top: 12px;
}
.dot {
  position: absolute;
  border-radius: 50%;
}
.dot-one {
  width: 12px;
  height: 12px;
  background: var(--blue);
  right: 7%;
  bottom: 21%;
}
.dot-two {
  width: 8px;
  height: 8px;
  background: var(--orange);
  left: 12%;
  top: 18%;
}
.hero-foot {
  position: absolute;
  left: 5vw;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 9px;
  letter-spacing: 0.16em;
  transform: rotate(-90deg);
  transform-origin: left center;
}
.hero-foot i {
  width: 50px;
  height: 1px;
  background: #aab2c1;
}
.manifesto,
.business,
.partners {
  padding: 120px var(--page-gutter);
}
.section-label {
  color: var(--text-secondary);
  margin-bottom: 50px;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 10vw;
  align-items: end;
}
.manifesto h2,
.business h2,
.partners h2,
.contact h2 {
  font-size: clamp(44px, 5vw, 72px);
  margin: 0;
}
.manifesto-copy p {
  color: var(--text-secondary);
  line-height: 2;
  font-size: 16px;
  margin: 0 0 25px;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 100px;
  border-top: 1px solid var(--line);
}
.values article {
  position: relative;
  padding: 35px 40px 20px 0;
  border-right: 1px solid var(--line);
  min-height: 270px;
}
.values article + article {
  padding-left: 40px;
}
.values article:last-child {
  border-right: 0;
}
.values article > span {
  position: absolute;
  right: 25px;
  color: var(--text-secondary);
  font-size: 10px;
}
.value-icon {
  font-size: 34px;
  color: var(--blue);
  height: 75px;
}
.values h3 {
  font-size: 20px;
}
.values p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 280px;
}
.business {
  background: linear-gradient(145deg, #1264e8 0%, #0e59d5 66%, #0847bd 100%);
  color: #fff;
}
.business .section-label {
  color: #fff;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: end;
}
.section-heading > p {
  color: #fff;
  font-size: 16px;
  line-height: 1.9;
}
.business-card {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: #f7f8fc;
  color: var(--ink);
  min-height: 520px;
}
.business-info {
  padding: 60px;
}
.status {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #65728c;
}
.status > span:first-child {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 8px;
}
.business-info h3 {
  font-size: 44px;
  margin: 30px 0 20px;
  letter-spacing: -0.05em;
}
.business-info > p:not(.status) {
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 16px;
  max-width: 420px;
}
.business-info ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  font-size: 14px;
  margin: 30px 0 40px;
}
.business-info li i {
  font-style: normal;
  background: #e5efff;
  color: var(--blue);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.button.light {
  border: 1px solid #cbd4e3;
}
.business-scene {
  position: relative;
  overflow: hidden;
  background: #e4e9f2;
  isolation: isolate;
}
.city-map {
  position: absolute;
  inset: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  border: 0;
  filter: saturate(0.62) contrast(0.92) brightness(1.04);
  pointer-events: none;
}
.map-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(226, 234, 247, 0.3), transparent 42%),
    linear-gradient(180deg, rgba(247, 248, 252, 0.22), transparent 35%);
  pointer-events: none;
}
.map-city {
  position: absolute;
  z-index: 4;
  left: 28px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(30, 48, 79, 0.14);
  backdrop-filter: blur(8px);
}
.map-city b {
  color: var(--blue);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.map-city span {
  color: #596477;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.delivery-route {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.delivery-route path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 0.7;
  stroke-linecap: round;
  stroke-dasharray: 1.2 2.1;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.85));
  animation: route-flow 8s linear infinite;
}
@keyframes route-flow {
  to {
    stroke-dashoffset: -24;
  }
}
.map-marker {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  transform: translate(-50%, -100%);
  filter: drop-shadow(0 9px 12px rgba(30, 48, 79, 0.2));
}
.marker-bubble {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #fff;
  border: 4px solid #fff;
  border-radius: 50% 50% 50% 9px;
  transform: rotate(-45deg);
  box-shadow: inset 0 0 0 1px rgba(26, 111, 255, 0.12);
}
.marker-bubble svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(45deg);
}
.marker-label {
  position: absolute;
  left: calc(100% + 8px);
  top: 50%;
  padding: 6px 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(26, 111, 255, 0.1);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-50%);
  white-space: nowrap;
  backdrop-filter: blur(7px);
}
.merchant-marker {
  left: 20%;
  top: 27%;
}
.customer-marker {
  left: 82%;
  top: 77%;
}
.customer-marker .marker-bubble {
  background: var(--orange);
  border-color: #fff;
  color: var(--ink);
}
.customer-marker .marker-label {
  right: calc(100% + 8px);
  left: auto;
}
.courier-marker {
  left: 51%;
  top: 48%;
}
.courier-marker .marker-bubble {
  background: var(--blue);
  color: #fff;
  box-shadow: none;
}
.courier-marker .marker-bubble::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(26, 111, 255, 0.42);
  border-radius: 50%;
  animation: marker-pulse 2.4s ease-out infinite;
}
@keyframes marker-pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.72);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}
.eta {
  position: absolute;
  z-index: 4;
  right: 8%;
  top: 9%;
  background: white;
  padding: 15px 18px;
  box-shadow: 0 10px 25px rgba(30, 48, 79, 0.18);
}
.eta span {
  font-size: 11px;
  color: #596477;
  display: block;
}
.eta strong {
  font-size: 26px;
  color: var(--blue);
}
.eta small {
  font-size: 11px;
}
.coming {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 0;
  padding: 28px 35px;
  display: flex;
  align-items: center;
  gap: 50px;
}
.coming span {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #fff;
}
.coming p {
  margin: 0;
  color: #fff;
  font-size: 15px;
}
.coming i {
  margin-left: auto;
  font-style: normal;
  font-size: 26px;
  color: var(--orange);
}
.partners h2 {
  max-width: 850px;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 70px;
}
.partner-grid article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.partner-no {
  font-size: 12px;
  color: var(--text-secondary);
}
.partner-art {
  height: 210px;
  background: #edf1f7;
  margin: 25px 0 30px;
  position: relative;
  overflow: hidden;
}
.partner-grid h3 {
  font-size: 21px;
}
.partner-grid p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  min-height: 70px;
}
.partner-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #aaa;
  padding-bottom: 5px;
  transition: color 0.2s ease;
}
.partner-grid a:hover {
  color: var(--blue);
}
.shop-art:before {
  content: "";
  position: absolute;
  width: 160px;
  height: 115px;
  background: #fff;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px #d3dae7;
}
.shop-art:after {
  content: "";
  position: absolute;
  width: 190px;
  height: 45px;
  background: repeating-linear-gradient(
    90deg,
    var(--blue) 0 25px,
    var(--orange) 25px 50px
  );
  left: 50%;
  bottom: 110px;
  transform: translateX(-50%);
  clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
}
.shop-art div {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 47px;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  padding: 7px 13px;
  font-size: 8px;
  letter-spacing: 0.15em;
}
.shop-art i {
  position: absolute;
  z-index: 2;
  background: #dce6f6;
  width: 35px;
  height: 63px;
  bottom: 0;
}
.shop-art i:nth-of-type(1) {
  left: calc(50% - 65px);
}
.shop-art i:nth-of-type(2) {
  left: calc(50% - 18px);
  width: 36px;
  background: #fff;
}
.shop-art i:nth-of-type(3) {
  right: calc(50% - 65px);
}
.rider-art {
  background: #fff0e8;
}
.rider-art:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 35px solid var(--blue);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -42%);
  clip-path: inset(0 0 50% 0);
}
.rider-art div {
  position: absolute;
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 50%;
  color: white;
  display: grid;
  place-items: center;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  font-size: 26px;
}
.rider-art i {
  position: absolute;
  width: 90%;
  height: 1px;
  background: #ffc3a1;
  bottom: 30px;
  left: 5%;
}
.ecosystem-art {
  background: var(--blue);
  color: var(--orange);
}
.ecosystem-art div {
  font-size: 170px;
  line-height: 200px;
  text-align: center;
}
.ecosystem-art i {
  position: absolute;
  font-style: normal;
  font-size: 40px;
  top: 25px;
  left: 50px;
}
.ecosystem-art b {
  position: absolute;
  font-size: 32px;
  right: 48px;
  bottom: 30px;
}
.contact {
  min-height: 590px;
  background:
    radial-gradient(circle at 88% 22%, rgba(255, 92, 0, 0.1), transparent 24%),
    radial-gradient(
      circle at 72% 86%,
      rgba(26, 111, 255, 0.09),
      transparent 28%
    ),
    #fff;
  border-top: 1px solid var(--line);
  padding: 100px var(--page-gutter);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.contact-inner {
  position: relative;
  z-index: 2;
  width: 62%;
}
.contact .section-label {
  color: var(--orange);
  margin-bottom: 30px;
}
.contact h2 {
  font-size: clamp(52px, 6.4vw, 92px);
}
.contact-inner > p:not(.section-label) {
  max-width: 560px;
  line-height: 1.8;
  font-size: 17px;
  color: var(--text-secondary);
}
.button.dark {
  background: var(--orange);
  color: var(--ink);
  margin-top: 25px;
}
.button.dark:hover {
  background: var(--orange-dark);
}
.contact-mark {
  position: absolute;
  right: 5%;
  bottom: -16%;
  width: 320px;
  height: 410px;
  display: flex;
  gap: 25px;
  align-items: flex-end;
  transform: rotate(12deg);
}
.contact-mark i {
  display: block;
  width: 82px;
  background: rgba(26, 111, 255, 0.1);
  border-radius: 50px 50px 10px 10px;
  transform: skew(-10deg);
}
.contact-mark i:nth-child(1) {
  height: 180px;
}
.contact-mark i:nth-child(2) {
  height: 290px;
}
.contact-mark i:nth-child(3) {
  height: 400px;
}
footer {
  background: #111827;
  color: white;
  padding: 70px var(--page-gutter) 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.footer-brand .brand-logo {
  width: 72px;
  height: 72px;
}
.footer-brand p {
  color: #b3bdcf;
  font-size: 13px;
  margin-top: 23px;
}
.footer-address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  max-width: 450px;
  margin-top: 24px;
  font-style: normal;
}
.footer-address span {
  color: #aab5c8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-address a {
  color: #c4cad5;
  font-size: 13px;
  line-height: 1.75;
  transition: color 0.2s ease;
}
.footer-address a:hover {
  color: #fff;
}
.footer-address a:visited {
  color: #adb7c8;
}
.footer-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
}
.footer-phone span {
  color: #aab5c8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-phone a {
  color: #c4cad5;
  font-size: 13px;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.footer-phone a:hover {
  color: #fff;
}
.footer-phone a:visited {
  color: #adb7c8;
}
.footer-links {
  display: flex;
  gap: 110px;
  justify-self: end;
}
.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
}
.footer-links b {
  font-size: 12px;
  color: #aab5c8;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.16em;
}
.footer-links a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: #c4cad5;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #fff;
}
.footer-links a:visited {
  color: #adb7c8;
}
.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid #293247;
  margin-top: 60px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #a6b0c2;
}
html[lang="km"] .hero h1,
html[lang="km"] .manifesto h2,
html[lang="km"] .business h2,
html[lang="km"] .partners h2,
html[lang="km"] .contact h2 {
  letter-spacing: -0.025em;
  line-height: 1.35;
}
html[lang="km"] .hero h1 {
  font-size: clamp(44px, 5.2vw, 78px);
}
html[lang="km"] .section-label,
html[lang="km"] .eyebrow,
html[lang="km"] .coming span {
  letter-spacing: 0.08em;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.24s;
}
@media (max-width: 900px) {
  .site-header {
    height: 72px;
    padding: 0 24px;
  }
  .desktop-nav,
  .nav-cta {
    display: none;
  }
  .header-actions {
    gap: 8px;
  }
  .menu-button {
    display: block;
  }
  .site-header.open {
    position: fixed;
    background: var(--paper);
  }
  .site-header.open .desktop-nav {
    display: flex;
    position: fixed;
    inset: 72px 0 0;
    background: var(--paper);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }
  .hero {
    height: auto;
    min-height: auto;
    padding: 112px 24px 32px;
    display: block;
  }
  .hero-copy {
    width: 100%;
  }
  .hero h1 {
    font-size: 52px;
    margin: 25px 0;
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-actions {
    gap: 20px;
    flex-wrap: wrap;
  }
  .hero-visual {
    position: relative;
    width: calc(100% + 48px);
    height: 560px;
    right: auto;
    left: -24px;
    top: auto;
    bottom: auto;
    margin-top: 36px;
    transform: none;
  }
  .phone {
    left: 50%;
    transform: translateX(-50%) rotate(2deg);
    width: 240px;
    height: 495px;
  }
  .orbit-one {
    width: 420px;
    height: 420px;
    left: 50%;
    transform: translateX(-50%);
  }
  .orbit-two {
    width: 330px;
    height: 330px;
    left: 50%;
    transform: translateX(-50%);
  }
  .delivery {
    right: 3%;
    top: 18%;
    width: 170px;
  }
  .hero-foot {
    display: none;
  }
  .manifesto,
  .business,
  .partners {
    padding: 80px 24px;
  }
  .manifesto-grid,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .manifesto h2,
  .business h2,
  .partners h2 {
    font-size: 43px;
  }
  .values {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
  .values article,
  .values article + article {
    padding: 30px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 220px;
  }
  .business-card {
    grid-template-columns: 1fr;
  }
  .business-info {
    padding: 40px 25px;
  }
  .business-scene {
    min-height: 410px;
  }
  .partner-grid {
    grid-template-columns: 1fr;
  }
  .partner-grid article {
    margin-bottom: 30px;
  }
  .partner-grid p {
    min-height: auto;
  }
  .contact {
    padding: 75px 24px;
    min-height: 590px;
  }
  .contact-inner {
    width: 100%;
  }
  .contact-mark {
    opacity: 0.5;
    right: -27%;
    width: 240px;
  }
  .footer-brand {
    margin-bottom: 45px;
  }
  footer {
    padding: 55px 24px 25px;
    grid-template-columns: 1fr;
  }
  .footer-links {
    justify-self: start;
    gap: 80px;
  }
  .footer-bottom {
    gap: 20px;
    flex-direction: column;
  }
  .contact h2 {
    font-size: 54px;
  }
}
@media (max-width: 520px) {
  .site-header {
    padding: 0 24px;
  }
  .brand {
    min-width: 44px;
  }
  .brand-logo {
    width: 44px;
    height: 44px;
  }
  .language-switcher button {
    min-width: 44px;
    padding: 0 7px;
    font-size: 10px;
  }
  .menu-button {
    padding: 7px 2px;
  }
  .hero h1 {
    font-size: 45px;
  }
  html[lang="km"] .hero h1 {
    font-size: 39px;
  }
  .delivery {
    right: -18px;
  }
  .phone {
    width: 220px;
  }
  .business-info ul {
    grid-template-columns: 1fr;
  }
  .marker-bubble {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
  .marker-bubble svg {
    width: 18px;
    height: 18px;
  }
  .marker-label {
    padding: 5px 7px;
    font-size: 10px;
  }
  .contact h2 {
    font-size: 47px;
  }
  .button {
    gap: 17px;
  }
  .footer-links {
    gap: 50px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .button {
    transition: none;
  }
  .language-switcher button,
  .desktop-nav a:after,
  .nav-cta,
  .text-link,
  .partner-grid a,
  .footer-links a {
    transition: none;
  }
  .delivery-route path,
  .courier-marker .marker-bubble::before {
    animation: none;
  }
}
