:root {
  --bg: #f3f1ec;
  --ink: #111111;
  --muted: #6d6a63;
  --line: rgba(17, 17, 17, 0.12);
  --paper: rgba(255, 255, 255, 0.78);
  --paper-solid: #ffffff;
  --dark: #0a0a0a;
  --dark-soft: #1b1b1b;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 30px 80px rgba(20, 18, 15, 0.15);
  --max: 1180px;
}

* {
  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;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.95), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(210, 210, 198, 0.6), transparent 28%),
    linear-gradient(135deg, #f7f5ef 0%, var(--bg) 48%, #e7e3da 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.menu-open,
body.is-loading {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: #111;
  color: #fff;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(194, 194, 183, 0.18) 45%, transparent 70%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 30%;
  pointer-events: none;
  filter: blur(4px);
  z-index: 0;
  transition: opacity 0.4s ease;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #090909;
  color: #f8f8f2;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.8s ease;
}

.preloader.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.preloader__inner {
  width: min(520px, calc(100vw - 48px));
}

.preloader__line {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 18px;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.preloader__line strong {
  color: #fff;
}

.preloader__bar {
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  margin-top: 20px;
  overflow: hidden;
}

.preloader__bar i {
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
  transition: width 0.15s ease;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  width: min(var(--max), calc(100vw - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(247, 245, 239, 0.75);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(20, 18, 15, 0.08);
  transition: transform 0.45s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
}

.logo {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 210px;
}

.logo span:last-child {
  display: grid;
  line-height: 1.05;
}

.logo strong {
  font-size: 14px;
  letter-spacing: -0.02em;
}

.logo small {
  color: var(--muted);
  font-size: 11px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-weight: 760;
  letter-spacing: -0.06em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.brand-mark--large {
  width: 54px;
  height: 54px;
  font-size: 24px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.desktop-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  transition: color 0.25s ease, background 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--ink);
  background: rgba(17, 17, 17, 0.08);
}

.menu-button {
  border: 0;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 11px 14px 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.menu-button i {
  width: 18px;
  height: 10px;
  display: block;
  position: relative;
}

.menu-button i::before,
.menu-button i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
  background: #fff;
  transition: transform 0.25s ease;
}

.menu-button i::before { top: 1px; }
.menu-button i::after { bottom: 1px; }

.mobile-menu {
  position: fixed;
  z-index: 60;
  inset: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 28px;
  background: #090909;
  color: #fff;
  transform: translateY(-110%);
  transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

.mobile-menu p {
  color: rgba(255, 255, 255, 0.56);
  margin: 0 0 34px;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: clamp(28px, 8vw, 72px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.mobile-menu a span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.46);
  letter-spacing: 0;
}

main {
  position: relative;
  z-index: 1;
}

.section {
  width: min(var(--max), calc(100vw - 28px));
  margin: 0 auto;
  padding: 118px 0;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: 30px;
  align-items: center;
  padding-top: 128px;
  position: relative;
}

.hero__grid {
  position: absolute;
  inset: 92px -80px 20px;
  z-index: -1;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 40%, #000, transparent 68%);
  animation: gridFloat 12s linear infinite;
}

@keyframes gridFloat {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-44px, -44px, 0); }
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(54px, 8.8vw, 124px);
  line-height: 0.88;
  letter-spacing: -0.085em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 6.2vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

h3 {
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.lead,
.section-copy p,
.partnership-card p,
.role-card p {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 20px;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button--dark {
  background: #111;
  color: #fff;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.17);
}

.button--light {
  background: rgba(255, 255, 255, 0.72);
}

.workspace-card,
.system-board,
.service-screen,
.app-card,
.partnership-card,
.role-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.workspace-card {
  align-self: stretch;
  display: grid;
  gap: 12px;
  min-height: 580px;
}

.workspace-card__top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.workspace-card__top span {
  min-height: 70px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.workspace-card__panel {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(145deg, #111 0%, #0c0c0c 58%, #26251f 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  gap: 7px;
}

.window-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.workspace-card__title {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.workspace-card__title .brand-mark {
  background: #fff;
  color: #111;
}

.workspace-card__title small,
.metric-row small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.54);
}

.radar {
  position: absolute;
  left: 50%;
  top: 51%;
  width: min(76%, 360px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 0 2px, transparent 3px),
    repeating-radial-gradient(circle, transparent 0 54px, rgba(255, 255, 255, 0.08) 55px 56px),
    conic-gradient(from 0deg, rgba(255, 255, 255, 0.2), transparent 38%, rgba(255, 255, 255, 0.08), transparent 70%);
  animation: spin 18s linear infinite;
}

.radar::before,
.radar::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.radar::after {
  transform: rotate(90deg);
}

.radar span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.8);
}

.radar span:nth-child(1) { left: 28%; top: 32%; }
.radar span:nth-child(2) { right: 20%; top: 46%; }
.radar span:nth-child(3) { left: 50%; bottom: 18%; }
.radar span:nth-child(4) { right: 35%; top: 18%; }

.radar b {
  position: absolute;
  inset: 45%;
  border-radius: 50%;
  background: #fff;
}

@keyframes spin {
  to { rotate: 360deg; }
}

.metric-row {
  position: absolute;
  inset: auto 22px 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.metric-row div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.metric-row strong {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
}

.ticker__track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 14px 0;
  animation: marquee 28s linear infinite;
}

.ticker__track span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.48);
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.split,
.apps,
.careers,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 32px;
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 120px;
}

.system-board {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  padding: 12px;
}

.board-tabs,
.service-menu {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.board-tabs button,
.service-menu button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--muted);
  padding: 10px 14px;
  font-size: 13px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.board-tabs button:hover,
.service-menu button:hover {
  transform: translateY(-1px);
}

.board-tabs button.active,
.service-menu button.active {
  background: #111;
  color: #fff;
}

.board-panel {
  position: relative;
  min-height: 520px;
  margin-top: 12px;
  padding: 24px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.34)),
    radial-gradient(circle at 50% 38%, rgba(0, 0, 0, 0.08), transparent 36%);
  border: 1px solid var(--line);
}

.corner-arrow {
  position: absolute;
  right: 22px;
  top: 20px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
}

.board-panel p:last-child {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.board-visual {
  position: absolute;
  inset: 130px 34px 120px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  overflow: hidden;
}

.board-visual::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 50%;
  animation: pulse 3.4s ease-in-out infinite;
}

.board-visual i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 0 0 9px rgba(17, 17, 17, 0.08);
}

