@font-face {
  font-family: "Manifold CF";
  src: url("assets/fonts/Manifold CF Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manifold CF";
  src: url("assets/fonts/Manifold CF Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manifold CF";
  src: url("assets/fonts/Manifold CF Medium Oblique.woff") format("woff");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manifold CF";
  src: url("assets/fonts/Manifold CF Demi Bold.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manifold CF";
  src: url("assets/fonts/Manifold CF Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Manifold CF";
  src: url("assets/fonts/Manifold CF Extra Bold Oblique.woff") format("woff");
  font-style: italic;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Manifold CF";
  src: url("assets/fonts/Manifold CF Heavy.woff") format("woff");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Microgramma Extd D";
  src: url("assets/fonts/Microgramma Extd D Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --black: #101015;
  --white: #ffffff;
  --yellow: #f2ff00;
  --green: #87ec22;
  --red: #ff006f;
  --pink: var(--red);
  --muted: #8d8d96;
  --line: rgba(255, 255, 255, 0.12);
  --display: "Microgramma Extd D", "Microgramma Ext", "Eurostile Extended", sans-serif;
  --body: "Manifold CF", Arial, sans-serif;
  --ui: "Manifold CF", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--body);
  letter-spacing: 0;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

.site-frame {
  width: 100%;
  min-width: 0;
  margin: 0;
  background: var(--black);
  padding: 0;
}

.site-header {
  display: grid;
  grid-template-columns: 108px 1fr auto;
  min-height: 54px;
  background: var(--black);
}

.mark {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--yellow);
}

.mark img {
  display: block;
  width: 58px;
  height: 30px;
  object-fit: contain;
}

.site-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 32px;
  color: var(--white);
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a,
.header-actions a {
  opacity: 0.96;
}

.site-nav a.active {
  color: var(--yellow);
}

.header-actions {
  gap: 0;
  padding: 0;
}

.header-actions a {
  display: grid;
  place-items: center;
  min-width: 108px;
  height: 54px;
}

.header-actions .action-fill {
  min-width: 128px;
  color: var(--black);
  background: var(--yellow);
}

main {
  background: var(--black);
}

.hero {
  min-height: 645px;
  padding: 82px 60px 90px;
}

.video-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 20px;
  margin-left: 56px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--green);
  font-size: 10px;
  cursor: pointer;
}

.video-chip::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--green);
}

h1,
.page-hero h1,
.mini-logo,
.site-footer strong {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 152px;
  text-align: center;
  font-size: clamp(54px, 8vw, 126px);
  line-height: 0.8;
}

.hero-line {
  margin: 16px 0 0;
  color: var(--yellow);
  text-align: center;
  font-size: clamp(23px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 72px;
  align-items: center;
  padding: 82px 42px 42px;
}

.split.light {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.96fr);
  color: var(--black);
  background: var(--white);
}

.copy-block {
  position: relative;
}

.caret {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 19px solid var(--green);
}

.caret.green {
  top: -130px;
  left: 10px;
}

.caret.pink {
  top: -88px;
  right: 14px;
  border-top-color: var(--pink);
}

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

.copy-block h2 {
  margin-bottom: 8px;
  font-size: 34px;
  line-height: 1;
}

p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.38;
}

.split.light p,
.split.light .stats span {
  color: #24242a;
}

.mini {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 12px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 415px;
  margin-top: 20px;
}

.stats strong {
  display: block;
  color: var(--white);
  font-size: 34px;
  line-height: 0.9;
}

.dark-stats strong {
  color: var(--black);
}

.stats span {
  display: block;
  color: var(--white);
  font-size: 10px;
  line-height: 1.12;
}

.read-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--white);
  font-size: 11px;
}

.placeholder {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(16, 16, 21, 0.12);
  background-color: #f3f3f3;
}

.placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  pointer-events: none;
}

.placeholder.square {
  aspect-ratio: 1 / 0.92;
  border-radius: 10px;
}

