:root {
  --ink: #171915;
  --ink-soft: #34372f;
  --paper: #f3eee5;
  --paper-light: #fbf8f2;
  --line: rgba(23, 25, 21, 0.15);
  --muted: #696b64;
  --coral: #e65325;
  --coral-dark: #b83c19;
  --yellow: #f4bc35;
  --mint: #29d995;
  --teal: #1c7771;
  --olive: #d7d9aa;
  --white: #fffdf8;
  --shell: 1240px;
  --radius-lg: 34px;
  --radius-md: 22px;
  --shadow: 0 28px 70px rgba(23, 25, 21, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(230, 83, 37, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.sr-only {
  width: 1px;
  height: 1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  padding: 132px 0;
}

.section-kicker,
.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--coral-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}

.section-kicker.light {
  color: rgba(255, 253, 248, 0.72);
}

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

h1,
h2 {
  margin-bottom: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.045em;
}

h1 em,
h2 em {
  color: var(--coral);
  font-weight: inherit;
}

h2 {
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.98;
}

.button {
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button svg,
.text-link svg,
.contact-links svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 9px 24px rgba(23, 25, 21, 0.15);
}

.button-dark:hover {
  background: #292c25;
}

.button-coral {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 12px 30px rgba(230, 83, 37, 0.26);
}

.button-coral:hover {
  background: #f06031;
  box-shadow: 0 16px 34px rgba(230, 83, 37, 0.34);
}

.button-outline-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.22);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.09);
}

.site-header {
  width: 100%;
  height: 78px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(243, 238, 229, 0.92);
  border-bottom: 1px solid rgba(23, 25, 21, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 156px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  position: relative;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.nav-links a::after {
  width: 0;
  height: 2px;
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  background: var(--coral);
  transition: width 180ms ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  min-height: 43px;
  padding-inline: 17px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  display: none;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.menu-toggle svg {
  width: 21px;
  height: 21px;
}

.hero {
  min-height: 900px;
  padding: 170px 0 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 560px;
  height: 560px;
  top: -320px;
  left: -180px;
  background: #542630;
}

.hero::after {
  width: 690px;
  height: 690px;
  right: -380px;
  bottom: -410px;
  background: #183d3d;
}

.hero-grid {
  min-height: 620px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  align-items: center;
  gap: 80px;
}

.hero-copy-block {
  padding-bottom: 30px;
}

.eyebrow {
  color: rgba(255, 253, 248, 0.65);
}

.eyebrow span {
  width: 10px;
  height: 10px;
  background: var(--coral);
  border-radius: 3px;
  box-shadow: 16px 0 0 var(--yellow), 32px 0 0 var(--mint);
  margin-right: 32px;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(76px, 8.4vw, 126px);
  line-height: 0.84;
}

.hero-lead {
  max-width: 650px;
  margin: 38px 0 0;
  color: rgba(255, 253, 248, 0.7);
  font-size: 20px;
  line-height: 1.58;
  letter-spacing: -0.02em;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-system {
  padding: 28px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transform: rotate(1deg);
}

.hero-system::before {
  width: 210px;
  height: 210px;
  content: "";
  position: absolute;
  top: -55px;
  right: -48px;
  z-index: -1;
  border: 1px solid rgba(244, 188, 53, 0.26);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(244, 188, 53, 0.035), 0 0 0 94px rgba(244, 188, 53, 0.02);
}

.system-head {
  margin-bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-head strong {
  color: var(--white);
  font-size: 11px;
}

.system-level {
  min-height: 112px;
  padding: 18px 20px;
  position: relative;
  display: grid;
  grid-template-columns: 34px 50px 1fr;
  align-items: center;
  gap: 15px;
  color: var(--ink);
  border-radius: 20px;
}

.system-level > div:last-child {
  min-width: 0;
}

.system-level span,
.system-level strong,
.system-level small {
  display: block;
}

.system-level span {
  margin-bottom: 1px;
  opacity: 0.62;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-level strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.system-level small {
  margin-top: 5px;
  opacity: 0.66;
  font-size: 10px;
  font-weight: 700;
}

.system-index {
  opacity: 0.5;
  font-family: "Fraunces", Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.system-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 25, 21, 0.2);
  border-radius: 14px;
}

.system-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.7;
}

.system-guide {
  width: 72%;
  margin-left: auto;
  background: var(--yellow);
}

.system-cards {
  width: 86%;
  margin-left: auto;
  color: var(--white);
  background: var(--coral);
}

.system-cards .system-icon {
  border-color: rgba(255, 255, 255, 0.32);
}

.system-work {
  width: 100%;
  margin-left: auto;
  background: var(--olive);
}

.system-connector {
  height: 31px;
  margin-right: 29px;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.system-connector span {
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.33);
}

.system-connector i {
  width: 7px;
  height: 7px;
  position: absolute;
  right: -3px;
  bottom: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
}

.hero-marquee {
  width: 100%;
  height: 110px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.hero-marquee-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.14);
  font-family: "Fraunces", Georgia, serif;
  font-size: 44px;
  white-space: nowrap;
  will-change: transform;
  animation: hero-marquee 24s linear infinite;
}

.hero-marquee-group {
  min-width: 100vw;
  box-sizing: border-box;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
}

.hero-marquee-group i {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--coral);
  border-radius: 3px;
}

@keyframes hero-marquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.model {
  background: var(--paper);
}

.model-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
  align-items: end;
  gap: 90px;
}

.model h2 {
  font-size: clamp(52px, 6.2vw, 88px);
}

.model-copy {
  padding-bottom: 5px;
  color: var(--muted);
}

.model-copy p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.75;
}

