:root {
  color-scheme: dark;

  --background: #020817;
  --background-soft: #061127;
  --panel: rgba(8, 22, 46, 0.8);
  --panel-strong: rgba(7, 19, 41, 0.96);
  --border: rgba(114, 166, 255, 0.25);
  --border-bright: rgba(47, 144, 255, 0.66);

  --text: #f7f9ff;
  --muted: #aebbd1;
  --muted-dark: #7788a6;

  --blue: #1677ff;
  --cyan: #11d8e5;
  --green: #2fdd74;
  --yellow: #ffce35;
  --orange: #ff8a24;
  --purple: #c56bff;

  --gradient:
    linear-gradient(135deg, #1769ff 0%, #079cff 52%, #19dbc5 100%);

  --shadow:
    0 30px 100px rgba(0, 0, 0, 0.42);

  --content-width: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: var(--text);
  background:
    radial-gradient(
      circle at 75% 15%,
      rgba(0, 127, 255, 0.13),
      transparent 29rem
    ),
    radial-gradient(
      circle at 6% 40%,
      rgba(0, 93, 255, 0.14),
      transparent 32rem
    ),
    linear-gradient(180deg, #020715 0%, #031026 100%);

  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(40, 112, 221, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(40, 112, 221, 0.04) 1px,
      transparent 1px
    );

  background-size: 52px 52px;
  mask-image:
    linear-gradient(to bottom, black, transparent 83%);
}

body::after {
  content: "";
  position: fixed;
  right: -10rem;
  top: 5rem;
  z-index: -1;

  width: 42rem;
  height: 42rem;

  border-radius: 50%;
  pointer-events: none;

  background:
    radial-gradient(
      circle,
      rgba(0, 145, 255, 0.14),
      transparent 67%
    );

  filter: blur(12px);
}

button,
input,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

button {
  color: inherit;
}

.site-shell {
  width: min(100%, 1720px);
  margin: 0 auto;
  overflow: hidden;
}

.site-header {
  width: min(var(--content-width), calc(100% - 48px));
  min-height: 94px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  justify-self: start;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: white;
  text-decoration: none;
}

.brand__mark {
  width: 53px;
  height: 53px;
  display: block;
}

.brand__word {
  font-size: 30px;
  font-weight: 790;
  letter-spacing: -0.055em;
}

.brand__word span {
  color: #1ca5ff;
}

.desktop-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 48px);
}

.desktop-navigation a {
  position: relative;
  color: #f6f8fc;
  text-decoration: none;
  font-size: 15px;
  font-weight: 620;
}

.desktop-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;

  height: 2px;
  background: var(--gradient);

  transition: right 180ms ease;
}

.desktop-navigation a:hover::after {
  right: 0;
}

.button {
  border: 0;
  border-radius: 12px;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 13px 20px;

  color: white;
  text-decoration: none;
  font-weight: 740;

  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

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

.button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(15, 187, 255, 0.42);
  outline-offset: 3px;
}

.button svg {
  width: 22px;
  height: 22px;
}