.placeholder-checker {
  background:
    linear-gradient(45deg, #e7e7e7 25%, transparent 25% 75%, #e7e7e7 75%),
    linear-gradient(45deg, #e7e7e7 25%, transparent 25% 75%, #e7e7e7 75%),
    var(--white);
  background-position: 0 0, 16px 16px, 0 0;
  background-size: 32px 32px;
}

.feature-stage {
  padding: 242px 88px 78px;
}

.intro {
  margin: 0;
  text-align: center;
  color: var(--white);
  font-size: 12px;
}

.mini-logo {
  margin-bottom: 48px;
  text-align: center;
  font-size: 42px;
}

.feature-row {
  display: grid;
  grid-template-columns: 520px minmax(280px, 1fr);
  gap: 34px;
  align-items: center;
  max-width: 1110px;
  margin: 0 auto 88px;
}

.feature-row.reverse {
  grid-template-columns: minmax(280px, 1fr) 520px;
}

.feature-copy h3 {
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.02;
}

.feature-copy span {
  color: var(--yellow);
}

.feature-copy .hot {
  color: var(--pink);
}

.feature-copy p {
  max-width: 560px;
  margin-bottom: 14px;
}

.feature-copy a {
  font-size: 12px;
}

.window-art {
  position: relative;
  min-height: 245px;
  border-radius: 6px;
}

.window-art::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 12px 0 0 var(--yellow), 24px 0 0 var(--green);
}

.window-art::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: rgba(0, 0, 0, 0.04);
}

.page-hero {
  min-height: 374px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  padding: 0 40px 70px;
}

.page-hero-with-copy {
  min-height: 445px;
}

.page-hero h1 {
  text-align: center;
  font-size: clamp(64px, 9vw, 136px);
  line-height: 0.8;
}

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

.solution-row {
  display: grid;
  grid-template-columns: 290px minmax(0, 570px);
  gap: 100px;
  justify-content: center;
  padding: 66px 56px 64px;
  border-bottom: 1px solid var(--line);
}

.solution-row h2 {
  margin: 0;
  color: var(--yellow);
  font-size: 38px;
  line-height: 0.94;
}

.solution-copy p {
  margin-bottom: 13px;
  color: #c3c3ca;
  font-size: 13px;
}

.solution-copy strong {
  color: var(--white);
}

.solution-placeholder {
  display: block;
  min-height: 220px;
  margin-top: 34px;
  border-radius: 9px;
}

.model-browser {
  width: min(100%, 830px);
  margin: 0 auto;
  padding: 0 0 204px;
}

.model-tools {
  display: grid;
  grid-template-columns: 1fr 64px;
  gap: 14px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 66px;
  padding: 0 24px;
  color: #a7a7b0;
  background: #0a0a0f;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.search-bar svg,
.filter-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.search-bar input {
  width: 100%;
  color: var(--white);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 22px;
}

.filter-button {
  display: grid;
  place-items: center;
  height: 66px;
  color: var(--yellow);
  background: #0a0a0f;
  border: 1px solid var(--yellow);
  border-radius: 8px;
  cursor: pointer;
}

.chips {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 26px 0 32px;
}

.chips button {
  min-width: 42px;
  height: 28px;
  padding: 0 18px;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
}

.chips button.active {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
  font-weight: 700;
}

.chips span {
  margin-left: auto;
  color: #777781;
  font-size: 12px;
}

.model-card {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 12px;
  min-height: 142px;
  margin-bottom: 24px;
  padding: 22px 24px;
  background: #09090e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}

.model-dot {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  border-radius: 50%;
}

.model-dot.blue {
  background: #6683ff;
}

.model-dot.green {
  background: var(--green);
}

.model-dot.cyan {
  background: #78dfd6;
}

.model-dot.purple {
  background: #a778ff;
}

.model-card h2 {
  margin: 0 0 12px;
  font-size: 31px;
  line-height: 1;
}

.model-card p {
  margin-bottom: 7px;
  font-size: 16px;
}

.model-card small {
  color: #666671;
  font-size: 12px;
}

.badges {
  display: flex;
  gap: 8px;
}

.badges span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #80dffb;
  background: #0a4168;
  border-radius: 8px;
  font-size: 19px;
  font-weight: 700;
}

.empty {
  padding: 40px 0;
  text-align: center;
}

.page-hero p,
.docs-line {
  margin: 0;
  color: var(--white);
  text-align: center;
  font-size: 27px;
  font-weight: 700;
}

.pricing-panel {
  padding: 0 0 210px;
}

.payment-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 74px;
}

.payment-switch > span {
  margin-right: 22px;
  color: var(--white);
  font-size: 16px;
}

.payment-switch button {
  min-width: 118px;
  height: 58px;
  color: var(--white);
  background: #859400;
  border: 0;
  cursor: pointer;
}