.model-copy .lead-copy {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.value-axis {
  margin-top: 90px;
  padding-top: 38px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.axis-line {
  width: 100%;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  background: rgba(23, 25, 21, 0.11);
  border-radius: 999px;
}

.axis-line span {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--yellow), var(--coral) 50%, var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) 180ms;
}

.value-axis.is-visible .axis-line span {
  transform: scaleX(1);
}

.axis-point {
  position: relative;
}

.axis-point::before {
  width: 15px;
  height: 15px;
  content: "";
  position: absolute;
  top: -47px;
  left: 0;
  background: var(--paper-light);
  border: 4px solid var(--coral);
  border-radius: 4px;
}

.axis-point:first-of-type::before {
  border-color: var(--yellow);
}

.axis-point:last-of-type::before {
  border-color: var(--teal);
}

.axis-point b {
  display: block;
  color: var(--coral-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.axis-point strong {
  margin: 8px 0;
  display: block;
  font-size: 17px;
}

.axis-point span {
  max-width: 310px;
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.suite {
  padding: 132px 0;
  color: var(--white);
  background: #20221d;
}

.suite-head {
  margin-bottom: 66px;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 80px;
}

.suite-head h2 {
  color: var(--white);
}

.suite-head > p {
  max-width: 500px;
  margin-bottom: 7px;
  color: rgba(255, 253, 248, 0.61);
  font-size: 16px;
  line-height: 1.7;
}

.product-stack {
  display: grid;
  gap: 30px;
}

.product-step {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  color: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.19);
}

.guide-step {
  background: #f4bd36;
}

.cards-step {
  color: var(--white);
  background: var(--coral);
}

.work-step {
  background: var(--olive);
}

.product-copy {
  padding: 62px;
  display: flex;
  flex-direction: column;
}

.product-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-label span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 12px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.product-step h3 {
  margin: 60px 0 0;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.product-step h3 em {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
}

.guide-step h3 em,
.work-step h3 em {
  color: var(--coral-dark);
}

.cards-step h3 em {
  color: #ffd363;
}

.product-claim {
  margin: 22px 0 16px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  line-height: 1.18;
}

.product-copy > p:not(.product-claim) {
  max-width: 650px;
  margin-bottom: 0;
  opacity: 0.72;
  font-size: 15px;
  line-height: 1.72;
}

.feature-pills {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.feature-pills li {
  padding: 9px 12px;
  border: 1px solid rgba(23, 25, 21, 0.21);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.cards-step .feature-pills li {
  border-color: rgba(255, 255, 255, 0.32);
}

.product-footer {
  margin-top: auto;
  padding-top: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.text-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
}

.text-link:hover svg {
  transform: translate(2px, -2px);
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link.light {
  color: var(--white);
}

.value-meter {
  width: 160px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.value-meter span {
  height: 5px;
  background: rgba(23, 25, 21, 0.17);
  border-radius: 99px;
}

.value-meter span.active {
  background: currentColor;
}

.value-meter small {
  grid-column: 1 / -1;
  margin-top: 3px;
  opacity: 0.58;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.product-visual {
  min-width: 0;
  min-height: 100%;
  padding: 18px;
  overflow: hidden;
}

.product-visual img {
  width: 100%;
  height: 100%;
  min-height: 624px;
  object-fit: cover;
  border-radius: 24px;
}

.cards-step .product-visual img {
  background: var(--mint);
}

.product-preview {
  width: 100%;
  height: 100%;
  min-height: 624px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  isolation: isolate;
}

.product-preview svg {
  width: 1em;
  height: 1em;
  stroke-width: 1.8;
}

.product-preview::before,
.product-preview::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.preview-brand {
  display: inline-flex;
  align-items: baseline;
  color: #211f1b;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 1;
  white-space: nowrap;
}

.preview-brand > span {
  color: var(--coral);
}

.preview-brand em {
  margin-left: 2px;
  color: var(--coral-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.preview-brand--light {
  color: var(--white);
}

.preview-brand--light em {
  color: #f8c563;
}

.preview-eyebrow {
  display: block;
  color: #a54a2c;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.preview-note,
.preview-stat {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(23, 25, 21, 0.1);
  box-shadow: 0 18px 45px rgba(23, 25, 21, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.preview-note {
  gap: 7px;
  padding: 9px 11px;
  border-radius: 11px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-note svg {
  width: 15px;
  height: 15px;
  color: var(--coral);
}

.preview-stat {
  gap: 10px;
  min-width: 154px;
  padding: 11px 13px;
  border-radius: 14px;
}

.preview-stat > svg {
  width: 29px;
  height: 29px;
  padding: 7px;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--ink);
  border-radius: 9px;
}

.preview-stat span,
.preview-stat strong,
.preview-stat small {
  display: block;
}

.preview-stat strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 15px;
  line-height: 1;
}

.preview-stat small {
  margin-top: 3px;
  color: #76776f;
  font-size: 7px;
  font-weight: 700;
}

.guide-preview {
  background:
    radial-gradient(circle at 16% 17%, rgba(230, 83, 37, 0.92) 0 14%, transparent 14.2%),
    radial-gradient(circle at 92% 83%, rgba(28, 119, 113, 0.88) 0 25%, transparent 25.2%),
    #e8aa29;
}

.guide-preview::before {
  width: 76px;
  height: 154px;
  left: 24px;
  bottom: 30px;
  opacity: 0.23;
  background: repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.9) 0 5px, transparent 5px 15px);
  transform: skewY(-9deg);
}

.guide-preview::after {
  width: 240px;
  height: 240px;
  right: -155px;
  top: -135px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 253, 248, 0.07), 0 0 0 56px rgba(255, 253, 248, 0.04);
}

.guide-note {
  top: 28px;
  left: 22px;
  transform: rotate(-3deg);
}

.guide-device {
  width: min(70%, 350px);
  height: 566px;
  padding: 8px;
  position: absolute;
  top: 29px;
  left: 50%;
  z-index: 2;
  background: #10110f;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 42px;
  box-shadow: 0 32px 60px rgba(55, 31, 12, 0.31);
  transform: translateX(-48%) rotate(1.5deg);
}

.device-speaker {
  width: 92px;
  height: 23px;
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 4;
  background: #080907;
  border-radius: 99px;
  transform: translateX(-50%);
}

.guide-screen {
  height: 100%;
  overflow: hidden;
  color: #261d18;
  background: #fffaf2;
  border-radius: 34px;
}

.guide-appbar {
  height: 58px;
  padding: 10px 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.guide-appbar .preview-brand {
  font-size: 16px;
}

.language-control {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px 7px;
  font-size: 7px;
  font-weight: 900;
  background: #fff;
  border: 1px solid #eaded2;
  border-radius: 99px;
}

.language-control svg {
  width: 10px;
  height: 10px;
}

.guide-scene {
  height: 142px;
  position: relative;
  overflow: hidden;
  background: #dd5429;
}

.guide-scene::before {
  width: 100%;
  height: 45%;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #2d2823;
  clip-path: polygon(0 72%, 16% 37%, 28% 57%, 43% 20%, 56% 52%, 75% 13%, 100% 54%, 100% 100%, 0 100%);
}

.guide-sun {
  width: 94px;
  height: 94px;
  position: absolute;
  top: -25px;
  right: 24px;
  background: #f4bc35;
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(244, 188, 53, 0.16);
}

.guide-building {
  position: absolute;
  bottom: 19px;
  z-index: 2;
  background: #fff6e7;
}

.guide-building::before,
.guide-building::after {
  content: "";
  position: absolute;
  background: #2d2823;
}

.guide-building--main {
  width: 76px;
  height: 88px;
  left: 50%;
  border-radius: 28px 28px 2px 2px;
  transform: translateX(-50%);
}

.guide-building--main::before {
  width: 22px;
  height: 46px;
  left: 27px;
  bottom: 0;
  border-radius: 13px 13px 0 0;
}

.guide-building--main::after {
  width: 42px;
  height: 18px;
  left: 17px;
  top: -15px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.guide-building--left,
.guide-building--right {
  width: 54px;
  height: 57px;
}

.guide-building--left {
  left: calc(50% - 93px);
}

.guide-building--right {
  right: calc(50% - 93px);
}

.guide-building--left::before,
.guide-building--right::before {
  width: 12px;
  height: 30px;
  left: 21px;
  bottom: 0;
  border-radius: 8px 8px 0 0;
}

.stop-badge {
  width: 46px;
  height: 30px;
  position: absolute;
  left: 12px;
  bottom: 11px;
  z-index: 3;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  color: #2d2823;
  background: #fffaf2;
  border-radius: 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 13px;
  font-weight: 700;
}

.stop-badge small {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 6px;
}

.guide-content {
  padding: 17px 18px 16px;
}

.guide-content h4 {
  margin: 5px 0 7px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 23px;
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 0.97;
}

.guide-content > p {
  margin: 0;
  color: #776960;
  font-size: 8px;
  line-height: 1.45;
}

.guide-player {
  margin-top: 12px;
  padding: 12px 13px 10px;
  background: #fff;
  border: 1px solid #eaded2;
  border-radius: 15px;
  box-shadow: 0 8px 22px rgba(55, 35, 22, 0.07);
}

.player-progress {
  height: 3px;
  overflow: hidden;
  background: #eee2d7;
  border-radius: 99px;
}

.player-progress span {
  width: 38%;
  height: 100%;
  display: block;
  background: var(--coral);
  border-radius: inherit;
}

.player-times {
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
  color: #95877c;
  font-size: 6px;
}

.player-controls {
  margin-top: 5px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #806f64;
  font-size: 7px;
  font-weight: 900;
  text-align: center;
}

.player-controls b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 8px 15px rgba(230, 83, 37, 0.24);
}

.player-controls b svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.guide-next {
  margin-top: 10px;
  padding: 9px 11px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  color: #fff;
  background: #26231f;
  border-radius: 12px;
}

.guide-next span,
.guide-next strong {
  display: block;
}

.guide-next span {
  color: #aaa29a;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-next strong {
  margin-top: 1px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 10px;
}

.guide-next svg {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 14px;
  height: 14px;
  color: #f4bc35;
}

.guide-stat {
  right: 18px;
  bottom: 30px;
  transform: rotate(-2deg);
}

.guide-stat > svg {
  background: var(--teal);
}

.cards-preview {
  background: #163b37;
}

.cards-preview::before {
  width: 380px;
  height: 380px;
  left: -225px;
  bottom: -235px;
  background: rgba(41, 217, 149, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(41, 217, 149, 0.07), 0 0 0 84px rgba(41, 217, 149, 0.035);
}

.cards-preview::after {
  width: 190px;
  height: 190px;
  right: -95px;
  top: -95px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.cards-window,
.work-window {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 32px 60px rgba(4, 21, 19, 0.32);
}

.cards-window {
  inset: 38px 22px 46px;
  color: #20312f;
  background: #edf4ee;
  border-radius: 22px;
}

.preview-windowbar {
  height: 55px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cards-windowbar {
  background: #122b29;
}

.cards-windowbar .preview-brand {
  font-size: 17px;
}

.network-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #b9d1c8;
  font-size: 7px;
  font-weight: 800;
}

.network-status i,
.window-live i {
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(41, 217, 149, 0.1);
}

.cards-layout {
  height: calc(100% - 55px);
  display: grid;
  grid-template-columns: 39% 61%;
}

.cards-pass-panel {
  padding: 19px 14px;
  overflow: hidden;
  background: #f7f3e9;
  border-right: 1px solid #dce6df;
}

.digital-pass {
  min-height: 154px;
  margin-top: 10px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #e65325;
  border-radius: 15px;
  box-shadow: 0 15px 26px rgba(158, 54, 24, 0.22);
}

.digital-pass::before {
  width: 124px;
  height: 124px;
  content: "";
  position: absolute;
  right: -64px;
  top: -58px;
  border: 22px solid #f4bc35;
  border-radius: 50%;
}

.digital-pass > div:first-child,
.digital-pass > strong,
.pass-code {
  position: relative;
  z-index: 2;
}

.digital-pass span,
.digital-pass small {
  display: block;
}

.digital-pass > div:first-child span {
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.digital-pass > div:first-child small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Fraunces", Georgia, serif;
  font-size: 10px;
}

.digital-pass > strong {
  margin-top: 17px;
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 32px;
  line-height: 1;
}

.pass-code {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.pass-code svg {
  width: 19px;
  height: 19px;
}

.pass-code span {
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.pass-progress {
  margin: 11px 0 14px;
  padding: 11px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #d8dfd7;
}

.pass-progress span + span {
  padding-left: 12px;
  border-left: 1px solid #d8dfd7;
}

.pass-progress strong,
.pass-progress small {
  display: block;
}

.pass-progress strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
}

.pass-progress small {
  margin-top: -2px;
  color: #7c877f;
  font-size: 6px;
  font-weight: 800;
}

.cards-category {
  margin-top: 7px;
  padding: 8px 9px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fffdf8;
  border: 1px solid #e0e5df;
  border-radius: 9px;
}

.cards-category > svg {
  width: 25px;
  height: 25px;
  padding: 6px;
  color: #156e65;
  background: #dff1e9;
  border-radius: 7px;
}

.cards-category span,
.cards-category strong,
.cards-category small {
  display: block;
}

.cards-category strong {
  font-size: 8px;
}

.cards-category small {
  margin-top: 1px;
  color: #829088;
  font-size: 6px;
}

.territory-map {
  position: relative;
  overflow: hidden;
  background-color: #b9ddcd;
  background-image:
    linear-gradient(30deg, rgba(255, 255, 255, 0.33) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.33) 87.5%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.33) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.33) 87.5%),
    linear-gradient(30deg, rgba(255, 255, 255, 0.33) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.33) 87.5%);
  background-position: 0 0, 0 0, 28px 49px;
  background-size: 56px 98px;
}

.territory-map::before {
  width: 230px;
  height: 110%;
  content: "";
  position: absolute;
  left: 36%;
  top: -5%;
  background: rgba(234, 222, 174, 0.9);
  border-left: 8px solid rgba(255, 255, 255, 0.45);
  border-right: 8px solid rgba(255, 255, 255, 0.45);
  transform: rotate(18deg);
}

.map-routes {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  fill: none;
  stroke: rgba(19, 77, 69, 0.4);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 5 13;
}

.map-label {
  position: absolute;
  z-index: 2;
  color: rgba(20, 63, 57, 0.66);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.map-label--north {
  top: 13%;
  left: 18%;
}

.map-label--center {
  top: 42%;
  right: 8%;
}

.map-label--south {
  left: 13%;
  bottom: 18%;
}

.map-node {
  width: 34px;
  height: 34px;
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  color: #153d38;
  background: #f4bc35;
  border: 4px solid #fffdf8;
  border-radius: 11px 11px 11px 3px;
  box-shadow: 0 10px 22px rgba(26, 66, 61, 0.22);
  transform: rotate(-8deg);
}

.map-node svg {
  width: 14px;
  height: 14px;
  transform: rotate(8deg);
}

.map-node--one {
  top: 13%;
  right: 24%;
}

.map-node--two {
  top: 34%;
  left: 17%;
}

.map-node--three {
  top: 54%;
  right: 12%;
}

.map-node--four {
  left: 39%;
  bottom: 25%;
  color: #fff;
  background: #17766d;
}

.map-card {
  min-width: 224px;
  padding: 9px;
  position: absolute;
  right: 11px;
  bottom: 15px;
  z-index: 4;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 9px;
  align-items: center;
  color: #20312f;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(32, 49, 47, 0.11);
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(28, 63, 58, 0.2);
}

.map-card-art {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #e65325;
  border-radius: 8px;
}

.map-card-art svg {
  width: 23px;
  height: 23px;
}

.map-card div > small,
.map-card div > strong,
.map-card div > span {
  display: block;
}

.map-card div > small {
  color: #9b5c48;
  font-size: 5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-card div > strong {
  margin-top: 2px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 10px;
  line-height: 1.05;
}

.map-card div > span {
  margin-top: 5px;
  color: #74817b;
  font-size: 6px;
}

.map-card div > span svg {
  margin-right: 2px;
  vertical-align: -1px;
}

.cards-stat {
  right: 15px;
  bottom: 21px;
}

.cards-stat > svg {
  background: var(--coral);
}

.work-preview {
  background:
    radial-gradient(circle at 88% 14%, rgba(230, 83, 37, 0.92) 0 12%, transparent 12.3%),
    radial-gradient(circle at 10% 96%, rgba(244, 188, 53, 0.55) 0 22%, transparent 22.3%),
    #c8cb96;
}

.work-preview::before {
  width: 94px;
  height: 94px;
  right: 28px;
  bottom: 29px;
  border: 1px solid rgba(23, 25, 21, 0.19);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(23, 25, 21, 0.045), 0 0 0 36px rgba(23, 25, 21, 0.025);
}

.work-window {
  inset: 42px 14px 48px;
  color: #1d201a;
  background: #f7f5ef;
  border-color: rgba(23, 25, 21, 0.17);
  border-radius: 18px;
  box-shadow: 0 34px 60px rgba(36, 39, 25, 0.27);
}

.work-windowbar {
  height: 42px;
  padding: 0 13px;
  color: #a8aaa3;
  background: #252822;
  border-bottom: 1px solid #363a32;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 6px;
  height: 6px;
  background: #e65325;
  border-radius: 50%;
}

.window-dots i:nth-child(2) {
  background: #f4bc35;
}

.window-dots i:nth-child(3) {
  background: #8e9e6d;
}

.window-address {
  padding: 5px 21px;
  color: #8f928a;
  background: #1c1e19;
  border-radius: 99px;
  font-size: 6px;
  letter-spacing: 0.04em;
}

.window-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 6px;
  font-weight: 800;
}

.work-layout {
  height: calc(100% - 42px);
  display: grid;
  grid-template-columns: 29% 71%;
}

.work-sidebar-preview {
  padding: 17px 12px;
  color: #aeb0a7;
  background: #191b17;
}

.work-sidebar-preview .preview-brand {
  margin: 0 6px;
  font-size: 16px;
}

.workspace-switch {
  margin-top: 22px;
  padding: 8px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
  background: #252821;
  border: 1px solid #353930;
  border-radius: 9px;
}

.workspace-switch > b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #2c2e25;
  background: #d9b87c;
  border-radius: 8px;
  font-size: 7px;
}

.workspace-switch span,
.workspace-switch small,
.workspace-switch strong {
  display: block;
}

.workspace-switch small {
  color: #6f736b;
  font-size: 4px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.workspace-switch strong {
  margin-top: 2px;
  overflow: hidden;
  color: #f7f5ef;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-sidebar-preview nav {
  margin-top: 16px;
}

.work-sidebar-preview nav > span {
  min-height: 30px;
  margin-top: 2px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 7px;
  font-size: 6px;
  font-weight: 700;
}

.work-sidebar-preview nav > span.active {
  color: #fff;
  background: #2b2e27;
}

.work-sidebar-preview nav > span.active::after {
  width: 4px;
  height: 4px;
  margin-left: auto;
  content: "";
  background: var(--coral);
  border-radius: 50%;
}

.work-sidebar-preview nav > span svg {
  width: 11px;
  height: 11px;
}

.work-sidebar-preview nav > small {
  margin: 18px 8px 6px;
  display: block;
  color: #656960;
  font-size: 5px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.work-dashboard {
  min-width: 0;
  padding: 20px 18px;
  background: #f7f5ef;
}

.work-dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.work-dashboard-head h4 {
  margin: 3px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.operator-avatar {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #3c382e;
  background: #e7d5ae;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 5px 12px rgba(31, 31, 24, 0.1);
  font-size: 6px;
  font-weight: 900;
}

.work-metrics {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 7px;
}

.work-metrics article {
  min-width: 0;
  min-height: 88px;
  padding: 11px;
  color: #23251f;
  background: #fff;
  border: 1px solid #e1ddd2;
  border-radius: 11px;
}

.work-metrics article > span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #88887f;
  font-size: 5px;
  font-weight: 800;
  text-transform: uppercase;
}

.work-metrics article > span svg {
  width: 9px;
  height: 9px;
  color: var(--coral);
}

.work-metrics strong,
.work-metrics small {
  display: block;
}

.work-metrics strong {
  margin-top: 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
}

.work-metrics small {
  margin-top: 5px;
  color: #8c8c82;
  font-size: 5px;
}

.work-metrics article.metric-highlight {
  color: #fff;
  background: #252821;
  border-color: #252821;
}

.work-metrics article.metric-highlight > span,
.work-metrics article.metric-highlight small {
  color: #b7b9b1;
}

.work-metrics article.metric-highlight > span svg {
  color: #f4bc35;
}

.work-agenda {
  margin-top: 10px;
  padding: 13px;
  background: #fff;
  border: 1px solid #e1ddd2;
  border-radius: 12px;
}

.work-agenda > header {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.work-agenda h5 {
  margin: 1px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  letter-spacing: -0.02em;
}

.work-agenda > header > span {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #a54a2c;
  font-size: 5px;
  font-weight: 800;
}

.work-agenda > header > span svg {
  width: 8px;
  height: 8px;
}

.agenda-row {
  min-height: 49px;
  display: grid;
  grid-template-columns: 33px 5px 1fr auto;
  gap: 7px;
  align-items: center;
  border-top: 1px solid #eeeae1;
}

.agenda-row time {
  font-family: "Fraunces", Georgia, serif;
  font-size: 9px;
  font-weight: 600;
}

.agenda-dot {
  width: 5px;
  height: 5px;
  background: #438565;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(67, 133, 101, 0.11);
}

.agenda-dot--gold {
  background: #c5902d;
  box-shadow: 0 0 0 3px rgba(197, 144, 45, 0.11);
}

.agenda-row strong,
.agenda-row small {
  display: block;
}

.agenda-row strong {
  font-size: 7px;
}

.agenda-row small {
  margin-top: 2px;
  color: #8a8b82;
  font-size: 5px;
}

.agenda-row > b {
  font-size: 7px;
}

.work-stat {
  right: 17px;
  bottom: 22px;
}

.work-stat > svg {
  background: var(--coral);
}

.integration {
  padding: 142px 0;
  position: relative;
  overflow: hidden;
  background: var(--paper-light);
}

.integration::after {
  width: 520px;
  height: 520px;
  content: "";
  position: absolute;
  right: -300px;
  top: -280px;
  border: 1px solid rgba(28, 119, 113, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(28, 119, 113, 0.025), 0 0 0 140px rgba(28, 119, 113, 0.018);
}

.integration-heading {
  max-width: 960px;
}

.integration-heading h2 {
  font-size: clamp(56px, 7vw, 96px);
}

.integration-heading > p:last-child {
  max-width: 650px;
  margin: 28px 0 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.equation {
  margin-top: 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1.15fr);
  align-items: stretch;
  gap: 10px;
}

.equation > b {
  display: grid;
  place-items: center;
  color: rgba(23, 25, 21, 0.25);
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
}

.equation article {
  min-height: 270px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.equation article small {
  margin-top: 34px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.equation article strong {
  margin-top: 3px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  line-height: 1.1;
}

.equation article p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.equation article.equation-result {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}

.equation-result p,
.equation-result small {
  color: rgba(255, 255, 255, 0.6) !important;
}

.equation-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
}

.equation-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.7;
}

.equation-icon.guide {
  background: var(--yellow);
}

.equation-icon.cards {
  color: var(--white);
  background: var(--coral);
}

.equation-icon.work {
  background: var(--olive);
}

.equation-icon.result {
  color: var(--ink);
  background: var(--mint);
}

.engagement {
  background: var(--paper);
}

.engagement-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.engagement h2 {
  font-size: clamp(48px, 5.7vw, 78px);
}

.engagement-list {
  border-top: 1px solid var(--line);
}

.engagement-list article {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 8px 30px;
  border-bottom: 1px solid var(--line);
}

.engagement-list article > span {
  grid-row: span 2;
  color: var(--coral-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.engagement-list strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
}

.engagement-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.origin {
  padding: 0 0 132px;
  background: var(--paper);
}

.origin-card {
  min-height: 410px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) 1.32fr;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: #2a2d27;
  border-radius: var(--radius-lg);
}

.origin-visual {
  min-height: 410px;
  overflow: hidden;
  background: var(--yellow);
}

.origin-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78);
}

.origin-copy {
  padding: 60px 68px;
  align-self: center;
}

.origin-copy h2 {
  font-size: 57px;
}

.origin-copy p {
  max-width: 650px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
}

.origin-badge {
  padding: 9px 12px;
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team {
  background: var(--paper-light);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  align-items: end;
  gap: 40px 80px;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -16px;
}

.section-heading h2 {
  font-size: clamp(52px, 6.4vw, 88px);
}

.section-heading > p:last-child {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.team-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.team-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.team-card img {
  width: 100%;
  height: 315px;
  object-fit: cover;
  filter: saturate(0.82);
  transition: transform 400ms ease, filter 400ms ease;
}

.team-card:hover img {
  filter: saturate(1);
  transform: scale(1.025);
}

.team-card div {
  padding: 20px;
}

.team-card h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 21px;
}

.team-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact {
  padding: 132px 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.contact::before {
  width: 620px;
  height: 620px;
  content: "";
  position: absolute;
  left: -420px;
  bottom: -410px;
  background: #57292f;
  border-radius: 50%;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.contact-copy h2 {
  font-size: clamp(55px, 6.8vw, 90px);
}

.contact-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.7;
}

.contact-links {
  margin-top: 42px;
  display: grid;
  gap: 12px;
}

.contact-links a,
.contact-links span {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 700;
}

.contact-form {
  padding: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  color: var(--ink);
  background: var(--paper-light);
  border-radius: 28px;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.28);
}

.field {
  display: grid;
  gap: 8px;
}

.field.full,
.form-footer.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(23, 25, 21, 0.16);
  border-radius: 12px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input {
  height: 51px;
}

.field textarea {
  resize: vertical;
  min-height: 135px;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(230, 83, 37, 0.1);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.form-status {
  max-width: 270px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.form-status.success {
  color: #247551;
}

.form-status.error {
  color: #ad3519;
}

.site-footer {
  padding: 74px 0 24px;
  color: rgba(255, 255, 255, 0.62);
  background: #11130f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.8fr);
  gap: 70px;
}

.footer-brand img {
  width: 160px;
}

.footer-brand p {
  max-width: 360px;
  margin: 20px 0 0;
  font-size: 12px;
  line-height: 1.65;
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.footer-grid li,
.footer-grid a {
  font-size: 11px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 66px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1080px) {
  .nav-links {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(68px, 9vw, 100px);
  }

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

  .product-copy {
    padding: 48px;
  }

  .team-card img {
    height: 270px;
  }

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

  .equation > b {
    display: none;
  }

  .equation article.equation-result {
    grid-column: span 2;
    min-height: 220px;
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .nav-links {
    width: calc(100% - 36px);
    max-height: 0;
    padding: 0 22px;
    position: fixed;
    top: 86px;
    left: 18px;
    z-index: 101;
    display: grid;
    gap: 0;
    overflow: hidden;
    opacity: 0;
    color: var(--white);
    background: var(--ink);
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
    transition: max-height 220ms ease, padding 220ms ease, opacity 180ms ease;
  }

  .nav-links.is-open {
    max-height: 440px;
    padding-block: 12px;
    opacity: 1;
  }

  .nav-links a {
    padding: 17px 4px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-links a::after {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    min-height: 0;
    padding-top: 142px;
  }

  .hero-grid {
    min-height: 0;
    padding-bottom: 84px;
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .hero-copy-block {
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 660px;
    font-size: clamp(70px, 15vw, 104px);
  }

  .hero-lead {
    max-width: 630px;
  }

  .hero-system {
    width: min(100%, 620px);
    justify-self: end;
    transform: none;
  }

  .model-grid,
  .suite-head,
  .engagement-grid,
  .section-heading,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .model-copy {
    max-width: 700px;
  }

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

  .product-visual {
    min-height: 500px;
  }

  .product-visual img {
    min-height: 500px;
  }

  .product-preview {
    min-height: 540px;
  }

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

  .team-card img {
    height: 360px;
  }

  .section-heading .section-kicker {
    grid-column: auto;
    margin-bottom: -28px;
  }

  .section-heading > p:last-child {
    max-width: 620px;
  }

  .contact-form {
    max-width: 720px;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 76px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .section,
  .suite,
  .integration,
  .contact {
    padding: 86px 0;
  }

  .site-header {
    height: 68px;
  }

  .brand img {
    width: 132px;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    width: calc(100% - 28px);
    top: 76px;
    left: 14px;
  }

  h2,
  .model h2,
  .integration-heading h2,
  .engagement h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(43px, 13.2vw, 62px);
    line-height: 0.98;
  }

  .section-kicker,
  .eyebrow {
    margin-bottom: 17px;
    font-size: 9px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero::before {
    width: 330px;
    height: 330px;
    top: -190px;
    left: -160px;
  }

  .hero::after {
    width: 420px;
    height: 420px;
    right: -280px;
    bottom: -230px;
  }

  .hero-grid {
    padding-bottom: 64px;
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(53px, 16.3vw, 66px);
    line-height: 0.87;
    letter-spacing: -0.055em;
  }

  .hero-lead {
    margin-top: 27px;
    font-size: 16px;
    line-height: 1.57;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-system {
    padding: 16px;
    border-radius: 22px;
  }

  .system-head {
    margin-bottom: 16px;
    display: grid;
    gap: 2px;
  }

  .system-level {
    width: 100%;
    min-height: 94px;
    padding: 13px 14px;
    grid-template-columns: 25px 42px 1fr;
    gap: 10px;
    border-radius: 16px;
  }

  .system-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .system-icon svg {
    width: 19px;
    height: 19px;
  }

  .system-level strong {
    font-size: 25px;
  }

  .system-level small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .system-connector {
    height: 22px;
    margin-right: 21px;
  }

  .hero-marquee {
    height: 80px;
  }

  .hero-marquee-track {
    font-size: 30px;
    animation-duration: 18s;
  }

  .hero-marquee-group {
    gap: 20px;
  }

  .model-grid,
  .suite-head,
  .engagement-grid,
  .section-heading,
  .contact-grid {
    gap: 35px;
  }

  .model-copy .lead-copy {
    font-size: 17px;
  }

  .model-copy p {
    font-size: 13px;
  }

  .value-axis {
    margin-top: 62px;
    padding: 0 0 0 32px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .axis-line {
    width: 4px;
    height: 100%;
    top: 0;
    left: 6px;
  }

  .axis-line span {
    background: linear-gradient(180deg, var(--yellow), var(--coral) 50%, var(--teal));
    transform: scaleY(0);
    transform-origin: top;
  }

  .value-axis.is-visible .axis-line span {
    transform: scaleY(1);
  }

  .axis-point::before {
    top: 4px;
    left: -33px;
  }

  .suite-head {
    margin-bottom: 42px;
  }

  .suite-head > p {
    font-size: 13px;
  }

  .product-stack {
    gap: 18px;
  }

  .product-step {
    min-height: 0;
    border-radius: 24px;
  }

  .product-copy {
    padding: 32px 25px 28px;
  }

  .product-label {
    font-size: 8px;
  }

  .product-label span {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .product-step h3 {
    margin-top: 40px;
    font-size: clamp(43px, 14vw, 62px);
  }

  .product-claim {
    font-size: 22px;
  }

  .product-copy > p:not(.product-claim) {
    font-size: 13px;
  }

  .feature-pills {
    margin-top: 24px;
  }

  .feature-pills li {
    font-size: 9px;
  }

  .product-footer {
    margin-top: 34px;
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 22px;
  }

  .value-meter {
    width: 100%;
  }

  .product-visual {
    min-height: 330px;
    padding: 10px;
  }

  .product-visual img {
    min-height: 330px;
    border-radius: 17px;
  }

  .product-preview {
    min-height: 500px;
    border-radius: 17px;
  }

  .guide-device {
    top: -6px;
    transform: translateX(-48%) scale(0.84) rotate(1.5deg);
  }

  .guide-note {
    top: 20px;
  }

  .guide-stat {
    bottom: 20px;
  }

  .cards-window,
  .work-window {
    inset-block: 24px 38px;
  }

  .cards-window {
    inset-inline: 14px;
  }

  .work-window {
    inset-inline: 8px;
  }

  .work-metrics {
    gap: 4px;
  }

  .work-metrics article {
    min-height: 82px;
    padding: 9px 7px;
  }

  .work-metrics strong {
    font-size: 18px;
  }

  .work-metrics article.metric-highlight strong {
    font-size: 15px;
    white-space: nowrap;
  }

  .integration-heading > p:last-child {
    margin: 24px 0 0;
    font-size: 14px;
  }

  .equation {
    margin-top: 54px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .equation article,
  .equation article.equation-result {
    min-height: 220px;
    grid-column: auto;
  }

  .engagement-list article {
    padding: 24px 0;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .engagement-list article > span {
    grid-row: auto;
  }

  .origin {
    padding-bottom: 86px;
  }

  .origin-card {
    width: calc(100% - 28px);
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .origin-visual {
    min-height: 260px;
  }

  .origin-copy {
    padding: 34px 26px 38px;
  }

  .origin-copy h2 {
    font-size: 47px;
  }

  .origin-badge {
    top: 16px;
    right: 16px;
    font-size: 7px;
    background: rgba(23, 25, 21, 0.64);
    backdrop-filter: blur(10px);
  }

  .team-grid {
    margin-top: 44px;
    grid-template-columns: 1fr;
  }

  .team-card {
    display: grid;
    grid-template-columns: 125px 1fr;
    align-items: center;
  }

  .team-card img {
    width: 125px;
    height: 145px;
  }

  .contact-form {
    padding: 24px 20px;
    grid-template-columns: 1fr;
    gap: 15px;
    border-radius: 22px;
  }

  .field.full,
  .form-footer.full {
    grid-column: auto;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    margin-top: 46px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-marquee-track {
    animation: none;
  }

  .hero-marquee-group:nth-child(2) {
    display: none;
  }
}
