.landing-balanced-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.landing-balanced-heading-inline {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.9fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
}

.landing-balanced-heading h2,
.landing-trust-copy h2,
.landing-api-panel h2,
.landing-final-copy h2 {
  margin: 0;
  color: var(--landing-ink);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 0;
  line-height: 1.04;
}

.landing-balanced-heading p:not(.landing-eyebrow),
.landing-trust-copy p:not(.landing-eyebrow),
.landing-api-panel p:not(.landing-eyebrow),
.landing-final-copy p:not(.landing-eyebrow),
.landing-use-tile p,
.landing-setup-steps p,
.landing-setup-video > span:not(.landing-video-frame) {
  color: var(--landing-muted);
  font-size: 17px;
}

.landing-balanced-heading p:not(.landing-eyebrow) {
  margin: 12px 0 0;
}

.landing-use-cases-balanced .landing-balanced-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.landing-use-cases-balanced,
.landing-trust-section,
.landing-setup-section,
.landing-api-agents-section,
.landing-final-section {
  padding-top: clamp(44px, 7vw, 82px);
  padding-bottom: clamp(44px, 7vw, 82px);
}

.landing-use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
}

.landing-use-tile {
  display: flex;
  min-height: 348px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)), rgba(255, 255, 255, 0.025);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    var(--landing-shadow-soft);
  padding: 20px;
  text-decoration: none;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.landing-use-tile:hover {
  border-color: rgba(120, 132, 255, 0.5);
  background: linear-gradient(180deg, rgba(88, 101, 242, 0.105), rgba(88, 101, 242, 0.045)), rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 42px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.use-tile-visual {
  position: relative;
  display: block;
  flex: 0 0 auto;
  aspect-ratio: 304 / 132;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 16%, rgba(88, 101, 242, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(88, 101, 242, 0.12), transparent 44%), rgba(255, 255, 255, 0.032);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -20px 32px rgba(0, 0, 0, 0.12);
}

.use-tile-visual > * {
  box-sizing: border-box;
}

.home-usecase-fixed-scene {
  --home-usecase-stage-width: 304px;
  --home-usecase-stage-height: 132px;
  position: absolute;
  inset: 0;
  container-type: inline-size;
}

.home-usecase-fixed-stage {
  position: absolute;
  inset: 0 auto auto 0;
  width: var(--home-usecase-stage-width);
  height: var(--home-usecase-stage-height);
  transform-origin: top left;
  transform: scale(calc(100cqw / var(--home-usecase-stage-width)));
}

.landing-use-tile h3 {
  margin: 20px 0 0;
  color: var(--landing-ink);
  font-size: 24px;
  line-height: 1.08;
}

.landing-use-tile p {
  margin: 9px 0 0;
  color: #b4b4b4;
  font-size: 15px;
  line-height: 1.46;
}

.landing-use-tile-link {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: #d3d7ff;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.1;
  text-decoration: none;
}

.landing-use-tile-link::after {
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.landing-use-tile:hover .landing-use-tile-link {
  color: #ffffff;
}

.landing-use-tile:hover .landing-use-tile-link::after {
  transform: translateX(3px) rotate(45deg);
}

.landing-trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 0.9fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  border: 1px solid rgba(88, 101, 242, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 0%, rgba(67, 181, 129, 0.11), transparent 34%),
    linear-gradient(135deg, rgba(88, 101, 242, 0.12), transparent 46%), rgba(255, 255, 255, 0.03);
  box-shadow: var(--landing-shadow-soft);
  padding: clamp(22px, 5vw, 42px);
}

.landing-trust-copy {
  max-width: 560px;
}

.landing-trust-copy p:not(.landing-eyebrow) {
  margin: 14px 0 0;
  line-height: 1.55;
}

.landing-trust-exclusive {
  max-width: 500px;
}

.landing-trust-exclusive strong {
  color: var(--landing-ink);
}

.landing-trust-metric {
  display: inline-grid;
  width: min(100%, 244px);
  gap: 4px;
  border: 1px solid rgba(88, 101, 242, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(88, 101, 242, 0.2), rgba(18, 20, 25, 0.58)),
    rgba(88, 101, 242, 0.07);
  margin-top: 20px;
  padding: 16px 18px;
  box-shadow:
    0 12px 28px rgba(88, 101, 242, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.landing-trust-metric strong {
  color: var(--landing-ink);
  font-size: clamp(48px, 5vw, 64px);
  line-height: 0.94;
}

.landing-trust-metric span {
  color: var(--landing-muted);
  font-size: 14px;
  font-weight: 800;
}

.landing-trust-copy .landing-text-link {
  display: flex;
  width: max-content;
  margin-top: 18px;
}

.landing-trust-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.landing-trust-proof {
  display: grid;
  min-height: 152px;
  align-content: start;
  gap: 8px;
  border: 1px solid var(--landing-line-soft);
  border-radius: 8px;
  background: rgba(18, 20, 25, 0.54);
  padding: 16px;
  color: var(--landing-muted);
  font-size: 14px;
  text-decoration: none;
}

.landing-trust-proof strong {
  color: var(--landing-ink);
  font-size: 18px;
  line-height: 1.08;
}

.landing-trust-proof:hover {
  border-color: rgba(88, 101, 242, 0.56);
  background: rgba(88, 101, 242, 0.1);
}

.landing-trust-mark {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(88, 101, 242, 0.38);
  border-radius: 8px;
  background: rgba(88, 101, 242, 0.13);
  color: #c5c9ff;
}

.landing-trust-mark svg {
  display: block;
  width: 26px;
  height: 26px;
}

.landing-trust-mark-discord {
  background: #5865f2;
  color: #ffffff;
}

.landing-trust-mark-discord svg {
  fill: currentColor;
}

.landing-trust-mark-notion {
  background: #f4f4f2;
}

.landing-trust-mark-notion svg {
  width: 30px;
  height: 30px;
}

.landing-trust-mark-notion svg path:first-child {
  fill: #ffffff;
}

.landing-trust-mark-notion svg path:last-child {
  fill: #111111;
}

.landing-trust-mark-text {
  color: #d7dcff;
  font-size: 13px;
  font-weight: 900;
}

.landing-trust-mark-data {
  border-color: rgba(67, 181, 129, 0.38);
  background: rgba(67, 181, 129, 0.12);
  color: #aee8c4;
}

.landing-trust-mark-data svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.landing-setup-body {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 16px;
  align-items: stretch;
}

.landing-setup-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.landing-setup-steps article,
.landing-setup-video {
  border: 1px solid var(--landing-line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--landing-shadow-soft);
}

.landing-setup-steps article {
  display: grid;
  min-height: 156px;
  align-content: start;
  padding: 18px;
}

.landing-setup-steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(88, 101, 242, 0.16);
  color: #c5c9ff;
  font-weight: 900;
}

.landing-setup-steps strong,
.landing-setup-video strong,
.landing-api-panel h2 {
  color: var(--landing-ink);
  line-height: 1.08;
}

.landing-setup-steps strong,
.landing-setup-video strong {
  font-size: 20px;
}

.landing-setup-steps p {
  margin: 10px 0 0;
  font-size: 14px;
}

.landing-setup-video {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  text-decoration: none;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

.landing-setup-video:hover {
  border-color: rgba(88, 101, 242, 0.56);
  background: rgba(88, 101, 242, 0.1);
  transform: translateY(-2px);
}

.landing-setup-video > span:not(.landing-video-frame) {
  font-size: 14px;
  line-height: 1.5;
}

.landing-video-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--landing-line-soft);
  border-radius: 8px;
  background: #050607;
}

.landing-video-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.48));
  content: "";
}