@keyframes pulse {
  50% { transform: scale(1.07); opacity: 0.55; }
}

.features,
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 0;
}

.feature-card,
.service-card {
  min-height: 230px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card span,
.service-card span {
  color: var(--muted);
}

.feature-card p,
.service-card p,
.app-card p {
  color: var(--muted);
  line-height: 1.5;
}

.app-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.app-card {
  min-height: 280px;
  padding: 22px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 45px rgba(20, 18, 15, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}

.app-card::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(circle, rgba(17, 17, 17, 0.08), transparent 62%);
  transition: transform 0.5s ease;
}

.app-card:hover::before {
  transform: translateY(20px) scale(1.12);
}

.app-card--primary {
  grid-row: span 2;
  min-height: 572px;
  background: #111;
  color: #fff;
}

.app-card--primary p,
.app-card--primary span {
  color: rgba(255, 255, 255, 0.62);
}

.app-card strong {
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.08em;
  line-height: 0.92;
  margin-bottom: 16px;
}

.app-icon {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #111;
  font-weight: 800;
  letter-spacing: -0.07em;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.app-icon--dark {
  background: #111;
  color: #fff;
}

.app-icon--line {
  background: transparent;
  border: 1px solid var(--line);
}

.services {
  padding-bottom: 64px;
}

.service-layout {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 12px;
}

.service-menu {
  align-content: start;
}

.service-screen {
  min-height: 330px;
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, #111, #191919),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2), transparent 22%);
  color: #fff;
  box-shadow: var(--shadow);
}

.service-screen p {
  margin: 24px 0 14px;
  color: rgba(255, 255, 255, 0.56);
}

.service-screen ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-screen li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.partnership {
  padding-top: 64px;
}

.partnership-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  padding: clamp(24px, 4vw, 54px);
  border-radius: 36px;
  background: #111;
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.partnership-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -65%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 62%);
}

.partnership-card .eyebrow,
.partnership-card p {
  color: rgba(255, 255, 255, 0.62);
}

.score-card {
  position: relative;
  z-index: 1;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.score-card small {
  color: rgba(255, 255, 255, 0.56);
}

.score-card strong {
  font-size: clamp(72px, 10vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.score-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.score-tags span,
.country-cloud span,
.role-card b {
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--muted);
  font-size: 13px;
}

.score-tags span {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.country-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.careers {
  align-items: stretch;
}

.role-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.64);
  min-height: 390px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.role-card__nav {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  margin-bottom: auto;
}

.role-card > span {
  color: var(--muted);
  margin-bottom: 12px;
}

.role-card div:last-child {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.contact {
  padding-bottom: 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(290px, 0.98fr);
  gap: 12px;
}

.contact-form,
.address-card {
  padding: 22px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 45px rgba(20, 18, 15, 0.08);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: var(--muted);
  font-size: 13px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 14px 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(17, 17, 17, 0.34);
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.06);
}

.form-status {
  margin: 0;
  min-height: 20px;
  color: var(--muted);
}

.address-card {
  font-style: normal;
}

.address-card dl {
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.address-card div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.address-card dt {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 6px;
}

.address-card dd {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.copy-button {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #111;
  color: #fff;
  min-height: 46px;
  padding: 0 16px;
}

.footer {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100vw - 28px));
  margin: 0 auto 16px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
}

.footer div {
  display: grid;
}

.footer span,
.footer p {
  color: var(--muted);
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .site-header {
    top: 10px;
    width: calc(100vw - 20px);
  }

  .logo {
    min-width: 0;
  }

  .hero,
  .split,
  .apps,
  .careers,
  .contact,
  .partnership-card,
  .service-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .workspace-card {
    min-height: auto;
  }

  .workspace-card__panel {
    min-height: 440px;
  }

  .features,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .section {
    width: calc(100vw - 20px);
    padding: 78px 0;
  }

  .hero {
    padding-top: 116px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 82px);
  }

  h2 {
    font-size: clamp(36px, 12vw, 58px);
  }

  .workspace-card__top,
  .metric-row,
  .features,
  .service-grid,
  .app-stack {
    grid-template-columns: 1fr;
  }

  .workspace-card__top span {
    min-height: 52px;
  }

  .workspace-card__panel,
  .board-panel,
  .app-card--primary {
    min-height: 390px;
  }

  .board-visual {
    inset: 122px 18px 130px;
  }

  .mobile-menu {
    inset: 10px;
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .cursor-glow {
    display: none;
  }
}