.payment-switch button:first-of-type {
  border-radius: 999px 0 0 999px;
}

.payment-switch button:last-of-type {
  border-radius: 0 999px 999px 0;
}

.payment-switch button.active {
  color: var(--black);
  background: var(--yellow);
  font-weight: 800;
}

.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  width: min(100%, 760px);
  margin: 0 auto;
}

.plans article {
  display: grid;
  grid-template-rows: 192px 466px;
}

.plans h2 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.05;
}

.plans p {
  color: var(--white);
  font-size: 16px;
}

.plans strong {
  display: block;
  margin: 6px 0 10px;
  font-size: 64px;
  line-height: 0.9;
}

.plans small,
.plans em {
  display: block;
  color: var(--white);
  font-size: 16px;
}

.plan-placeholder {
  width: 100%;
  height: 466px;
  border-radius: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 130px 175px;
  gap: 58px;
  padding: 42px 38px 110px;
  color: var(--black);
  background: var(--white);
}

.site-footer p {
  margin-bottom: 22px;
  color: var(--black);
  font-size: 19px;
  font-weight: 700;
}

.site-footer strong {
  display: block;
  margin-bottom: 38px;
  color: var(--black);
  font-size: clamp(52px, 8vw, 105px);
  line-height: 0.78;
}

.site-footer h2 {
  margin: 0 0 18px;
  font-family: var(--ui);
  font-size: 21px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 13px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
}

.social-link svg {
  display: block;
  width: 54px;
  height: 54px;
}

.social-instagram svg {
  fill: none;
  stroke: var(--black);
  stroke-width: 5;
}

.social-linkedin rect {
  fill: var(--black);
}

.social-linkedin path {
  fill: var(--white);
  fill-rule: evenodd;
}

.social-x svg {
  fill: none;
  stroke: var(--black);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 6;
}

@media (max-width: 900px) {
  .site-frame {
    margin-top: 0;
    padding: 0;
  }

  .site-header {
    grid-template-columns: 74px minmax(0, 1fr) auto;
    min-height: 44px;
    overflow: hidden;
  }

  .mark {
    height: 44px;
  }

  .site-nav {
    min-width: 0;
    gap: 7px;
    padding: 0 8px;
    overflow-x: hidden;
    font-size: 8px;
    white-space: nowrap;
  }

  .header-actions {
    justify-self: end;
  }

  .header-actions a {
    height: 44px;
    min-width: 72px;
    font-size: 9px;
  }

  .header-actions .action-fill {
    min-width: 84px;
  }

  .hero {
    min-height: 420px;
    padding: 48px 24px;
  }

  .hero h1 {
    margin-top: 78px;
    font-size: clamp(44px, 15vw, 68px);
  }

  .split,
  .split.light,
  .feature-row,
  .feature-row.reverse,
  .solution-row,
  .plans,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .split,
  .split.light {
    gap: 32px;
    padding: 52px 24px;
  }

  .feature-stage {
    padding: 96px 24px 42px;
  }

  .window-art {
    min-height: 190px;
  }

  .page-hero {
    min-height: 260px;
    padding-bottom: 42px;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 15vw, 54px);
    overflow-wrap: break-word;
  }

  .solution-row {
    gap: 24px;
    padding: 54px 24px;
  }

  .model-browser {
    padding: 0 20px 92px;
  }

  .model-tools {
    grid-template-columns: 1fr 54px;
  }

  .chips {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .chips span {
    display: none;
  }

  .model-card {
    grid-template-columns: 18px 1fr;
  }

  .badges {
    grid-column: 2;
  }

  .payment-switch {
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px;
  }

  .payment-switch > span {
    width: 100%;
    margin: 0 0 6px;
    text-align: center;
  }

  .payment-switch button,
  .payment-switch button:first-of-type,
  .payment-switch button:last-of-type {
    border-radius: 999px;
  }

  .plans {
    width: auto;
    padding: 0 24px;
  }

  .plan-placeholder {
    height: 320px;
  }

  .plans article {
    grid-template-rows: auto 320px;
  }

  .site-footer {
    padding-left: 34px;
    padding-right: 34px;
  }

  .site-footer > * {
    min-width: 0;
  }

  .site-footer strong {
    max-width: 100%;
    font-size: clamp(36px, 12vw, 46px);
  }
}
