:root {
  --page: #f5f5f7;
  --surface: #ffffff;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(0, 0, 0, 0.08);
  --blue: #0071e3;
  --radius: 32px;
  --shadow: 0 42px 100px rgba(0, 0, 0, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

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

.section {
  padding-block: 140px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  border-color: rgba(0, 0, 0, 0.06);
  background: rgba(250, 250, 252, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 56px;
  font-size: 13px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 9px;
  width: fit-content;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.brand-mark,
.download-mark {
  width: 19px;
  height: 19px;
  border-radius: 6px;
  background:
    radial-gradient(circle at 68% 31%, #fff 0 10%, transparent 11%),
    linear-gradient(140deg, #3f7cff 5%, #7c44ff 46%, #ff4f9a 95%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.nav-links {
  display: flex;
  gap: 38px;
  color: #3a3a3c;
}

.nav-links a,
.footer-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--blue);
}

.nav-cta {
  justify-self: end;
  padding: 7px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.nav-cta:hover {
  background: #0077ed;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 164px;
  padding-bottom: 90px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero h1,
.statement h2,
.section-heading h2,
.workflow-heading h2,
.download h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(64px, 8vw, 112px);
  background: linear-gradient(145deg, #101012 20%, #55555b 82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-intro {
  margin: 36px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 450;
  line-height: 1.45;
  letter-spacing: -0.025em;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 17px;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.button-primary {
  color: #fff;
  background: var(--blue);
}

.button:hover {
  filter: brightness(1.05);
}

.text-link {
  color: var(--blue);
  font-size: 18px;
}

.text-link span {
  display: inline-block;
  margin-left: 4px;
  font-size: 26px;
  line-height: 0;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(3px);
}

.compatibility {
  margin: 18px 0 0;
  color: #86868b;
  font-size: 12px;
}

.hero-visual {
  position: relative;
  margin-top: 105px;
  perspective: 1400px;
}

.product-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 1.67;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  background: rgba(245, 245, 247, 0.88);
  box-shadow:
    0 55px 120px rgba(20, 22, 38, 0.2),
    0 10px 30px rgba(20, 22, 38, 0.1);
  transform: rotateX(2deg);
  backdrop-filter: blur(18px);
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 6.8%;
  min-height: 36px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  color: #76767b;
  font-size: 10px;
}

.traffic-lights {
  display: flex;
  gap: 6px;
}

.traffic-lights span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d2d2d7;
}

.window-title {
  font-weight: 500;
}

.window-action {
  justify-self: end;
  padding: 5px 10px;
  border-radius: 5px;
  color: white;
  background: #1d1d1f;
}

.app-layout {
  display: grid;
  grid-template-columns: 15% 1fr 18%;
  height: 93.2%;
}

.app-sidebar,
.app-inspector {
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.68);
}

.app-sidebar {
  border-right: 1px solid var(--line);
}

.sidebar-symbol {
  width: 25px;
  height: 25px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: linear-gradient(140deg, #704cff, #ff68a4);
}

.sidebar-line,
.inspector-heading {
  width: 74%;
  height: 7px;
  margin-bottom: 18px;
  border-radius: 5px;
  background: #d8d8dc;
}

.sidebar-line.active {
  width: 92%;
  box-shadow: 0 0 0 8px rgba(0, 113, 227, 0.07);
  background: #9aa7bd;
}

.sidebar-line.short {
  width: 52%;
}

.sidebar-space {
  height: 25%;
}

.app-canvas {
  display: grid;
  place-items: center;
  padding: 7%;
  background: #d9d9df;
}

.canvas-art {
  position: relative;
  overflow: hidden;
  width: 82%;
  aspect-ratio: 0.82;
  max-height: 92%;
  border-radius: 3px;
  color: #fff;
  background: #0b0b12;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}

.orb-one {
  top: 10%;
  left: 10%;
  width: 65%;
  aspect-ratio: 1;
  background: radial-gradient(circle at 40% 30%, #ff9aca, #8d40ff 55%, transparent 70%);
}

.orb-two {
  right: -7%;
  bottom: 8%;
  width: 58%;
  aspect-ratio: 1;
  background: radial-gradient(circle at 45% 45%, #39d9ff, #3159e8 55%, transparent 72%);
}

.orb-three {
  right: 2%;
  top: 30%;
  width: 38%;
  aspect-ratio: 1;
  background: radial-gradient(circle, #ff7246, #fa2c8b 52%, transparent 72%);
  mix-blend-mode: screen;
}

.canvas-copy {
  position: absolute;
  z-index: 2;
  inset: auto 8% 8%;
}

.canvas-copy span,
.poster small {
  display: block;
  margin-bottom: 7px;
  font-size: clamp(5px, 0.65vw, 9px);
  font-weight: 650;
  letter-spacing: 0.18em;
}

.canvas-copy strong {
  font-size: clamp(20px, 3vw, 46px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.app-inspector {
  border-left: 1px solid var(--line);
}

.inspector-heading {
  width: 58%;
}

.inspector-heading.small {
  width: 40%;
}

.inspector-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block: 17px;
}

.inspector-row span {
  width: 38%;
  height: 6px;
  border-radius: 4px;
  background: #d6d6da;
}

.inspector-row i {
  width: 35%;
  height: 19px;
  border: 1px solid #d5d5d8;
  border-radius: 5px;
  background: #fff;
}

.inspector-divider {
  height: 1px;
  margin: 24px -18px;
  background: var(--line);
}

.color-row {
  display: flex;
  gap: 7px;
}

.color-row span {
  width: 20%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #6651e7;
}

.color-row span:nth-child(2) {
  background: #f44c91;
}

.color-row span:nth-child(3) {
  background: #46a6ec;
}

.color-row span:nth-child(4) {
  background: #ef9855;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.32;
}

.ambient-one {
  top: -13%;
  left: 5%;
  width: 42%;
  aspect-ratio: 1;
  background: #8c5dff;
}

.ambient-two {
  right: 2%;
  bottom: -12%;
  width: 48%;
  aspect-ratio: 1;
  background: #37baff;
}

.statement {
  padding-top: 180px;
  padding-bottom: 190px;
  text-align: center;
}

.statement h2,
.section-heading h2,
.workflow-heading h2,
.download h2 {
  font-size: clamp(50px, 6.4vw, 84px);
}

.statement h2 {
  color: #28282b;
}

.section-heading {
  margin-bottom: 60px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  padding: 54px;
  border-radius: var(--radius);
  background: var(--surface);
}

.feature-card-large {
  grid-column: 1 / -1;
  min-height: 640px;
}

.feature-card-dark {
  color: #fff;
  background: #101012;
}

.feature-copy {
  position: relative;
  z-index: 2;
  max-width: 570px;
}

.feature-kicker {
  margin: 0 0 12px;
  color: #7e57e8;
  font-size: 16px;
  font-weight: 650;
}

.feature-card-dark .feature-kicker {
  color: #ac8cff;
}

.feature-copy h3 {
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.feature-copy > p:last-child {
  max-width: 440px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.feature-card-dark .feature-copy > p:last-child {
  color: #a1a1a6;
}

.performance-visual {
  position: absolute;
  right: 8%;
  bottom: 7%;
  left: 8%;
  height: 46%;
  border-radius: 24px;
  background: linear-gradient(135deg, #ece7ff, #e0f7ff);
}

.performance-ring {
  position: absolute;
  top: 50%;
  left: 12%;
  display: grid;
  place-content: center;
  width: 190px;
  aspect-ratio: 1;
  border-radius: 50%;
  text-align: center;
  background:
    radial-gradient(circle at center, #f3f0ff 58%, transparent 59%),
    conic-gradient(#6544e8 0 82%, rgba(101, 68, 232, 0.12) 82%);
  transform: translateY(-50%);
}

.performance-ring span {
  font-size: 54px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.performance-ring small {
  color: var(--muted);
}

.performance-lines {
  position: absolute;
  right: 9%;
  bottom: 20%;
  display: flex;
  align-items: end;
  gap: 13px;
  width: 48%;
  height: 60%;
}

.performance-lines i {
  flex: 1;
  height: 35%;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(#7657e8, #4da8ec);
}

.performance-lines i:nth-child(2) {
  height: 48%;
}

.performance-lines i:nth-child(3) {
  height: 42%;
}

.performance-lines i:nth-child(4) {
  height: 70%;
}

.performance-lines i:nth-child(5) {
  height: 62%;
}

.performance-lines i:nth-child(6) {
  height: 88%;
}

.performance-lines i:nth-child(7) {
  height: 96%;
}

.spark {
  position: absolute;
  right: -7%;
  bottom: -4%;
  width: 78%;
  aspect-ratio: 1;
}

.spark span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #9672ff, transparent);
  box-shadow: 0 0 35px #7247ff;
}

.spark span:nth-child(2) {
  transform: rotate(45deg);
}

.spark span:nth-child(3) {
  transform: rotate(90deg);
}

.spark span:nth-child(4) {
  transform: rotate(135deg);
}

.collaboration-visual {
  position: absolute;
  inset: auto 12% 10%;
  height: 42%;
  border-radius: 22px;
  background: linear-gradient(145deg, #e8f5ff, #f2eaff);
}

.avatar {
  position: absolute;
  display: grid;
  place-items: center;
  width: 62px;
  aspect-ratio: 1;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: 650;
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.12);
}

.avatar-one {
  top: 20%;
  left: 15%;
  background: #ed5b82;
}

.avatar-two {
  right: 16%;
  bottom: 15%;
  background: #566de7;
}

.avatar-three {
  top: 16%;
  right: 30%;
  background: #2baea0;
}

.comment-pill {
  position: absolute;
  bottom: 17%;
  left: 20%;
  padding: 12px 16px;
  border-radius: 12px 12px 12px 2px;
  color: #4f4f55;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  font-size: 13px;
}

.workflow {
  overflow: hidden;
  padding-top: 190px;
  background: #0a0a0b;
  color: #f5f5f7;
}

.workflow-heading {
  text-align: center;
}

.workflow-heading .eyebrow {
  color: #8e8e93;
}

.workflow-heading h2 {
  background: linear-gradient(180deg, #fff, #94949b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.workflow-heading > p:last-child {
  max-width: 680px;
  margin: 34px auto 0;
  color: #a1a1a6;
  font-size: 21px;
  line-height: 1.55;
}

.workflow-stage {
  width: min(1320px, calc(100% - 40px));
  margin: 100px auto -90px;
  padding: 9px 9px 0;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(130deg, #777780, #222228 50%, #777780);
  box-shadow: 0 -30px 100px rgba(87, 66, 255, 0.16);
}

.workflow-screen {
  overflow: hidden;
  aspect-ratio: 1.75;
  border-radius: 20px 20px 0 0;
  color: #1d1d1f;
  background: #e2e2e5;
}

.screen-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 6%;
  min-height: 32px;
  padding-inline: 14px;
  background: #f4f4f5;
}

.screen-toolbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8c8cc;
}

.screen-toolbar i {
  width: 10%;
  height: 6px;
  margin: auto;
  border-radius: 4px;
  background: #d4d4d7;
}

.screen-body {
  display: grid;
  grid-template-columns: 14% 1fr 18%;
  height: 94%;
}

.screen-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  background: #f6f6f7;
}

.screen-panel.right {
  border-right: 0;
  border-left: 1px solid var(--line);
}

.screen-panel span {
  width: 75%;
  height: 7px;
  border-radius: 4px;
  background: #d5d5d9;
}

.screen-work {
  display: grid;
  place-items: center;
  padding: 5%;
}

.poster {
  position: relative;
  overflow: hidden;
  width: 54%;
  aspect-ratio: 0.78;
  padding: 8%;
  color: white;
  background: #0f1017;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.poster-glow {
  position: absolute;
  top: 7%;
  left: 10%;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 65% 35%, #ffcd87 0 7%, transparent 8%),
    radial-gradient(circle at 50% 50%, #e846aa, #6e55e7 40%, #1948a8 62%, transparent 70%);
  filter: blur(4px);
}

.poster small,
.poster strong {
  position: absolute;
  z-index: 2;
  bottom: 11%;
}

.poster small {
  bottom: 27%;
}

.poster strong {
  font-size: clamp(20px, 4vw, 60px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  padding-block: 140px;
}

.value-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  border-radius: 14px;
  color: #6a4ce0;
  background: #ebe6ff;
  font-size: 25px;
}

.value h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.value p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.download {
  position: relative;
  overflow: hidden;
  padding-block: 170px;
  color: #fff;
  background: #08080a;
  text-align: center;
}

.download-content {
  position: relative;
  z-index: 2;
}

.download-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 32px;
  border-radius: 20px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.45),
    0 20px 45px rgba(93, 68, 255, 0.32);
}

.download .eyebrow {
  color: #a1a1a6;
}

.download h2 {
  background: linear-gradient(180deg, #fff 20%, #a5a5ad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.download-content > p:not(.eyebrow) {
  margin: 28px 0 34px;
  color: #a1a1a6;
  font-size: 19px;
}

.button-light {
  color: #111;
  background: #fff;
}

.version {
  display: block;
  margin-top: 20px;
  color: #77777d;
  font-size: 12px;
}

.download-glow {
  position: absolute;
  bottom: -380px;
  left: 50%;
  width: 850px;
  height: 600px;
  border-radius: 50%;
  background: #593be6;
  filter: blur(140px);
  opacity: 0.3;
  transform: translateX(-50%);
}

.footer {
  padding-block: 38px;
  background: #08080a;
  color: #8e8e93;
  font-size: 12px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  color: #f5f5f7;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-inner > p {
  justify-self: end;
  margin: 0;
}

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

.reveal[data-delay="1"] {
  transition-delay: 0.12s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.24s;
}

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

@media (max-width: 800px) {
  .shell {
    width: min(100% - 36px, 680px);
  }

  .section {
    padding-block: 90px;
  }

  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    position: absolute;
    top: 56px;
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(250, 250, 252, 0.97);
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s;
  }

  .nav-links.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

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

  .nav-cta {
    display: none;
  }

  .menu-button {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 8px;
    border: 0;
    background: transparent;
  }

  .menu-button span {
    width: 16px;
    height: 1px;
    background: #1d1d1f;
    transition: transform 0.2s ease;
  }

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

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero {
    padding-top: 130px;
    padding-bottom: 55px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 76px);
  }

  .desktop-only {
    display: none;
  }

  .hero-visual {
    width: calc(100% - 12px);
    margin-top: 72px;
  }

  .app-inspector {
    display: none;
  }

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

  .product-window {
    aspect-ratio: 1.25;
    border-radius: 13px;
  }

  .canvas-art {
    width: 88%;
  }

  .statement {
    padding-block: 120px;
  }

  .statement h2,
  .section-heading h2,
  .workflow-heading h2,
  .download h2 {
    font-size: clamp(44px, 12vw, 64px);
  }

  .feature-grid,
  .values {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 560px;
    padding: 36px 28px;
    border-radius: 24px;
  }

  .feature-card-large {
    grid-column: auto;
  }

  .feature-copy h3 {
    font-size: 43px;
  }

  .performance-visual {
    right: 28px;
    bottom: 28px;
    left: 28px;
    height: 43%;
  }

  .performance-ring {
    left: 8%;
    width: 120px;
  }

  .performance-ring span {
    font-size: 38px;
  }

  .performance-lines {
    right: 7%;
    gap: 7px;
    width: 46%;
  }

  .workflow {
    padding-top: 120px;
  }

  .workflow-heading > p:last-child {
    font-size: 18px;
  }

  .workflow-stage {
    width: calc(100% - 18px);
    margin-top: 70px;
    margin-bottom: -30px;
    padding: 5px 5px 0;
    border-radius: 16px 16px 0 0;
  }

  .workflow-screen {
    aspect-ratio: 1.18;
    border-radius: 11px 11px 0 0;
  }

  .screen-body {
    grid-template-columns: 18% 1fr;
  }

  .screen-panel.right {
    display: none;
  }

  .poster {
    width: 78%;
  }

  .values {
    gap: 60px;
  }

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

  .footer-inner > p {
    justify-self: start;
  }
}

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

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

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

/* Product suite */

.suite-hero {
  position: relative;
  overflow: hidden;
  min-height: 1080px;
  padding-top: 176px;
  background:
    radial-gradient(circle at 50% 65%, rgba(109, 87, 238, 0.1), transparent 33%),
    var(--page);
}

.suite-hero-copy {
  position: relative;
  z-index: 3;
  text-align: center;
}

.suite-hero h1,
.suite-statement h2,
.products .section-heading h2,
.principles-heading h2,
.updates h2 {
  margin: 0;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.suite-hero h1 {
  color: transparent;
  background: linear-gradient(145deg, #121214 20%, #55555b 88%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(64px, 8vw, 112px);
}

.suite-orbit {
  position: relative;
  height: 500px;
  margin-top: 65px;
}

.suite-orbit::before,
.suite-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(76, 67, 120, 0.1);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.suite-orbit::before {
  width: 690px;
  height: 300px;
  transform: translate(-50%, -50%) rotate(-7deg);
}

.suite-orbit::after {
  width: 480px;
  height: 210px;
  transform: translate(-50%, -50%) rotate(18deg);
}

.suite-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 250px;
  border-radius: 50%;
  background: rgba(111, 77, 235, 0.18);
  filter: blur(90px);
  transform: translate(-50%, -50%);
}

.suite-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 160px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 30px 75px rgba(54, 39, 105, 0.16),
    inset 0 0 0 1px rgba(92, 73, 170, 0.06);
  transform: translate(-50%, -50%) rotate(-5deg);
  backdrop-filter: blur(20px);
}

.core-mark {
  width: 62px;
  height: 62px;
  border-radius: 19px;
  background:
    radial-gradient(circle at 68% 31%, #fff 0 10%, transparent 11%),
    linear-gradient(140deg, #3f7cff 5%, #7c44ff 46%, #ff4f9a 95%);
  box-shadow: 0 16px 35px rgba(109, 69, 226, 0.3);
}

.suite-core small {
  position: absolute;
  bottom: 22px;
  color: #747078;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.orbit-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 178px;
  padding: 12px 18px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(45, 39, 77, 0.12);
  font-size: 15px;
  font-weight: 620;
  backdrop-filter: blur(18px);
}

.orbit-clairview {
  top: 14%;
  left: 9%;
  transform: rotate(-6deg);
}

.orbit-flowspace {
  top: 25%;
  right: 7%;
  transform: rotate(5deg);
}

.orbit-cut {
  right: 24%;
  bottom: 3%;
  transform: rotate(-3deg);
}

.orbit-app-icon,
.product-app-icon {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.15),
    0 8px 18px rgba(20, 20, 30, 0.13);
}

.orbit-app-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
}

.product-app-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
}

.clairview-icon {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #61b8ff, #4d48dc);
}

.clairview-icon::before {
  width: 56%;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
}

.clairview-icon i {
  position: absolute;
  width: 16%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: white;
}

.flowspace-icon {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #292632, #0c0b10);
}

.flowspace-icon::before,
.flowspace-icon::after,
.flowspace-icon i {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.flowspace-icon::before {
  width: 62%;
  aspect-ratio: 1;
  border: 1.5px solid rgba(160, 126, 255, 0.75);
}

.flowspace-icon::after {
  width: 20%;
  aspect-ratio: 1;
  background: #a67dff;
  box-shadow: 0 0 12px #8058e4;
}

.flowspace-icon i {
  width: 11%;
  aspect-ratio: 1;
  background: #f1ebff;
}

.flowspace-icon i:nth-child(1) {
  top: 18%;
}

.flowspace-icon i:nth-child(2) {
  right: 18%;
  bottom: 22%;
}

.flowspace-icon i:nth-child(3) {
  bottom: 22%;
  left: 18%;
}

.cut-icon {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ff6a55, #d71f7c 55%, #5e36e5);
}

.cut-icon::before,
.cut-icon::after {
  position: absolute;
  width: 48%;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
  content: "";
}

.cut-icon::before {
  transform: rotate(45deg);
}

.cut-icon::after {
  transform: rotate(-45deg);
}

.cut-icon i {
  z-index: 2;
  width: 18%;
  aspect-ratio: 1;
  border: 2px solid white;
  border-radius: 50%;
}

.suite-statement {
  padding-top: 135px;
  padding-bottom: 210px;
  text-align: center;
}

.suite-statement h2,
.products .section-heading h2,
.principles-heading h2,
.updates h2 {
  font-size: clamp(50px, 6.4vw, 84px);
}

.products {
  padding-top: 0;
}

.products .section-heading {
  margin-bottom: 85px;
}

.product-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  min-height: 780px;
  margin-bottom: 34px;
  border-radius: 38px;
  background: #fff;
}

.product-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px 24px 68px 68px;
}

.product-title-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 58px;
}

.product-title-row h3 {
  margin: 4px 0 0;
  font-size: 31px;
  letter-spacing: -0.04em;
}

.status {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 650;
}

.status-building {
  color: #315fc6;
  background: #e8f1ff;
}

.status-next {
  color: #a74466;
  background: #ffe8ef;
}

.product-tagline {
  margin: 0;
  font-size: clamp(44px, 4.7vw, 68px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.product-description {
  max-width: 440px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
}

.product-link {
  color: var(--blue);
  font-size: 16px;
}

.product-link span {
  display: inline-block;
  margin-left: 3px;
  font-size: 22px;
  transition: transform 0.2s ease;
}

.product-link:hover span {
  transform: translateX(3px);
}

.platform {
  padding: 5px 9px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 999px;
  color: #7a7a80;
  font-size: 10px;
}

.clairview-ui {
  align-self: center;
  overflow: hidden;
  width: 112%;
  aspect-ratio: 1.25;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px 0 0 20px;
  background: #e8e9ed;
  box-shadow: -30px 40px 80px rgba(23, 43, 92, 0.18);
  transform: translateX(2%);
}

.mock-window-bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 7%;
  min-height: 32px;
  padding-inline: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(250, 250, 252, 0.86);
}

.mock-window-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9c9ce;
}

.mock-window-bar small {
  position: absolute;
  left: 50%;
  color: #77777d;
  transform: translateX(-50%);
}

.clairview-body {
  display: grid;
  grid-template-columns: 13% 1fr 22%;
  height: 93%;
}

.cv-sidebar,
.cv-inspector {
  padding: 18px 14px;
  background: rgba(250, 250, 252, 0.88);
}

.cv-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 19px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.cv-logo {
  width: 27px;
  height: 27px;
  margin-bottom: 9px;
  border-radius: 8px;
  background: linear-gradient(145deg, #61b8ff, #4d48dc);
}

.cv-sidebar i {
  width: 46%;
  height: 6px;
  border-radius: 5px;
  background: #ced0d5;
}

.cv-sidebar i.active {
  width: 58%;
  background: #5d74d9;
  box-shadow: 0 0 0 8px rgba(78, 88, 210, 0.08);
}

.cv-sidebar b {
  flex: 1;
}

.cv-canvas {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 8%;
}

.cv-toolbar {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 50%;
  display: flex;
  gap: 7px;
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.08);
  transform: translateX(-50%);
}

.cv-toolbar i {
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: #aeb0b6;
}

.cv-image {
  position: relative;
  overflow: hidden;
  width: 74%;
  aspect-ratio: 0.82;
  color: white;
  background: #10121b;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.25);
}

.cv-sphere {
  position: absolute;
  top: 8%;
  right: -9%;
  width: 98%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 26%, #fff3ce 0 3%, transparent 4%),
    radial-gradient(circle at 36% 35%, #fd8ac2, #7354eb 38%, #2e64ba 65%, transparent 70%);
  filter: blur(2px);
}

.cv-image-copy {
  position: absolute;
  bottom: 9%;
  left: 9%;
}

.cv-image-copy small {
  display: block;
  margin-bottom: 8px;
  font-size: 7px;
  font-weight: 650;
  letter-spacing: 0.17em;
}

.cv-image-copy strong {
  font-size: clamp(22px, 3vw, 46px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.cv-filmstrip {
  position: absolute;
  right: 3%;
  bottom: 12px;
  left: 3%;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.cv-filmstrip i {
  width: 12%;
  aspect-ratio: 1.5;
  border-radius: 3px;
  background: linear-gradient(145deg, #334b87, #a7539f);
  opacity: 0.55;
}

.cv-filmstrip i.selected {
  opacity: 1;
  box-shadow: 0 0 0 2px #5570d9;
}

.cv-inspector {
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.cv-inspector > strong {
  color: #58585e;
  font-size: 11px;
}

.analysis-score {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 25px 0;
}

.analysis-score span {
  color: #536bd2;
  font-size: 36px;
  font-weight: 680;
  letter-spacing: -0.06em;
}

.analysis-score small {
  color: #9b9ba0;
  font-size: 8px;
}

.cv-inspector > i {
  display: block;
  width: 80%;
  height: 6px;
  margin: 18px 0;
  border-radius: 4px;
  background: #d7d8dc;
}

.cv-inspector > i:nth-of-type(2) {
  width: 58%;
}

.color-dots {
  display: flex;
  gap: 6px;
  margin-top: 35px;
}

.color-dots b {
  width: 19%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #5b62d7;
}

.color-dots b:nth-child(2) {
  background: #dd65a3;
}

.color-dots b:nth-child(3) {
  background: #54a1d2;
}

.color-dots b:nth-child(4) {
  background: #f3bd7d;
}

.flowspace-showcase {
  color: #f5f5f7;
  background:
    radial-gradient(circle at 80% 20%, rgba(117, 76, 220, 0.22), transparent 35%),
    #0c0b10;
}

.flowspace-showcase .product-description {
  color: #a2a1a8;
}

.flowspace-showcase .status-building {
  color: #c8b5ff;
  background: rgba(141, 98, 238, 0.18);
}

.light-link {
  color: #bca3ff;
}

.dark-platform {
  border-color: rgba(255, 255, 255, 0.13);
  color: #8f8e96;
}

.flowspace-visual {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.flow-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 76%);
}

.flow-lines {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 92%;
  transform: translate(-50%, -50%);
}

.flow-lines path {
  fill: none;
  stroke: rgba(172, 133, 255, 0.42);
  stroke-width: 1.5;
}

.flow-node {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(35, 32, 43, 0.88);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(15px);
}

.node-main {
  top: 39%;
  left: 37%;
  width: 220px;
  padding: 22px;
}

.node-main span,
.node-image span {
  display: block;
  margin-bottom: 8px;
  color: #98969e;
  font-size: 10px;
}

.node-main strong {
  font-size: 19px;
}

.node-progress {
  height: 4px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #37333f;
}

.node-progress i {
  display: block;
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, #7757e8, #c17cf2);
}

.node-image {
  top: 10%;
  left: 6%;
  width: 155px;
  padding: 10px;
}

.node-art {
  height: 100px;
  margin-bottom: 10px;
  border-radius: 9px;
  background:
    radial-gradient(circle at 35% 40%, #ffb4df, #8c56df 35%, transparent 55%),
    #23202d;
}

.node-image span {
  margin: 0 3px 3px;
  color: #d4d1da;
}

.node-note {
  top: 13%;
  right: 6%;
  width: 150px;
  padding: 18px;
}

.node-note small {
  display: block;
  margin-bottom: 13px;
  color: #a787ef;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.node-note strong {
  font-size: 15px;
  line-height: 1.4;
}

.node-task {
  bottom: 13%;
  left: 6%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 17px;
  font-size: 12px;
}

.node-task i {
  width: 15px;
  height: 15px;
  border: 1px solid #7d62c7;
  border-radius: 5px;
}

.cut-showcase {
  color: white;
  background:
    radial-gradient(circle at 88% 20%, rgba(245, 78, 125, 0.19), transparent 30%),
    linear-gradient(145deg, #18131b, #0a0a0d 64%);
}

.cut-showcase .product-description {
  color: #aaa5ad;
}

.naming-note {
  width: fit-content;
  margin: 36px 0 0;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #918b95;
  font-size: 11px;
}

.cut-visual {
  position: relative;
  align-self: center;
  overflow: hidden;
  width: 108%;
  height: 76%;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px 0 0 22px;
  background: #151419;
  box-shadow: -30px 35px 75px rgba(0, 0, 0, 0.34);
}

.cut-preview {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  height: 65%;
  background: #09090b;
}

.preview-light {
  width: 70%;
  aspect-ratio: 1.5;
  border-radius: 50%;
  background:
    radial-gradient(circle at 70% 35%, #ffb16e 0 5%, transparent 6%),
    radial-gradient(ellipse at 50% 55%, #f14685, #6c3fe4 42%, #1c68a5 65%, transparent 71%);
  filter: blur(9px);
  transform: rotate(-9deg);
}

.play-button {
  position: absolute;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding-left: 4px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.cut-preview small {
  position: absolute;
  right: 18px;
  bottom: 13px;
  color: #a8a5ac;
  font-size: 9px;
}

.cut-timeline {
  display: grid;
  grid-template-columns: 38px 1fr;
  height: 35%;
  padding: 16px 18px 16px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #1b1a1f;
}

.timeline-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  color: #77737c;
  font-size: 8px;
}

.timeline-tracks {
  position: relative;
  display: grid;
  align-content: center;
  gap: 9px;
}

.video-track {
  display: flex;
  gap: 3px;
  height: 54px;
}

.video-track i {
  flex: 1;
  border-radius: 3px;
  background:
    radial-gradient(circle at 60% 35%, rgba(244, 84, 134, 0.8), transparent 38%),
    #393044;
}

.video-track i:nth-child(even) {
  background:
    radial-gradient(circle at 30% 55%, rgba(78, 112, 219, 0.85), transparent 38%),
    #292f43;
}

.audio-track {
  height: 35px;
  padding-inline: 7px;
  border-radius: 3px;
  background: rgba(97, 69, 164, 0.35);
}

.audio-track svg {
  width: 100%;
  height: 100%;
}

.audio-track path {
  fill: none;
  stroke: #b390ee;
  stroke-width: 1;
}

.playhead {
  position: absolute;
  top: -7px;
  bottom: -6px;
  left: 53%;
  width: 1px;
  background: #ff627e;
  box-shadow: 0 0 7px #ff3f68;
}

.playhead::before {
  position: absolute;
  top: 0;
  left: -4px;
  width: 9px;
  height: 6px;
  border-radius: 2px;
  background: #ff627e;
  content: "";
}

.ai-edit-pill {
  position: absolute;
  right: 22px;
  bottom: 18px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(38, 34, 43, 0.9);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  color: #d6d1da;
  font-size: 10px;
}

.ai-edit-pill span {
  margin-right: 5px;
  color: #ff7295;
}

.principles {
  color: #f5f5f7;
  background: #09090b;
}

.principles-heading {
  max-width: 950px;
  padding-top: 35px;
  text-align: center;
}

.principles-heading .eyebrow {
  color: #8d8d94;
}

.principles-heading h2 {
  color: transparent;
  background: linear-gradient(180deg, #fff, #9999a0);
  -webkit-background-clip: text;
  background-clip: text;
}

.principles-heading > p:last-child {
  max-width: 680px;
  margin: 34px auto 0;
  color: #9d9da3;
  font-size: 20px;
  line-height: 1.6;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 95px;
  padding-bottom: 25px;
}

.principle {
  min-height: 300px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: linear-gradient(145deg, #151518, #0e0e10);
}

.principle > span {
  color: #716e77;
  font-size: 11px;
  font-weight: 650;
}

.principle h3 {
  margin: 105px 0 14px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.principle p {
  margin: 0;
  color: #96969c;
  line-height: 1.6;
}

.updates {
  position: relative;
  overflow: hidden;
  padding-block: 170px;
  color: #fff;
  background: #08080a;
  text-align: center;
}

.updates-content {
  position: relative;
  z-index: 2;
}

.updates .download-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 32px;
  border-radius: 20px;
}

.updates .eyebrow {
  color: #96969c;
}

.updates h2 {
  color: transparent;
  background: linear-gradient(180deg, #fff 20%, #a5a5ad);
  -webkit-background-clip: text;
  background-clip: text;
}

.updates-content > p:not(.eyebrow) {
  max-width: 600px;
  margin: 30px auto 36px;
  color: #a1a1a6;
  font-size: 18px;
  line-height: 1.6;
}

.updates-glow {
  position: absolute;
  bottom: -360px;
  left: 50%;
  width: 900px;
  height: 620px;
  border-radius: 50%;
  background: #593be6;
  filter: blur(145px);
  opacity: 0.27;
  transform: translateX(-50%);
}

@media (max-width: 900px) {
  .suite-hero {
    min-height: 950px;
    padding-top: 145px;
  }

  .suite-orbit {
    width: calc(100% - 20px);
    height: 430px;
  }

  .suite-orbit::before {
    width: 600px;
  }

  .orbit-clairview {
    left: 2%;
  }

  .orbit-flowspace {
    right: 1%;
  }

  .orbit-cut {
    right: 16%;
  }

  .product-showcase {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .product-copy {
    padding: 60px;
  }

  .product-description {
    max-width: 580px;
  }

  .clairview-ui,
  .cut-visual {
    width: calc(100% - 70px);
    margin: 0 0 55px auto;
    border-radius: 18px 0 0 18px;
  }

  .flowspace-visual {
    min-height: 650px;
  }
}

@media (max-width: 600px) {
  .suite-hero {
    min-height: 800px;
    padding-top: 130px;
  }

  .suite-hero h1 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .suite-orbit {
    height: 330px;
    margin-top: 50px;
  }

  .suite-orbit::before {
    width: 390px;
    height: 200px;
  }

  .suite-orbit::after {
    width: 270px;
    height: 140px;
  }

  .suite-core {
    width: 110px;
    border-radius: 30px;
  }

  .core-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .suite-core small {
    bottom: 14px;
    font-size: 7px;
  }

  .orbit-card {
    min-width: 0;
    gap: 8px;
    padding: 8px 11px 8px 8px;
    border-radius: 16px;
    font-size: 11px;
  }

  .orbit-app-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .orbit-clairview {
    top: 6%;
    left: 0;
  }

  .orbit-flowspace {
    top: 20%;
    right: -3%;
  }

  .orbit-cut {
    right: 4%;
    bottom: 4%;
  }

  .suite-statement {
    padding-top: 110px;
    padding-bottom: 140px;
  }

  .suite-statement h2,
  .products .section-heading h2,
  .principles-heading h2,
  .updates h2 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .products .section-heading {
    margin-bottom: 55px;
  }

  .product-showcase {
    margin-bottom: 20px;
    border-radius: 25px;
  }

  .product-copy {
    padding: 38px 25px 50px;
  }

  .product-title-row {
    gap: 14px;
    margin-bottom: 42px;
  }

  .product-app-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .product-title-row h3 {
    font-size: 25px;
  }

  .product-tagline {
    font-size: 43px;
  }

  .product-description {
    font-size: 16px;
  }

  .clairview-ui,
  .cut-visual {
    width: calc(100% - 22px);
    margin-bottom: 22px;
  }

  .clairview-ui {
    aspect-ratio: 0.95;
  }

  .clairview-body {
    grid-template-columns: 16% 1fr;
  }

  .cv-inspector {
    display: none;
  }

  .cv-image {
    width: 82%;
  }

  .flowspace-visual {
    min-height: 520px;
  }

  .node-main {
    top: 39%;
    left: 28%;
    width: 190px;
  }

  .node-image {
    top: 6%;
    left: 5%;
    width: 130px;
  }

  .node-note {
    top: 10%;
    right: 4%;
    width: 130px;
  }

  .node-task {
    bottom: 11%;
    left: 5%;
  }

  .cut-visual {
    min-height: 430px;
    height: 430px;
  }

  .cut-preview {
    height: 61%;
  }

  .cut-timeline {
    height: 39%;
  }

  .ai-edit-pill {
    right: 12px;
    bottom: 11px;
  }

  .principles {
    padding-top: 120px;
  }

  .principles-heading > p:last-child {
    font-size: 17px;
  }

  .principle-grid {
    grid-template-columns: 1fr;
    margin-top: 65px;
  }

  .principle {
    min-height: 245px;
  }

  .principle h3 {
    margin-top: 70px;
  }
}
