:root {
  --ink: #111c30;
  --ink-soft: #24324a;
  --paper: #f7f5ee;
  --white: #ffffff;
  --line: rgba(17, 28, 48, 0.13);
  --blue: #456cf6;
  --blue-deep: #2d4cd4;
  --lime: #c8f45b;
  --coral: #ff7c66;
  --muted: #687287;
  --shadow: 0 24px 70px rgba(26, 38, 68, 0.13);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

.page-glow {
  position: absolute;
  z-index: -1;
  top: -170px;
  right: -80px;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 108, 246, 0.18), rgba(69, 108, 246, 0) 68%);
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: min(1180px, calc(100% - 48px));
  height: 92px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}

.brand-name strong {
  font-size: 23px;
  letter-spacing: -0.06em;
}

.brand em {
  color: var(--blue);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 31px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav > a:not(.button) {
  position: relative;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1.5px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  display: grid;
  min-height: 720px;
  padding: 70px 0 112px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 22px;
  align-items: center;
  gap: 10px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow-brand {
  letter-spacing: 0.04em;
  text-transform: none;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(200, 244, 91, 0.2);
}

.hero h1,
.section-heading h2,
.login-copy h2,
.approach-copy h2,
.story-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.hero h1 {
  font-size: clamp(64px, 7vw, 92px);
}

.hero h1 span {
  position: relative;
  color: var(--blue);
}

.hero h1 span::after {
  position: absolute;
  right: 3px;
  bottom: -4px;
  left: 2px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
  opacity: 0.85;
}

.hero-lead {
  max-width: 540px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(69, 108, 246, 0.25);
  color: white;
}

.button-primary:hover {
  background: var(--blue-deep);
  box-shadow: 0 15px 35px rgba(69, 108, 246, 0.33);
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-login {
  border: 1px solid rgba(17, 28, 48, 0.12);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.button-login:hover {
  box-shadow: 0 12px 24px rgba(17, 28, 48, 0.1);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  transition: transform 0.2s ease;
}

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

.hero-proof {
  display: flex;
  margin-top: 48px;
  gap: 42px;
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-proof strong {
  font-size: 13px;
}

.hero-proof span {
  color: var(--muted);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 50px 0 42px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(69, 108, 246, 0.14);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.orbit-one {
  top: -15px;
  right: 20px;
  width: 490px;
  height: 490px;
}

.orbit-one::after {
  top: 65px;
  right: 56px;
}

.orbit-two {
  right: 105px;
  bottom: 4px;
  width: 350px;
  height: 350px;
}

.orbit-two::after {
  bottom: 22px;
  left: 72px;
  background: var(--lime);
}

.app-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 108%;
  border: 1px solid rgba(17, 28, 48, 0.09);
  border-radius: 21px;
  background: white;
  box-shadow: 0 36px 90px rgba(29, 43, 80, 0.2);
  transform: rotate(1.2deg);
}

.window-bar {
  display: flex;
  height: 53px;
  padding: 0 18px;
  border-bottom: 1px solid #e9ecf2;
  align-items: center;
  justify-content: space-between;
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
}

.mini-logo {
  display: grid;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--blue);
  color: white;
  font-size: 10px;
  place-items: center;
}

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

.window-actions span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c4c9d3;
}

.window-layout {
  display: grid;
  min-height: 398px;
  grid-template-columns: 54px 1fr;
}

.mock-sidebar {
  display: flex;
  padding-top: 24px;
  background: #142038;
  align-items: center;
  flex-direction: column;
  gap: 19px;
}

.side-pill {
  width: 17px;
  height: 17px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 5px;
}

.side-pill.active {
  border-color: var(--lime);
  background: var(--lime);
}

.mock-content {
  padding: 25px;
  background: #f7f8fc;
}

.mock-heading,
.chart-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-heading div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mock-heading small,
.metric-card small,
.chart-labels small,
.activity-row small,
.floating-card small {
  color: #8991a1;
  font-size: 8px;
}

.mock-heading strong {
  font-size: 18px;
}

.status-chip {
  padding: 6px 9px;
  border-radius: 30px;
  background: #e3f6c6;
  color: #4d701a;
  font-size: 8px;
  font-weight: 700;
}

.metric-grid {
  display: grid;
  margin-top: 19px;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-card {
  display: grid;
  min-height: 76px;
  padding: 13px;
  border: 1px solid #e9ebf1;
  border-radius: 11px;
  background: white;
  grid-template-columns: 1fr auto;
  gap: 5px;
}

.metric-card small {
  grid-column: 1 / -1;
}

.metric-card strong {
  font-size: 19px;
}

.trend {
  align-self: end;
  color: #7d8697;
  font-size: 7px;
}

.trend.positive {
  color: #4b8a29;
}

.chart-card {
  padding: 15px 15px 0;
  margin-top: 12px;
  border: 1px solid #e9ebf1;
  border-radius: 11px;
  background: white;
}

.chart-labels span {
  font-size: 9px;
  font-weight: 700;
}

.chart {
  height: 110px;
  margin-top: 8px;
  background-image: linear-gradient(#eef0f5 1px, transparent 1px);
  background-size: 100% 27px;
}

.chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-area {
  fill: url(#chartFill);
}

.chart-line {
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.activity-row {
  display: grid;
  padding: 12px 14px;
  margin-top: 12px;
  border: 1px solid #e9ebf1;
  border-radius: 11px;
  background: white;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
}

.activity-icon {
  display: grid;
  width: 25px;
  height: 25px;
  border-radius: 8px;
  background: #e3f6c6;
  color: #56801b;
  font-size: 10px;
  place-items: center;
}

.activity-row div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.activity-row strong,
.activity-count {
  font-size: 8px;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  border: 1px solid rgba(17, 28, 48, 0.08);
  background: white;
  box-shadow: 0 17px 38px rgba(26, 38, 68, 0.17);
}

.floating-sync {
  right: -56px;
  bottom: 18px;
  padding: 13px 17px;
  border-radius: 13px;
  align-items: center;
  gap: 11px;
}

.floating-icon {
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: var(--lime);
  font-size: 11px;
  place-items: center;
}

.floating-sync div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-sync strong {
  font-size: 10px;
}

.floating-stock {
  top: 23px;
  right: 34px;
  padding: 14px 18px;
  border-radius: 13px;
  flex-direction: column;
  gap: 3px;
}

.floating-stock strong {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  letter-spacing: -0.05em;
}

.floating-stock span {
  color: #56801b;
  font-size: 8px;
}

.trust-strip {
  display: flex;
  min-height: 68px;
  padding: 15px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 74px);
  color: #748096;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.trust-strip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.login-section {
  padding-top: 82px;
}

.login-panel {
  display: grid;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(17, 28, 48, 0.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 10%, rgba(200, 244, 91, 0.32), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #eef2ff 100%);
  box-shadow: 0 22px 70px rgba(32, 48, 86, 0.1);
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 46px;
}

.login-copy h2 {
  max-width: 650px;
  font-size: clamp(42px, 4.6vw, 62px);
}

.login-copy p {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.login-flow {
  display: flex;
  margin-top: 30px;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.login-flow span {
  display: inline-flex;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(69, 108, 246, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  align-items: center;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
}

.login-flow i {
  width: 28px;
  height: 1px;
  background: rgba(69, 108, 246, 0.35);
}

.login-card {
  display: flex;
  padding: 28px;
  border: 1px solid rgba(17, 28, 48, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(29, 43, 80, 0.13);
  flex-direction: column;
  gap: 16px;
}

.login-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-card-top div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.login-card-top strong {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  letter-spacing: -0.035em;
}

.login-card-top small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.login-options {
  display: grid;
  padding: 5px;
  border-radius: 14px;
  background: #eef1f7;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.login-option {
  min-height: 38px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.login-option.is-active {
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 22px rgba(17, 28, 48, 0.15);
}

.login-card label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.login-card label span {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
}

.login-card input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(17, 28, 48, 0.13);
  border-radius: 13px;
  outline: 0;
  background: #f8f9fc;
  color: var(--ink);
}

.login-card input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(69, 108, 246, 0.1);
}

.login-card .button {
  width: 100%;
}

.login-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.login-note.success {
  color: #3f6213;
}

.apps-section {
  padding-top: 140px;
  padding-bottom: 140px;
}

.section-heading {
  display: grid;
  margin-bottom: 62px;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 80px;
}

.section-heading h2 {
  font-size: clamp(48px, 5vw, 68px);
}

.section-heading p {
  max-width: 470px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.product-featured {
  min-height: 490px;
  padding: 38px;
  background:
    radial-gradient(circle at 90% 120%, rgba(69, 108, 246, 0.56), transparent 38%),
    var(--ink);
  color: white;
  grid-column: 1 / -1;
  flex-direction: row;
}

.featured-copy {
  position: relative;
  z-index: 3;
  display: flex;
  width: 56%;
  flex-direction: column;
}

.product-featured .product-icon {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #17233b;
  color: white;
}

.product-featured .product-number {
  color: rgba(255, 255, 255, 0.4);
}

.product-featured .product-kicker {
  color: var(--lime);
}

.product-featured .product-copy {
  max-width: 570px;
}

.product-featured .product-copy h3 {
  color: white;
  font-size: clamp(42px, 5vw, 60px);
}

.product-featured .product-copy p {
  min-height: auto;
  color: #c1cad9;
}

.product-featured .product-copy ul {
  max-width: 520px;
}

.product-featured .product-copy li {
  border-color: rgba(255, 255, 255, 0.13);
  color: #e1e6ef;
}

.product-featured .product-copy li::before {
  border-color: var(--lime);
}

.product-featured .product-copy li::after {
  border-color: var(--lime);
}

.product-featured .card-link {
  border-color: white;
  color: white;
}

.status-flagship {
  border-color: rgba(200, 244, 91, 0.32);
  background: var(--lime);
  color: #29410a;
}

.status-planned {
  background: rgba(255, 255, 255, 0.58);
  color: #7d667c;
}

.status-service {
  background: #e4dcf6;
  color: #5c3c84;
}

.flagship-visual {
  position: absolute;
  top: 48px;
  right: 48px;
  bottom: 48px;
  width: 38%;
}

.flagship-decision {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 92%;
  min-height: 300px;
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 23px;
  background: white;
  box-shadow: 0 28px 70px rgba(2, 8, 19, 0.3);
  color: var(--ink);
  opacity: 1;
  transform: perspective(900px) rotateY(0) rotate(-2deg);
  transform-origin: center;
  transition:
    transform 0.24s ease,
    opacity 0.2s ease;
}

.flagship-decision.is-flipping {
  opacity: 0;
  transform: perspective(900px) rotateY(88deg) rotate(-2deg);
}

.flagship-decision > span {
  color: #ca5746;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flagship-decision h4 {
  margin: 12px 0 4px;
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  letter-spacing: -0.045em;
}

.flagship-decision > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.flagship-value {
  display: flex;
  padding: 18px;
  margin-top: 25px;
  border-radius: 14px;
  background: #edf1ff;
  align-items: center;
  justify-content: space-between;
}

.flagship-value small {
  color: #78849b;
  font-size: 8px;
  font-weight: 700;
}

.flagship-value strong {
  color: var(--blue-deep);
  font-family: "Manrope", sans-serif;
  font-size: 22px;
}

.flagship-actions {
  display: flex;
  margin-top: 22px;
  gap: 7px;
}

.flagship-actions i {
  padding: 8px 11px;
  border-radius: 8px;
  background: #eef0f4;
  color: #5d687b;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}

.flagship-actions i:first-child {
  background: var(--blue);
  color: white;
}

.flagship-score {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  width: 100px;
  height: 81px;
  padding: 15px;
  border-radius: 16px;
  background: var(--lime);
  box-shadow: 0 18px 35px rgba(5, 12, 29, 0.27);
  color: var(--ink);
  flex-direction: column;
  transform: rotate(4deg);
  transition:
    transform 0.24s ease,
    opacity 0.2s ease;
}

.flagship-score.is-flipping {
  opacity: 0;
  transform: scale(0.78) rotate(4deg);
}

.flagship-score small {
  font-size: 8px;
}

.flagship-score strong {
  margin-top: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  letter-spacing: -0.05em;
}

.decision-carousel-controls {
  position: absolute;
  top: 0;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.decision-arrow {
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
  font-size: 12px;
  place-items: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.decision-arrow:hover {
  border-color: var(--lime);
  background: rgba(200, 244, 91, 0.13);
}

.decision-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.decision-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    width 0.2s ease,
    border-radius 0.2s ease,
    background 0.2s ease;
}

.decision-dot.is-active {
  width: 20px;
  border-radius: 20px;
  background: var(--lime);
}

.product-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 590px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex-direction: column;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.product-blue {
  background: #e8eeff;
}

.product-lime {
  background: #eff9d6;
}

.product-coral {
  background: #fff0eb;
}

.product-purple {
  background: #f1ebfa;
}

.product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.product-icon {
  display: grid;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--ink);
  color: white;
  place-items: center;
}

.product-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.product-number {
  color: rgba(17, 28, 48, 0.35);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.product-meta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 9px;
}

.status-badge {
  padding: 6px 9px;
  border: 1px solid rgba(17, 28, 48, 0.1);
  border-radius: 30px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-current {
  background: rgba(200, 244, 91, 0.68);
  color: #3f6213;
}

.status-development {
  background: rgba(255, 255, 255, 0.58);
  color: #687287;
}

.product-copy {
  position: relative;
  z-index: 2;
  margin-top: 32px;
}

.product-kicker {
  color: var(--blue-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 7px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  letter-spacing: -0.055em;
}

.product-copy p {
  min-height: 96px;
  margin: 0;
  color: #4c586d;
  font-size: 14px;
  line-height: 1.65;
}

.product-copy ul {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.product-copy li {
  position: relative;
  padding: 8px 0 8px 21px;
  border-bottom: 1px solid rgba(17, 28, 48, 0.1);
  font-size: 12px;
  font-weight: 600;
}

.product-copy li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  content: "";
}

.product-copy li::after {
  position: absolute;
  top: 13px;
  left: 3px;
  width: 4px;
  height: 2px;
  border-bottom: 1px solid var(--blue);
  border-left: 1px solid var(--blue);
  content: "";
  transform: rotate(-45deg);
}

.card-link {
  position: relative;
  z-index: 3;
  display: inline-flex;
  width: fit-content;
  padding: 0 0 4px;
  margin-top: auto;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.card-link span {
  transition: transform 0.2s ease;
}

.card-link:hover span {
  transform: translate(2px, -2px);
}

.card-art {
  position: absolute;
  right: -12px;
  bottom: 14px;
  width: 160px;
  height: 120px;
  opacity: 0.92;
  transform: rotate(-5deg);
}

.art-panel {
  position: absolute;
  right: 6px;
  bottom: 4px;
  display: flex;
  width: 124px;
  height: 86px;
  padding: 16px;
  border: 1px solid rgba(17, 28, 48, 0.12);
  border-radius: 15px;
  background: white;
  box-shadow: 0 12px 30px rgba(48, 68, 120, 0.13);
  align-items: end;
  gap: 8px;
}

.art-panel span {
  width: 18px;
  border-radius: 4px 4px 0 0;
  background: #b6c5ff;
}

.art-panel span:nth-child(1) {
  height: 30px;
}

.art-panel span:nth-child(2) {
  height: 48px;
  background: var(--blue);
}

.art-panel span:nth-child(3) {
  height: 39px;
}

.art-badge {
  position: absolute;
  top: 3px;
  left: 4px;
  display: grid;
  width: 55px;
  height: 36px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  font-size: 10px;
  font-weight: 700;
  place-items: center;
}

.phone {
  position: absolute;
  right: 14px;
  bottom: -24px;
  display: flex;
  width: 93px;
  height: 156px;
  padding: 17px 12px;
  border: 4px solid var(--ink);
  border-radius: 20px;
  background: white;
  flex-direction: column;
  gap: 8px;
}

.phone-top {
  width: 25px;
  height: 3px;
  margin: 0 auto 8px;
  border-radius: 4px;
  background: var(--ink);
}

.task-line {
  width: 70%;
  height: 5px;
  border-radius: 5px;
  background: #d8dcd2;
}

.task-line.long {
  width: 100%;
  height: 9px;
  background: var(--lime);
}

.check-row {
  display: flex;
  color: #6c991a;
  font-size: 8px;
  align-items: center;
  gap: 6px;
}

.check-row i {
  width: 38px;
  height: 4px;
  border-radius: 5px;
  background: #e4e7dd;
}

.art-pin,
.art-upload {
  position: absolute;
  top: 13px;
  left: 20px;
  display: grid;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 10px 20px rgba(69, 108, 246, 0.28);
  color: var(--lime);
  font-size: 16px;
  place-items: center;
}

.emission-panel {
  position: absolute;
  right: 5px;
  bottom: 0;
  display: flex;
  width: 128px;
  height: 94px;
  padding: 15px;
  border: 1px solid rgba(17, 28, 48, 0.12);
  border-radius: 15px;
  background: white;
  box-shadow: 0 12px 30px rgba(48, 68, 120, 0.13);
  flex-direction: column;
}

.emission-label {
  color: #7e8974;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.emission-panel strong {
  margin-top: 3px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.emission-bars {
  display: flex;
  margin-top: auto;
  align-items: flex-end;
  gap: 5px;
}

.emission-bars i {
  width: 21px;
  height: 9px;
  border-radius: 3px;
  background: #dce8ba;
}

.emission-bars i:nth-child(2) {
  height: 17px;
  background: var(--lime);
}

.emission-bars i:nth-child(3) {
  height: 25px;
  background: #88ad33;
}

.decision-sheet {
  position: absolute;
  right: 4px;
  bottom: 2px;
  display: grid;
  width: 132px;
  height: 96px;
  padding: 14px;
  border: 1px solid rgba(17, 28, 48, 0.12);
  border-radius: 15px;
  background: white;
  box-shadow: 0 12px 30px rgba(48, 68, 120, 0.13);
  grid-template-columns: 39px 1fr;
  align-items: center;
  gap: 7px 10px;
}

.decision-score {
  display: grid;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: #e8edff;
  color: var(--blue-deep);
  font-size: 9px;
  font-weight: 800;
  grid-row: 1 / 3;
  place-items: center;
}

.decision-sheet i {
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: #e5e8ef;
}

.decision-sheet i:nth-of-type(2) {
  width: 65%;
}

.decision-sheet strong {
  color: #526078;
  font-size: 7px;
  grid-column: 1 / -1;
}

.rate-panel {
  position: absolute;
  right: 4px;
  bottom: 2px;
  display: flex;
  width: 132px;
  height: 96px;
  padding: 14px;
  border: 1px solid rgba(17, 28, 48, 0.12);
  border-radius: 15px;
  background: white;
  box-shadow: 0 12px 30px rgba(48, 68, 120, 0.13);
  flex-direction: column;
}

.rate-panel span {
  color: #8b7288;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rate-panel strong {
  margin-top: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.rate-panel small {
  padding-top: 8px;
  margin-top: auto;
  border-top: 1px solid #ece8ec;
  color: #7f7180;
  font-size: 7px;
}

.sync-panel {
  position: absolute;
  right: 4px;
  bottom: 2px;
  display: grid;
  width: 138px;
  height: 96px;
  padding: 14px;
  border: 1px solid rgba(17, 28, 48, 0.12);
  border-radius: 15px;
  background: white;
  box-shadow: 0 12px 30px rgba(48, 68, 120, 0.13);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.sync-system {
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #ff7a59;
  color: white;
  font-size: 9px;
  font-weight: 800;
  place-items: center;
}

.sync-system.sync-acumatica {
  background: var(--blue);
}

.sync-panel i {
  color: #8f7aa8;
  font-size: 13px;
  font-style: normal;
  text-align: center;
}

.sync-panel small {
  padding-top: 8px;
  border-top: 1px solid #ece8f1;
  color: #7f718d;
  font-size: 7px;
  font-weight: 700;
  grid-column: 1 / -1;
  text-align: center;
}

.vendor-sheet {
  position: absolute;
  right: 4px;
  bottom: 2px;
  display: grid;
  width: 126px;
  height: 91px;
  padding: 14px;
  border: 1px solid rgba(17, 28, 48, 0.12);
  border-radius: 15px;
  background: white;
  box-shadow: 0 12px 30px rgba(48, 68, 120, 0.13);
  grid-template-columns: 27px 1fr;
  grid-template-rows: repeat(3, 1fr);
  align-items: center;
  gap: 4px 10px;
}

.vendor-sheet .avatar {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: #ffd1c8;
  grid-row: 1 / 3;
}

.vendor-sheet i {
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: #e6e7eb;
}

.vendor-sheet i:last-child {
  width: 50%;
}

.art-upload {
  background: var(--coral);
  color: white;
  font-size: 22px;
}

.ecosystem-section {
  padding-bottom: 140px;
}

.ecosystem-heading {
  margin-bottom: 56px;
}

.ecosystem-heading h2 {
  max-width: 760px;
  font-size: clamp(44px, 4.8vw, 64px);
}

.ecosystem-map {
  position: relative;
  display: grid;
  min-height: 610px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at center, rgba(69, 108, 246, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.48);
  grid-template-columns: 1fr 0.92fr 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  gap: 24px 70px;
}

.ecosystem-map::before {
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(69, 108, 246, 0.15);
  border-radius: 25px;
  content: "";
  pointer-events: none;
}

.ecosystem-app {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 176px;
  padding: 25px;
  border: 1px solid rgba(17, 28, 48, 0.1);
  border-radius: 22px;
  box-shadow: 0 15px 38px rgba(34, 46, 78, 0.08);
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
}

.ecosystem-decision {
  background: #e8eeff;
  grid-column: 1;
  grid-row: 1;
}

.ecosystem-container {
  background: #eff9d6;
  grid-column: 3;
  grid-row: 1;
}

.ecosystem-carbon {
  background: #fff0eb;
  grid-column: 1;
  grid-row: 2;
}

.ecosystem-shipping {
  background: #f1ebfa;
  grid-column: 3;
  grid-row: 2;
}

.ecosystem-app-icon {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ink);
  color: white;
  place-items: center;
}

.ecosystem-app-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.ecosystem-app span:not(.ecosystem-index) {
  color: var(--blue-deep);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ecosystem-app h3 {
  margin: 5px 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  letter-spacing: -0.045em;
}

.ecosystem-app p {
  margin: 0;
  color: #687287;
  font-size: 10px;
}

.ecosystem-index {
  position: absolute;
  top: 17px;
  right: 18px;
  color: rgba(17, 28, 48, 0.3);
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.ecosystem-core {
  position: relative;
  z-index: 3;
  display: flex;
  width: 245px;
  height: 245px;
  margin: auto;
  border: 1px solid rgba(69, 108, 246, 0.25);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 28px 60px rgba(17, 28, 48, 0.22);
  color: white;
  grid-column: 2;
  grid-row: 1 / 3;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.core-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 17px;
  border-radius: 17px;
  background: var(--blue);
  place-items: center;
}

.core-mark svg {
  width: 34px;
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.acumatica-logo-mark {
  width: 132px;
  height: 54px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: white;
  box-shadow: 0 16px 28px rgba(5, 12, 29, 0.2);
}

.acumatica-logo-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.ecosystem-core > span {
  color: #aeb8cb;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ecosystem-core > strong {
  margin-top: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  letter-spacing: -0.045em;
}

.ecosystem-core > small {
  margin-top: 8px;
  color: #8995aa;
  font-size: 8px;
}

.core-orbit {
  position: absolute;
  border: 1px solid rgba(69, 108, 246, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-a {
  inset: -21px;
}

.orbit-b {
  inset: -43px;
}

.ecosystem-connector {
  position: absolute;
  z-index: 1;
  height: 1px;
  border-top: 1px dashed rgba(69, 108, 246, 0.4);
  transform-origin: left;
}

.connector-decision {
  top: 205px;
  left: 31%;
  width: 17%;
  transform: rotate(13deg);
}

.connector-container {
  top: 205px;
  left: 53%;
  width: 17%;
  transform: rotate(-13deg);
}

.connector-carbon {
  top: 404px;
  left: 31%;
  width: 17%;
  transform: rotate(-13deg);
}

.connector-shipping {
  top: 404px;
  left: 54%;
  width: 18%;
  transform: rotate(14deg);
}

.ecosystem-note {
  display: grid;
  max-width: 860px;
  padding: 26px 30px;
  margin: 20px auto 0;
  border-left: 3px solid var(--lime);
  background: rgba(255, 255, 255, 0.56);
  grid-template-columns: 0.45fr 1fr;
  align-items: center;
  gap: 35px;
}

.ecosystem-note span {
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ecosystem-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.direct-integration {
  display: grid;
  max-width: 980px;
  padding: 25px 28px;
  margin: 18px auto 0;
  border: 1px solid rgba(17, 28, 48, 0.1);
  border-radius: 18px;
  background: #f1ebfa;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
}

.direct-integration-mark {
  display: flex;
  align-items: center;
  gap: 6px;
}

.direct-integration-mark span {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #ff7a59;
  color: white;
  font-size: 9px;
  font-weight: 800;
  place-items: center;
}

.direct-integration-mark span:last-child {
  background: var(--blue);
}

.direct-integration-mark i {
  color: #745b91;
  font-style: normal;
}

.direct-integration > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.direct-integration small {
  color: #78618f;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.direct-integration strong {
  margin-top: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.direct-integration p {
  margin: 4px 0 0;
  color: #71667d;
  font-size: 10px;
}

.direct-integration .text-link {
  font-size: 11px;
}

.approach-section {
  padding-bottom: 140px;
}

.approach-panel {
  display: grid;
  overflow: hidden;
  min-height: 630px;
  padding: 78px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 15% 120%, rgba(69, 108, 246, 0.48), transparent 38%),
    var(--ink);
  color: white;
  grid-template-columns: 0.85fr 1fr;
  gap: 110px;
}

.eyebrow-light {
  color: #aeb9cf;
}

.approach-copy h2 {
  max-width: 510px;
  margin-top: 8px;
  font-size: clamp(46px, 5vw, 66px);
}

.approach-copy p {
  max-width: 465px;
  margin: 28px 0 32px;
  color: #b7c0d1;
  font-size: 16px;
  line-height: 1.75;
}

.modern-ui-callout {
  max-width: 465px;
  padding: 18px 20px;
  margin: -12px 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.modern-ui-callout span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.modern-ui-callout strong {
  display: block;
  color: white;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1.32;
}

.button-light {
  background: white;
  color: var(--ink);
}

.principles {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.principle {
  display: grid;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  grid-template-columns: 47px 1fr;
  gap: 17px;
}

.principle:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.principle > span {
  color: var(--lime);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.principle h3 {
  margin: -5px 0 9px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.principle p {
  max-width: 420px;
  margin: 0;
  color: #aeb7c7;
  font-size: 13px;
  line-height: 1.65;
}

.story-section {
  display: grid;
  padding-top: 70px;
  padding-bottom: 160px;
  grid-template-columns: 1fr 1fr;
  gap: 130px;
}

.story-quote {
  position: relative;
  display: flex;
  min-height: 380px;
  padding: 56px;
  border-radius: 32px;
  background: var(--blue);
  color: white;
  align-items: flex-end;
}

.story-quote::after {
  position: absolute;
  top: 48px;
  right: 51px;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 26px rgba(255, 255, 255, 0.06),
    0 0 0 52px rgba(255, 255, 255, 0.03);
}

.quote-mark {
  position: absolute;
  top: 38px;
  left: 49px;
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 93px;
  line-height: 1;
}

.story-quote blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.story-copy {
  align-self: center;
}

.story-copy h2 {
  margin-top: 5px;
  font-size: clamp(45px, 5vw, 65px);
}

.story-copy p {
  max-width: 520px;
  margin: 29px 0 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.contact-section {
  padding-bottom: 90px;
}

.contact-panel {
  display: grid;
  padding: 78px;
  border-radius: 36px;
  background: var(--ink);
  color: white;
  grid-template-columns: 0.9fr 1fr;
  gap: 100px;
}

.contact-copy h2 {
  max-width: 520px;
  font-size: clamp(44px, 5vw, 62px);
}

.contact-copy p {
  max-width: 450px;
  margin: 26px 0 0;
  color: #adb6c8;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  align-content: center;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label span {
  color: #bdc6d7;
  font-size: 11px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.07);
  color: white;
  resize: vertical;
  transition:
    border 0.2s ease,
    background 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #758095;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.1);
}

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

.contact-form .button {
  width: 100%;
  margin-top: 3px;
}

.form-note {
  margin: -7px 0 0;
  color: #7f8a9f;
  font-size: 10px;
  text-align: center;
}

.form-note.success {
  color: var(--lime);
}

.site-footer {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  padding: 20px 0 42px;
  margin: 0 auto;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 35px;
}

.site-footer p {
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 600;
}

.site-footer small {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #8a92a1;
  font-size: 9px;
  grid-column: 1 / -1;
}

.app-dialog {
  width: min(560px, calc(100% - 32px));
  padding: 44px;
  border: 0;
  border-radius: 26px;
  box-shadow: 0 35px 100px rgba(17, 28, 48, 0.35);
}

.app-dialog::backdrop {
  background: rgba(13, 21, 37, 0.67);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f0f2f6;
  cursor: pointer;
  font-size: 22px;
  place-items: center;
}

.dialog-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 25px;
  border-radius: 17px;
  background: var(--blue);
  color: white;
  font-size: 25px;
  font-weight: 800;
  place-items: center;
}

.app-dialog h2 {
  margin: 6px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  letter-spacing: -0.05em;
}

.app-dialog > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.dialog-flow {
  display: flex;
  padding: 24px 0;
  margin: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 7px;
}

.dialog-flow span {
  padding: 9px 12px;
  border-radius: 9px;
  background: #eef1f7;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.dialog-flow i {
  color: var(--blue);
  font-size: 13px;
  font-style: normal;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal-delay-two {
  transition-delay: 0.24s;
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  .hero {
    padding-top: 40px;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
  }

  .hero h1 {
    font-size: 65px;
  }

  .app-window {
    width: 106%;
  }

  .floating-sync {
    right: -25px;
  }

  .login-panel {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 32px;
  }

  .approach-panel,
  .contact-panel {
    padding: 58px;
    gap: 55px;
  }

  .ecosystem-map {
    min-height: 600px;
    padding: 38px;
    grid-template-columns: 1fr 0.82fr 1fr;
    gap: 22px 30px;
  }

  .ecosystem-core {
    width: 205px;
    height: 205px;
  }

  .ecosystem-decision,
  .ecosystem-container,
  .ecosystem-carbon,
  .ecosystem-shipping {
    min-height: 158px;
    padding: 20px;
  }

  .ecosystem-note {
    margin-top: 20px;
  }

  .ecosystem-connector {
    display: none;
  }

  .story-section {
    gap: 70px;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 76px;
  }

  .nav-toggle {
    position: relative;
    z-index: 30;
    display: flex;
    width: 42px;
    height: 42px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
  }

  .nav-toggle span:not(.sr-only) {
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 25;
    inset: 0;
    display: flex;
    visibility: hidden;
    background: var(--paper);
    opacity: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
  }

  .site-nav .button {
    margin-top: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
  }

  .hero {
    padding: 65px 0 95px;
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .hero-copy {
    max-width: 660px;
  }

  .hero-visual {
    width: min(630px, 95%);
    margin: 0 auto;
  }

  .app-window {
    width: 100%;
  }

  .trust-strip {
    flex-wrap: wrap;
    gap: 22px 35px;
  }

  .login-panel {
    padding: 34px;
    grid-template-columns: 1fr;
  }

  .login-card {
    max-width: 520px;
  }

  .apps-section {
    padding-top: 105px;
    padding-bottom: 105px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .product-card.product-featured {
    min-height: 660px;
    padding: 32px;
  }

  .featured-copy {
    width: 62%;
  }

  .flagship-visual {
    top: 105px;
    right: 28px;
    bottom: 28px;
    width: 42%;
  }

  .product-card {
    min-height: 475px;
  }

  .product-copy {
    max-width: 65%;
  }

  .product-copy p {
    min-height: auto;
  }

  .product-copy ul {
    max-width: 350px;
  }

  .card-art {
    right: 30px;
    bottom: 35px;
    width: 190px;
    transform: scale(1.12) rotate(-5deg);
  }

  .ecosystem-section {
    padding-bottom: 105px;
  }

  .ecosystem-heading {
    margin-bottom: 42px;
  }

  .ecosystem-map {
    display: flex;
    min-height: auto;
    padding: 30px 20px;
    border-radius: 27px;
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

  .ecosystem-core {
    width: 210px;
    height: 210px;
    margin: 25px auto 30px;
    order: -1;
  }

  .ecosystem-decision,
  .ecosystem-container,
  .ecosystem-carbon,
  .ecosystem-shipping {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .ecosystem-app {
    min-height: 145px;
    padding: 20px;
  }

  .ecosystem-note {
    padding: 23px;
    margin-top: 16px;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .approach-panel,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .approach-panel {
    padding: 68px 55px;
  }

  .story-section {
    padding-top: 20px;
    padding-bottom: 110px;
    grid-template-columns: 1fr;
  }

  .story-quote {
    max-width: 620px;
  }

  .contact-panel {
    padding: 60px 55px;
  }
}

@media (max-width: 580px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    padding-top: 47px;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 67px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof {
    gap: 24px;
  }

  .hero-visual {
    width: 100%;
    padding-top: 30px;
  }

  .window-layout {
    min-height: 316px;
    grid-template-columns: 39px 1fr;
  }

  .mock-sidebar {
    gap: 15px;
  }

  .side-pill {
    width: 14px;
    height: 14px;
  }

  .mock-content {
    padding: 17px 13px;
  }

  .mock-heading strong {
    font-size: 15px;
  }

  .metric-card {
    min-height: 70px;
    padding: 10px;
  }

  .chart {
    height: 80px;
  }

  .floating-stock {
    top: 0;
    right: 6px;
  }

  .floating-sync {
    right: -5px;
    bottom: 12px;
  }

  .orbit-one {
    right: -100px;
    width: 390px;
    height: 390px;
  }

  .trust-strip span {
    font-size: 8px;
  }

  .trust-strip i {
    display: none;
  }

  .login-section {
    padding-top: 56px;
  }

  .login-panel {
    padding: 28px;
    border-radius: 26px;
  }

  .login-copy p {
    font-size: 15px;
  }

  .login-flow i {
    display: none;
  }

  .login-options {
    grid-template-columns: 1fr;
  }

  .login-card {
    padding: 22px;
  }

  .section-heading h2,
  .login-copy h2,
  .approach-copy h2,
  .story-copy h2,
  .contact-copy h2 {
    font-size: 43px;
  }

  .product-card {
    min-height: 590px;
    padding: 25px;
  }

  .product-card.product-featured {
    display: block;
    min-height: 920px;
    padding: 25px;
  }

  .featured-copy {
    width: 100%;
  }

  .product-featured .product-copy h3 {
    font-size: 42px;
  }

  .product-featured .card-link {
    margin-top: 28px;
  }

  .flagship-visual {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 320px;
    margin-top: 50px;
  }

  .flagship-decision {
    width: 100%;
    min-height: 270px;
    padding: 25px;
  }

  .flagship-score {
    top: -27px;
    left: -2px;
  }

  .product-copy {
    max-width: 100%;
  }

  .product-copy h3 {
    font-size: 34px;
  }

  .product-copy p {
    min-height: 90px;
  }

  .card-art {
    right: -7px;
    bottom: 22px;
    transform: scale(0.96) rotate(-5deg);
  }

  .direct-integration {
    padding: 22px;
    align-items: start;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .direct-integration .text-link {
    width: fit-content;
    margin-top: 4px;
  }

  .approach-panel,
  .contact-panel {
    padding: 48px 25px;
    border-radius: 27px;
  }

  .approach-copy h2 {
    margin-top: 0;
  }

  .principle {
    grid-template-columns: 35px 1fr;
  }

  .story-quote {
    min-height: 360px;
    padding: 38px;
  }

  .quote-mark {
    top: 30px;
    left: 34px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .full-field {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-links {
    margin: 15px 0 8px;
  }

  .site-footer small {
    grid-column: auto;
  }

  .app-dialog {
    padding: 36px 25px;
  }

  .app-dialog h2 {
    font-size: 35px;
  }

  .dialog-flow {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