.landing-video-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.landing-setup-video:hover .landing-video-frame img {
  transform: scale(1.025);
}

.landing-video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(88, 101, 242, 0.94);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.44);
  transform: translate(-50%, -50%);
}

.landing-video-play::before {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid #ffffff;
  content: "";
}

.landing-video-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.76);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 5px 8px;
}

.landing-api-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(88, 101, 242, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(88, 101, 242, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.016)), #1d1f24;
  box-shadow: var(--landing-shadow-soft);
  padding: clamp(20px, 4vw, 34px);
}

.landing-api-panel p:not(.landing-eyebrow) {
  max-width: 620px;
  margin: 14px 0 0;
  line-height: 1.55;
}

.landing-final-section {
  position: relative;
  border-top: 1px solid var(--landing-line-soft);
  padding-top: clamp(72px, 9vw, 118px);
  padding-bottom: clamp(82px, 10vw, 128px);
}

.landing-final-section::before {
  position: absolute;
  top: 0;
  right: clamp(18px, 5vw, 72px);
  left: clamp(18px, 5vw, 72px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.52), transparent);
  content: "";
}

.landing-final-content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.landing-final-copy {
  max-width: 860px;
  margin: 0 auto;
}

.landing-final-copy h2 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
}

.landing-final-copy p:not(.landing-eyebrow) {
  max-width: 620px;
  margin: 20px auto 0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
}

.landing-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}

.landing-final-actions .landing-button {
  min-width: 184px;
}

.landing-final-actions span {
  flex-basis: 100%;
  color: var(--landing-faint);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .landing-balanced-heading-inline,
  .landing-trust-panel,
  .landing-setup-body,
  .landing-api-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .landing-use-grid,
  .landing-setup-steps,
  .landing-trust-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-final-content {
    max-width: 820px;
  }
}

@media (max-width: 768px) {
  .landing-balanced-heading,
  .landing-balanced-heading-inline {
    margin-bottom: 18px;
  }

  .landing-balanced-heading h2,
  .landing-trust-copy h2,
  .landing-api-panel h2,
  .landing-final-copy h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .landing-use-cases-balanced .landing-balanced-heading h2 {
    font-size: 29px;
  }

  .landing-use-grid,
  .landing-trust-proof-grid,
  .landing-setup-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .landing-use-grid,
  .landing-setup-steps {
    gap: 10px;
  }

  .landing-use-tile {
    min-height: 0;
    padding: 14px;
  }

  .landing-use-tile h3 {
    margin-top: 14px;
    font-size: 20px;
  }

  .landing-use-tile p,
  .landing-setup-steps p,
  .landing-setup-video > span:not(.landing-video-frame) {
    font-size: 14px;
    line-height: 1.42;
  }

  .landing-use-tile-link {
    padding-top: 16px;
    font-size: 14px;
  }

  .landing-setup-steps article,
  .landing-setup-video {
    min-height: 0;
    padding: 14px;
  }

  .landing-setup-steps span {
    width: 30px;
    height: 30px;
    margin-bottom: 12px;
  }

  .landing-setup-steps strong,
  .landing-setup-video strong {
    font-size: 18px;
  }

  .landing-setup-video {
    gap: 10px;
  }

  .landing-trust-proof,
  .landing-trust-panel,
  .landing-api-panel {
    gap: 18px;
  }

  .landing-trust-panel,
  .landing-api-panel {
    padding: 18px;
  }

  .landing-final-actions,
  .landing-final-actions .landing-button {
    width: 100%;
  }
}