.button--header {
  justify-self: end;
  padding: 13px 22px;
  background: linear-gradient(135deg, #1171ff, #1457ed);
  box-shadow: 0 12px 40px rgba(17, 105, 255, 0.28);
}

.button--primary {
  background: var(--gradient);
  box-shadow: 0 16px 50px rgba(0, 124, 255, 0.27);
}

.button--secondary {
  border: 1px solid rgba(148, 180, 230, 0.37);
  background: rgba(7, 20, 42, 0.75);
}

.button--large {
  min-height: 76px;
  padding: 15px 26px;
  justify-content: flex-start;
}

.button--large span {
  display: grid;
  text-align: left;
}

.button--large strong {
  font-size: 16px;
}

.button--large small {
  color: rgba(255, 255, 255, 0.71);
  font-size: 12px;
  font-weight: 500;
}

.hero {
  position: relative;

  width: min(var(--content-width), calc(100% - 48px));
  margin: 22px auto 0;
  padding: 55px 0 50px;

  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(650px, 1.08fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.hero__glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(30px);
}

.hero__glow--one {
  left: -12rem;
  top: 5rem;
  width: 26rem;
  height: 26rem;
  background: rgba(0, 103, 255, 0.1);
}

.hero__glow--two {
  right: 12rem;
  bottom: 1rem;
  width: 22rem;
  height: 22rem;
  background: rgba(16, 196, 220, 0.07);
}

.hero__copy,
.hero__visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  width: max-content;
  max-width: 100%;

  display: flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 27px;
  padding: 8px 16px;

  border: 1px solid #0878ff;
  border-radius: 999px;

  color: #43beff;
  background: rgba(3, 21, 49, 0.78);

  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow__spark {
  color: #2fd8ff;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 24px;

  font-size: clamp(48px, 5.15vw, 82px);
  line-height: 0.99;
  letter-spacing: -0.065em;
  font-weight: 820;
}

.gradient-text {
  display: inline-block;

  color: transparent;
  background: linear-gradient(
    90deg,
    #24dad0 0%,
    #0eb9e9 48%,
    #258cff 100%
  );

  background-clip: text;
  -webkit-background-clip: text;
}

.hero__description {
  max-width: 690px;
  margin: 0;

  color: var(--muted);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.65;
}

.hero__benefits {
  margin: 28px 0 31px;
  padding: 0;

  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;

  list-style: none;
}

.hero__benefits li {
  display: flex;
  align-items: center;
  gap: 8px;

  color: #d7e2f6;
  font-size: 14px;
}

.check-icon {
  width: 23px;
  height: 23px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #0d9dff;
  border-radius: 50%;
  color: #21d7ea;

  font-size: 12px;
  font-weight: 900;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.glass-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    linear-gradient(
      145deg,
      rgba(10, 29, 60, 0.89),
      rgba(5, 15, 35, 0.91)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    var(--shadow);

  backdrop-filter: blur(18px);
}

.hero__visual {
  min-height: 560px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 244px;
  grid-template-rows: auto auto;
  gap: 17px;
  align-items: stretch;
}

.opportunity-panel {
  padding: 22px;
  transform: perspective(1300px) rotateY(-1.5deg);
  transform-origin: center;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 18px;
}

.panel-heading > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.panel-heading__label {
  font-size: 16px;
  font-weight: 760;
}

.demo-label {
  padding: 3px 8px;
  border-radius: 99px;

  color: #8ca0bd;
  background: rgba(95, 126, 173, 0.12);

  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  color: #31df77;
  font-size: 12px;
  font-weight: 700;
}

.live-indicator i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.opportunity-list {
  display: grid;
  gap: 10px;
}

.opportunity {
  min-width: 0;

  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 82px 118px;
  align-items: center;
  gap: 12px;

  padding: 13px;

  border: 1px solid rgba(119, 155, 211, 0.2);
  border-radius: 10px;

  background:
    linear-gradient(
      90deg,
      rgba(12, 38, 73, 0.8),
      rgba(5, 18, 39, 0.8)
    );
}

.opportunity__icon {
  width: 39px;
  height: 39px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 9px;

  font-size: 22px;
  font-weight: 800;
}

.opportunity__icon--blue {
  color: #b9dcff;
  background: linear-gradient(145deg, #197dff, #1c49c5);
}

.opportunity__icon--green {
  color: #d7ffe5;
  background: linear-gradient(145deg, #16b87b, #096951);
}

.opportunity__icon--cyan {
  color: white;
  background: linear-gradient(145deg, #13b9db, #0d5b8e);
}

.opportunity__icon--orange {
  color: white;
  background: linear-gradient(145deg, #ff9a31, #df5319);
}

.opportunity__identity,
.opportunity__value,
.opportunity__probability {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.opportunity__identity strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  font-size: 13px;
}

.opportunity small {
  color: #92a1b8;
  font-size: 10px;
}

.opportunity__value {
  text-align: right;
}

.opportunity__value strong {
  font-size: 13px;
}

.opportunity__probability {
  text-align: right;
}

.opportunity__probability strong {
  font-size: 22px;
  line-height: 1;
}

.probability--high strong {
  color: #34df72;
}

.probability--medium strong {
  color: #ffd433;
}

.probability--lower strong {
  color: #ff8b21;
}

.fit-panel {
  padding: 22px 19px;
}

.fit-panel h2 {
  margin: 0 0 14px;
  font-size: 14px;
}

.probability-ring {
  width: 153px;
  aspect-ratio: 1;
  margin: 2px auto 21px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    conic-gradient(
      #2ade6c 0deg,
      #12bff2 125deg,
      #1774ff 302deg,
      rgba(90, 119, 160, 0.25) 302deg
    );

  box-shadow: 0 0 34px rgba(27, 131, 255, 0.18);
}

.probability-ring::before {
  content: "";
  position: absolute;
}

.probability-ring__centre {
  width: 116px;
  aspect-ratio: 1;

  display: grid;
  place-content: center;

  border-radius: 50%;
  text-align: center;

  background: #07172f;
  box-shadow: inset 0 0 25px rgba(13, 82, 159, 0.18);
}

.probability-ring__centre strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.probability-ring__centre span {
  margin-top: 7px;
  color: #c2ccdd;
  font-size: 11px;
}

.fit-panel h3 {
  margin: 0 0 12px;
  font-size: 12px;
}

.fit-list {
  display: grid;
  gap: 10px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.fit-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;

  color: #c7d1e3;
  font-size: 11px;
}

.fit-list li > span {
  width: 18px;
  height: 18px;

  display: grid;
  place-content: center;

  border-radius: 50%;

  color: #072517;
  background: #2dde71;

  font-size: 10px;
  font-weight: 900;
}

.fit-list p {
  margin: 0;
}

.fit-list strong {
  color: #f5f8ff;
}

.fit-list__warning > span {
  color: #362900 !important;
  background: #ffd52c !important;
}

.model-confidence {
  margin-top: 17px;
  padding-top: 13px;

  border-top: 1px solid rgba(130, 159, 207, 0.17);

  color: #8597b3;
  font-size: 10px;
}

.model-confidence strong {
  color: #2bc3ff;
}

.model-strip {
  grid-column: 1 / 3;

  min-height: 105px;
  padding: 19px 22px;

  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 160px;
  align-items: center;
  gap: 17px;
}

.model-strip__icon {
  width: 58px;
  height: 58px;

  display: grid;
  place-content: center;

  border: 1px solid #118fff;
  border-radius: 16px;

  color: #22d5ee;
  background: rgba(4, 70, 135, 0.28);

  font-size: 31px;
}

.model-strip strong {
  font-size: 14px;
}

.model-strip p {
  margin: 3px 0 0;
  color: #9aaac2;
  font-size: 11px;
  line-height: 1.45;
}

.model-strip__chart {
  height: 55px;

  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 7px;
}

.model-strip__chart i {
  width: 7px;
  min-height: 4px;

  border-radius: 5px 5px 1px 1px;

  background:
    linear-gradient(to top, #1568ff, #1de0d2);

  box-shadow: 0 0 10px rgba(14, 155, 255, 0.28);
}

.process-section,
.faq-section {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0;
}

.process-section {
  border-top: 1px solid rgba(93, 138, 210, 0.17);
}

.section-heading {
  margin-bottom: 38px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}

.section-heading span {
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(29, 139, 255, 0.75)
    );
}

.section-heading span:last-child {
  background:
    linear-gradient(
      90deg,
      rgba(29, 139, 255, 0.75),
      transparent
    );
}

.section-heading h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-card {
  position: relative;
  text-align: center;
}

.process-card:not(:last-child)::after {
  content: "······➜";

  position: absolute;
  top: 34px;
  left: calc(50% + 58px);

  width: calc(100% - 84px);

  overflow: hidden;
  white-space: nowrap;

  color: #168aff;
  letter-spacing: 5px;
}

.process-card__icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 16px;

  display: grid;
  place-content: center;

  border: 2px solid #258aff;
  border-radius: 50%;

  color: #2db3ff;
  background: rgba(8, 43, 92, 0.61);

  box-shadow:
    0 0 22px rgba(28, 123, 255, 0.32),
    inset 0 0 20px rgba(28, 123, 255, 0.18);

  font-size: 34px;
}

.process-card__icon--green {
  border-color: #35d878;
  color: #4ee488;
  box-shadow:
    0 0 22px rgba(40, 220, 116, 0.25),
    inset 0 0 20px rgba(40, 220, 116, 0.15);
}

.process-card__icon--yellow {
  border-color: #ffcc35;
  color: #ffce3b;
  box-shadow:
    0 0 22px rgba(255, 198, 30, 0.25),
    inset 0 0 20px rgba(255, 198, 30, 0.15);
}

.process-card__icon--purple {
  border-color: #bd6bff;
  color: #c67eff;
  box-shadow:
    0 0 22px rgba(185, 91, 255, 0.25),
    inset 0 0 20px rgba(185, 91, 255, 0.15);
}

.process-card__number {
  position: absolute;
  top: 69px;
  left: calc(50% - 43px);

  width: 20px;
  height: 20px;

  display: grid;
  place-content: center;

  border-radius: 50%;

  color: white;
  background: #196fff;

  font-size: 10px;
  font-weight: 800;
}

.process-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.process-card p {
  margin: 0;
  color: #a9b6ca;
  font-size: 12px;
  line-height: 1.55;
}

.benefit-section {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto 42px;
  padding: 25px 28px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;

  border: 1px solid rgba(100, 141, 205, 0.19);
  border-radius: 16px;

  background: rgba(5, 17, 39, 0.57);
}

.benefit-section article {
  display: flex;
  align-items: center;
  gap: 14px;
}

.benefit-icon {
  width: 45px;
  height: 45px;
  flex: 0 0 auto;

  display: grid;
  place-content: center;

  border: 2px solid #268aff;
  border-radius: 50%;

  color: #3aabff;
  box-shadow: 0 0 17px rgba(27, 129, 255, 0.22);
}

.benefit-icon--green {
  color: #45e57c;
  border-color: #32d972;
}

.benefit-icon--yellow {
  color: #ffd43c;
  border-color: #f6c62d;
}

.benefit-icon--purple {
  color: #ce7cff;
  border-color: #c66dff;
}

.benefit-section strong {
  font-size: 13px;
}

.benefit-section p {
  margin: 3px 0 0;
  color: #929fb5;
  font-size: 11px;
}

.supplier-section {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;

  border-top: 1px solid rgba(93, 138, 210, 0.16);
}

.section-kicker {
  color: #31baff;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.supplier-section h2 {
  max-width: 820px;
  margin: 10px 0 0;

  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.supplier-section > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.faq-grid details {
  border: 1px solid rgba(112, 155, 220, 0.22);
  border-radius: 13px;

  background: rgba(5, 18, 40, 0.69);
}

.faq-grid summary {
  padding: 18px 20px;
  cursor: pointer;

  color: #f2f6fd;
  font-size: 14px;
  font-weight: 700;
}

.faq-grid p {
  margin: 0;
  padding: 0 20px 19px;

  color: #9eadc4;
  font-size: 13px;
  line-height: 1.6;
}

.site-footer {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  min-height: 100px;
  padding: 25px 0;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;

  border-top: 1px solid rgba(98, 141, 208, 0.16);
}

.site-footer .brand__mark {
  width: 38px;
  height: 38px;
}

.site-footer .brand__word {
  font-size: 23px;
}

.site-footer p {
  margin: 0;
  color: #91a0b7;
  font-size: 12px;
}

.site-footer p:last-child {
  justify-self: end;
}

.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;

  display: grid;
  justify-items: end;

  visibility: hidden;
  opacity: 0;

  transition:
    visibility 220ms ease,
    opacity 220ms ease;
}

.contact-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.contact-overlay__background {
  position: absolute;
  inset: 0;

  width: 100%;
  border: 0;

  background: rgba(0, 6, 18, 0.76);
  backdrop-filter: blur(6px);
}

.contact-drawer {
  position: relative;
  z-index: 2;

  width: min(460px, 100%);
  height: 100%;
  overflow-y: auto;
  padding: 34px;

  border-left: 1px solid rgba(36, 130, 255, 0.62);

  background:
    radial-gradient(
      circle at 100% 0,
      rgba(11, 104, 255, 0.15),
      transparent 25rem
    ),
    #061329;

  box-shadow: -30px 0 100px rgba(0, 0, 0, 0.45);

  transform: translateX(105%);
  transition: transform 250ms ease;
}

.contact-overlay.is-open .contact-drawer {
  transform: translateX(0);
}

.contact-drawer__close {
  position: absolute;
  right: 23px;
  top: 20px;

  width: 38px;
  height: 38px;

  border: 1px solid rgba(120, 157, 215, 0.26);
  border-radius: 50%;

  color: white;
  background: rgba(4, 14, 33, 0.6);

  cursor: pointer;
  font-size: 25px;
}

.contact-drawer__heading {
  display: flex;
  gap: 14px;
  padding-right: 35px;
  margin-bottom: 28px;
}

.contact-drawer__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;

  display: grid;
  place-content: center;

  border: 1px solid #197dff;
  border-radius: 12px;

  color: #36c8ff;
  background: rgba(8, 65, 135, 0.31);

  font-size: 22px;
}

.contact-drawer h2 {
  margin: 0;
  font-size: 27px;
}

.contact-drawer__heading p {
  margin: 6px 0 0;
  color: #9eacc2;
  font-size: 13px;
}

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

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

.contact-form label > span {
  color: #c7d2e4;
  font-size: 12px;
  font-weight: 650;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  border: 1px solid rgba(112, 153, 213, 0.37);
  border-radius: 9px;

  color: white;
  background: rgba(10, 28, 57, 0.8);

  padding: 13px 14px;

  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1889ff;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(19, 132, 255, 0.13);
}

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

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

.contact-form__submit {
  width: 100%;
  min-height: 51px;
  margin-top: 4px;
}

.contact-form__submit[disabled] {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.contact-form__status {
  min-height: 22px;
  margin: 0;
  text-align: center;
  font-size: 13px;
}

.contact-form__status.is-success {
  color: #4be789;
}

.contact-form__status.is-error {
  color: #ff8d8d;
}

.contact-form__privacy {
  margin: 0;

  color: #8291a9;
  text-align: center;
  font-size: 11px;
  line-height: 1.55;
}

.contact-form__privacy a {
  color: #4fc4ff;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;

  width: 1px !important;
  height: 1px !important;

  overflow: hidden !important;
}

body.contact-open {
  overflow: hidden;
}

@media (max-width: 1220px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 890px;
  }

  .hero__visual {
    min-height: auto;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
  }

  .process-card::after {
    display: none;
  }

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-navigation {
    display: none;
  }

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

  .fit-panel,
  .model-strip {
    grid-column: 1;
  }

  .fit-panel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px 25px;
    align-items: center;
  }

  .fit-panel h2,
  .fit-panel h3,
  .fit-list,
  .model-confidence {
    grid-column: 2;
  }

  .probability-ring {
    grid-column: 1;
    grid-row: 1 / 5;
  }

  .model-strip {
    grid-template-columns: 58px 1fr;
  }

  .model-strip__chart {
    display: none;
  }

  .supplier-section {
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer p:last-child {
    justify-self: start;
  }
}

@media (max-width: 660px) {
  .site-header,
  .hero,
  .process-section,
  .benefit-section,
  .supplier-section,
  .faq-section,
  .site-footer {
    width: min(100% - 28px, var(--content-width));
  }

  .site-header {
    min-height: 78px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__word {
    font-size: 24px;
  }

  .button--header {
    padding: 10px 13px;
    font-size: 12px;
  }

  .button--header svg {
    display: none;
  }

  .hero {
    padding-top: 30px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 61px);
  }

  .hero__actions {
    display: grid;
  }

  .button--large {
    width: 100%;
  }

  .opportunity-panel {
    padding: 14px;
    transform: none;
  }

  .opportunity {
    grid-template-columns: 38px minmax(0, 1fr) auto;
  }

  .opportunity__value {
    display: none;
  }

  .opportunity__probability {
    min-width: 70px;
  }

  .opportunity__probability strong {
    font-size: 18px;
  }

  .fit-panel {
    display: block;
  }

  .probability-ring {
    margin: 17px auto 25px;
  }

  .model-strip {
    grid-template-columns: 50px 1fr;
    padding: 16px;
  }

  .model-strip__icon {
    width: 50px;
    height: 50px;
  }

  .process-grid,
  .benefit-section,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .benefit-section {
    padding: 20px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section-heading span {
    display: none;
  }

  .contact-drawer {
    padding: 29px 20px;
  }
}

@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;
  }
}
