@font-face {
  font-family: "Inter Variable";
  src: url("../assets/fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0a0a0f;
  --panel: #101112;
  --panel-soft: #0d0f10;
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #f7f8f8;
  --muted: #8a8f98;
  --soft-muted: #62666d;
  --line: #23252a;
  --purple: #6e3ff3;
  --purple-light: #8b5cf6;
  --purple-dim: rgba(110, 63, 243, 0.15);
  --purple-glow: rgba(110, 63, 243, 0.3);
  --accent: #5e6ad2;
  --accent-soft: rgba(94, 106, 210, 0.18);
  --green: #5fcf7b;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Inter Variable",
    "SF Pro Display",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
  background:
    radial-gradient(circle at 50% 0%, rgba(126, 60, 255, 0.2) 0%, rgba(126, 60, 255, 0.1) 18%, rgba(126, 60, 255, 0.03) 34%, rgba(126, 60, 255, 0) 52%),
    radial-gradient(circle at 18% 10%, rgba(198, 157, 255, 0.06) 0%, rgba(198, 157, 255, 0) 24%),
    radial-gradient(circle at 82% 14%, rgba(160, 102, 255, 0.06) 0%, rgba(160, 102, 255, 0) 24%),
    linear-gradient(180deg, rgba(14, 11, 22, 0.98) 0%, rgba(10, 10, 15, 0.99) 42%, rgba(9, 9, 14, 1) 100%);
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

.page-shell {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(126, 60, 255, 0.16) 0%, rgba(126, 60, 255, 0.08) 22%, rgba(126, 60, 255, 0.02) 38%, rgba(126, 60, 255, 0) 56%),
    radial-gradient(circle at 18% 12%, rgba(198, 157, 255, 0.05) 0%, rgba(198, 157, 255, 0) 22%),
    radial-gradient(circle at 82% 16%, rgba(160, 102, 255, 0.05) 0%, rgba(160, 102, 255, 0) 22%);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px);
  background-size: 16px 16px, 22px 22px;
}

.site-container {
  max-width: 1280px;
  padding-left: 32px;
  padding-right: 32px;
}

.section-space {
  padding: 70px 0 88px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.86) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 1px 0 rgba(0, 0, 0, 0.45);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 0, 0, 0.9) 100%);
  border-bottom-color: rgba(255, 255, 255, 0.11);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 32px rgba(0, 0, 0, 0.55);
}

.navbar {
  min-height: 64px;
  padding: 0;
}

.navbar>.site-container {
  display: flex;
  align-items: center;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin-right: 32px;
}

.brand-logo {
  width: 60px;
  height: auto;
}

.brand-orb {
  position: relative;
  width: 28px;
  height: 28px;
  display: block;
  border-radius: 50%;
  background: #f4f5f7;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-orb::before {
  content: "";
  position: absolute;
  inset: -10% 18% -10% auto;
  width: 56%;
  background: repeating-linear-gradient(135deg,
      rgba(10, 10, 10, 0.92) 0 2px,
      transparent 2px 5px);
  transform: rotate(-2deg);
}

.brand-orb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.08);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  background: rgba(0, 0, 0, 0.82);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.navbar-nav {
  gap: 10px;
}

.nav-link,
.header-link,
.nav-community-btn {
  color: var(--muted);
  font-size: 14px;
  line-height: 18px;
  padding: 7px 12px !important;
  border-radius: 8px;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-link:hover,
.header-link:hover,
.nav-community-btn:hover,
.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--text);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.show,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.dropdown-toggle.show {
  background: rgba(255, 255, 255, 0.04);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.show,
.navbar-nav .nav-link.dropdown-toggle.show,
.navbar-nav .nav-link.active {
  color: var(--text) !important;
}

.nav-link.is-active {
  color: var(--text);
}

.nav-primary {
  gap: 14px;
  width: 100%;
  justify-content: flex-end;
}

.nav-dropdown {
  min-width: 214px;
  margin-top: 0 !important;
  padding: 12px;
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 48px rgba(0, 0, 0, 0.65);
}

.nav-dropdown .dropdown-item {
  padding: 12px 14px;
  color: var(--text);
  font-size: 14px;
  border-radius: 12px;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-dropdown .dropdown-item:hover,
.nav-dropdown .dropdown-item:focus {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 992px) {
  .nav-item.dropdown {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: -10px;
  }

  .nav-item.dropdown>.nav-dropdown {
    top: calc(100% - 2px);
  }

  .nav-item.dropdown:hover>.nav-dropdown,
  .nav-item.dropdown:focus-within>.nav-dropdown {
    display: block;
  }

  .nav-item.dropdown:hover>.nav-link,
  .nav-item.dropdown:focus-within>.nav-link {
    color: var(--text) !important;
    background: rgba(255, 255, 255, 0.04);
  }
}

.nav-community-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px !important;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-weight: 600;
}

.nav-community-btn:hover,
.nav-community-btn.is-active {
  background: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.nav-item-cta {
  margin-left: 10px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 28px;
}

.header-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.btn-signup,
.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  min-height: 46px;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.btn-signup,
.cta-primary {
  color: #08090a;
  box-shadow:
    0 5px 2px rgba(0, 0, 0, 0.01),
    0 3px 2px rgba(0, 0, 0, 0.04),
    0 1px 1px rgba(0, 0, 0, 0.07),
    0 0 1px rgba(0, 0, 0, 0.08);
}

.hero {
  padding: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding-top: 0;
  margin-bottom: 28px;
}

.hero h1,
.cta-panel h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -1.05px;
}

.hero h1 {
  max-width: none;
  margin: 0 auto;
  font-size: 80px;
  font-weight: 600;
  line-height: 1.02;
  text-align: center;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
}

.heading-accent {
  color: #a78bfa;
}

.cta-panel h2 {
  font-size: clamp(2.65rem, 5.05vw, 4.15rem);
  font-weight: 650;
}

.hero-subtitle,
.intro-copy p,
.feature-copy p {
  margin: 20px 0 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.012em;
}

.hero-subtitle {
  max-width: 820px;
  margin: 28px auto 0;
  color: rgba(247, 248, 248, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #eef2ff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  min-width: 0;
  margin-left: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-link-label {
  color: var(--text);
}

.hero-link-dot {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(94, 106, 210, 0.2);
  box-shadow: 0 0 0 1px rgba(94, 106, 210, 0.18);
}

.hero-link-dot::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  background: var(--accent);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 84px);
  width: 100%;
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 112px 32px 68px;
  isolation: isolate;
  background: #09070f;
}

.hero-bg,
.gradient-bg,
.hero-orb-wrap,
.snow-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 0;
}

.gradient-bg {
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 4%, rgba(126, 60, 255, 0.16) 0%, rgba(126, 60, 255, 0.09) 16%, rgba(126, 60, 255, 0.03) 28%, rgba(126, 60, 255, 0) 40%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0) 24%),
    linear-gradient(180deg, rgba(20, 10, 34, 0.96) 0%, rgba(12, 8, 22, 0.95) 55%, rgba(7, 6, 14, 0.99) 100%);
}

.gradient-bg::before,
.gradient-bg::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.gradient-bg::before {
  top: -10%;
  left: 50%;
  width: min(28rem, 32vw);
  height: min(28rem, 32vw);
  transform: translate3d(0, 0, 0);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(174, 101, 255, 0.22) 0%, rgba(141, 77, 255, 0.12) 34%, rgba(141, 77, 255, 0) 68%);
  filter: blur(54px);
  opacity: 0.66;
  animation: hero-glow-drift-left 18s ease-in-out infinite alternate;
}

.gradient-bg::after {
  top: -6%;
  left: 50%;
  width: min(18rem, 22vw);
  height: min(18rem, 22vw);
  transform: translate3d(0, 0, 0);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(228, 190, 255, 0.14) 0%, rgba(126, 60, 255, 0.08) 36%, rgba(126, 60, 255, 0) 66%);
  filter: blur(40px);
  opacity: 0.5;
  animation: hero-glow-drift-right 22s ease-in-out infinite alternate;
}

.hero-orb-wrap {
  z-index: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-orb-glow,
.hero-orb-ring,
.hero-orb-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.hero-orb-glow {
  width: min(34rem, 48vw);
  height: min(34rem, 48vw);
  background:
    radial-gradient(circle at center, rgba(120, 63, 255, 0.34) 0%, rgba(120, 63, 255, 0.22) 24%, rgba(120, 63, 255, 0.1) 44%, rgba(120, 63, 255, 0.02) 62%, rgba(120, 63, 255, 0) 78%);
  filter: blur(82px);
  opacity: 0.96;
  animation: hero-orb-breathe 7s ease-in-out infinite;
}

.hero-orb-ring {
  display: none;
  mix-blend-mode: screen;
  filter: blur(16px);
  box-shadow:
    0 0 28px rgba(196, 151, 255, 0.42),
    0 0 68px rgba(118, 48, 255, 0.38),
    0 0 130px rgba(118, 48, 255, 0.2);
  overflow: visible;
}

.hero-orb-ring-1 {
  width: min(18rem, 26vw);
  height: min(18rem, 26vw);
  border: 10px solid rgba(216, 180, 255, 0.06);
  animation: hero-orb-spin 7s linear infinite;
}

.hero-orb-ring-2 {
  width: min(22rem, 31vw);
  height: min(22rem, 31vw);
  border: 12px solid rgba(122, 66, 255, 0.04);
  box-shadow:
    0 0 40px rgba(122, 66, 255, 0.28),
    inset 0 0 30px rgba(122, 66, 255, 0.1);
  animation: hero-orb-spin-reverse 11s linear infinite;
}

.hero-orb-ring::before,
.hero-orb-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-orb-ring-1::before {
  inset: -12px;
  background:
    conic-gradient(from 12deg,
      rgba(255, 255, 255, 0) 0deg,
      rgba(255, 255, 255, 0) 26deg,
      rgba(255, 255, 255, 0.96) 44deg,
      rgba(213, 162, 255, 0.66) 96deg,
      rgba(255, 255, 255, 0) 134deg,
      rgba(255, 255, 255, 0) 208deg,
      rgba(255, 255, 255, 0.76) 226deg,
      rgba(182, 122, 255, 0.5) 270deg,
      rgba(255, 255, 255, 0) 302deg,
      rgba(255, 255, 255, 0) 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 18px), #000 calc(100% - 7px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 18px), #000 calc(100% - 7px));
}

.hero-orb-ring-1::after {
  inset: -10px;
  background:
    conic-gradient(from 196deg,
      rgba(255, 255, 255, 0) 0deg,
      rgba(255, 255, 255, 0) 34deg,
      rgba(181, 108, 255, 0.72) 48deg,
      rgba(255, 255, 255, 0.78) 84deg,
      rgba(255, 255, 255, 0) 118deg,
      rgba(255, 255, 255, 0) 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 22px), #000 calc(100% - 10px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 22px), #000 calc(100% - 10px));
}

.hero-orb-ring-2::before {
  inset: -16px;
  background:
    conic-gradient(from 104deg,
      rgba(255, 255, 255, 0) 0deg,
      rgba(255, 255, 255, 0) 44deg,
      rgba(154, 88, 255, 0.42) 60deg,
      rgba(118, 48, 255, 0.52) 108deg,
      rgba(255, 255, 255, 0) 146deg,
      rgba(255, 255, 255, 0) 226deg,
      rgba(146, 78, 255, 0.36) 244deg,
      rgba(118, 48, 255, 0.44) 286deg,
      rgba(255, 255, 255, 0) 320deg,
      rgba(255, 255, 255, 0) 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 26px), #000 calc(100% - 12px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 26px), #000 calc(100% - 12px));
}

.hero-orb-ring-2::after {
  inset: -14px;
  background:
    conic-gradient(from 18deg,
      rgba(255, 255, 255, 0) 0deg,
      rgba(255, 255, 255, 0) 52deg,
      rgba(190, 126, 255, 0.22) 66deg,
      rgba(122, 66, 255, 0.44) 102deg,
      rgba(255, 255, 255, 0) 132deg,
      rgba(255, 255, 255, 0) 232deg,
      rgba(188, 123, 255, 0.18) 246deg,
      rgba(122, 66, 255, 0.34) 280deg,
      rgba(255, 255, 255, 0) 310deg,
      rgba(255, 255, 255, 0) 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 30px), #000 calc(100% - 14px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 30px), #000 calc(100% - 14px));
}

.hero-orb-core {
  width: min(15rem, 22vw);
  height: min(15rem, 22vw);
  background:
    radial-gradient(circle at 50% 50%, rgba(13, 6, 26, 0.06) 0%, rgba(10, 5, 22, 0.48) 42%, rgba(5, 3, 14, 0.82) 70%, rgba(4, 3, 12, 0.96) 100%);
  filter: blur(18px);
  box-shadow:
    inset 0 0 62px rgba(0, 0, 0, 0.44),
    inset 0 0 140px rgba(42, 16, 90, 0.26);
}

.snow-container {
  z-index: 2;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -8%;
  left: var(--snow-left, 50vw);
  width: var(--snow-size, 4px);
  height: var(--snow-size, 4px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.92) 28%, rgba(255, 255, 255, 0.58) 56%, rgba(255, 255, 255, 0) 82%);
  opacity: 0;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.42);
  filter: none;
  will-change: transform, opacity;
  animation: snowfall-fall var(--snow-duration, 8s) linear var(--snow-delay, 0s) infinite;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
}

.hero-divider {
  width: min(120px, 22vw);
  height: 1px;
  margin: 26px auto 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
}

.hero-logo-band {
  padding-top: 28px;
}

.hero-logo-slider {
  margin-top: 18px;
}

.hero-cta {
  display: inline-flex;
  width: auto;
  min-width: 0;
  min-height: 0;
  height: 56px;
  padding: 0 24px;
  border-radius: 10px;
  color: #08090a;
  font-size: 16px;
  line-height: 1;
  gap: 10px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.hero-cta:hover {
  color: #08090a;
  transform: translateY(-1px);
}

.logo-band {
  padding: 40px 0 6px;
  text-align: center;
}

.logo-band-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(1rem, 1.4vw, 1.5rem);
  letter-spacing: -0.03em;
}

.app-window,
.showcase-card,
.promo-card,
.cta-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.app-window {
  padding: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    #090a0b;
  border-radius: 8px;
}

.app-window::before,
.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%);
  pointer-events: none;
}

.app-window img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateY(0);
  animation: float-panel 10s ease-in-out infinite;
}

.logo-slider {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 22px 0 4px;
}

.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(0, 0, 0, 0) 100%);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, rgba(0, 0, 0, 0) 100%);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee-logos 28s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  color: rgba(247, 248, 248, 0.78);
  font-size: clamp(1.45rem, 2vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  text-transform: none;
  opacity: 0.88;
}

.ticker-wrap {
  position: relative;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-logos 30s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.ticker-item>span:not(.ticker-dot) {
  color: rgba(247, 248, 248, 0.8);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.ticker-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.section-intro {
  position: relative;
  padding-top: 68px;
  background:
    radial-gradient(circle at 50% 0%, rgba(126, 60, 255, 0.14) 0%, rgba(126, 60, 255, 0.07) 18%, rgba(126, 60, 255, 0.02) 30%, rgba(126, 60, 255, 0) 48%),
    linear-gradient(180deg, rgba(10, 10, 15, 0.92) 0%, rgba(10, 10, 15, 0.98) 100%);
}

.intro-row,
.feature-row {
  padding-top: 10px;
}

.eyebrow,
.feature-index,
.promo-kicker {
  margin: 0 0 12px;
  color: var(--soft-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
}

.intro-copy h2,
.feature-copy h2,
.promo-card h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.1vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -1.05px;
  font-weight: 600;
}

.intro-copy {
  max-width: 1180px;
  margin-bottom: 78px;
}

.intro-copy h2 {
  max-width: 1120px;
  font-size: clamp(1.84rem, 3.7vw, 3.04rem);
  line-height: 1.04;
  letter-spacing: -1.05px;
  font-weight: 600;
}

.intro-lead {
  color: var(--text);
}

.intro-muted {
  color: #7f848d;
}

.mini-card {
  height: auto;
  min-height: 0;
  padding: 0 38px 0 42px;
  background: transparent;
  border: 0;
  border-radius: 0;
  transition: opacity 240ms ease, transform 240ms ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mini-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.09);
}

.principles-grid>.col-md-4:first-child .mini-card::before {
  display: none;
}

.mini-card h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
  width: 100%;
  max-width: 320px;
  text-align: left;
}

.mini-card p {
  margin: 0;
  color: #858a94;
  font-size: 16px;
  line-height: 1.65;
  width: 100%;
  max-width: 360px;
  text-align: left;
}

.figure-image {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  height: 300px;
  border-radius: 12px;
  margin: 0 0 36px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  object-fit: contain;
}

.figure-image1 {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: 12px;
  margin: 0 0 36px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  object-fit: contain;
}

.feature-block {
  position: relative;
}

.metrics-section {
  padding: 26px 0 48px;
  background: #000;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 56px rgba(0, 0, 0, 0.32);
}

.metric-card {
  min-height: 230px;
  padding: 54px 28px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(126, 60, 255, 0.13), rgba(126, 60, 255, 0)),
    linear-gradient(180deg, rgba(7, 9, 14, 0.98), rgba(6, 8, 14, 0.98));
  transition: transform 240ms ease, background 240ms ease;
}

.metric-card:hover {
  transform: translateY(-3px);
  background:
    radial-gradient(circle at 50% 0%, rgba(126, 60, 255, 0.2), rgba(126, 60, 255, 0)),
    linear-gradient(180deg, rgba(9, 12, 18, 0.99), rgba(7, 10, 17, 0.99));
}

.metric-number {
  margin: 0;
  color: #f6f7ff;
  background: linear-gradient(180deg, #ffffff 0%, #d8c7ff 55%, #b891ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2.35rem, 4vw, 3.7rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-shadow: 0 0 28px rgba(126, 60, 255, 0.22);
}

.metric-label {
  margin: 20px 0 0;
  color: rgba(193, 200, 212, 0.58);
  font-size: 0.84rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.audience-section {
  position: relative;
  /* background:
    radial-gradient(circle at 50% 0%, rgba(126, 60, 255, 0.17) 0%, rgba(126, 60, 255, 0.06) 30%, rgba(126, 60, 255, 0) 54%),
    linear-gradient(180deg, #020205 0%, #05050a 100%); */
}

.audience-shell {
  max-width: 1180px;
}

.audience-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.audience-copy {
  position: sticky;
  top: 110px;
}

.audience-kicker {
  justify-content: flex-start;
}

.audience-shell h2 {
  margin: 16px 0 0;
  max-width: 620px;
  color: #f8f8fb;
  font-size: clamp(1.975rem, 3.2vw, 3.025rem);
  line-height: 1.08;
  letter-spacing: -1.05px;
  font-weight: 600;
}

.audience-accent {
  color: #a767ff;
  font-style: italic;
  font-weight: 500;
}

.audience-intro {
  margin: 22px 0 0;
  max-width: 560px;
  color: #8f95a1;
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.audience-track {
  position: relative;
  padding: 12px 0 8px 20px;
}

.audience-track::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, rgba(167, 103, 255, 0), rgba(167, 103, 255, 0.55), rgba(167, 103, 255, 0));
}

.audience-list {
  margin-top: 0;
  display: grid;
  gap: 12px;
}

.audience-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background:
    linear-gradient(140deg, rgba(126, 60, 255, 0.16), rgba(126, 60, 255, 0) 52%),
    linear-gradient(180deg, rgba(14, 16, 24, 0.95), rgba(8, 10, 16, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.24);
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.audience-item:hover {
  border-color: rgba(167, 103, 255, 0.42);
  transform: translateY(-2px);
  background:
    linear-gradient(140deg, rgba(126, 60, 255, 0.24), rgba(126, 60, 255, 0) 58%),
    linear-gradient(180deg, rgba(16, 18, 28, 0.98), rgba(10, 12, 20, 0.98));
}

.audience-item-icon {
  flex: 0 0 auto;
  color: #7fff3b;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.audience-item p {
  margin: 0;
  color: #aeb4bf;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.changelog-section {
  background: #050509;
}

.changelog-head {
  margin-bottom: 42px;
}

.changelog-head h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 600;
  max-width: 820px;
}

.changelog-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.changelog-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 0;
}

.changelog-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 0 6px;
}

.changelog-node-row {
  position: relative;
  height: 56px;
  display: flex;
  align-items: center;
  z-index: 1;
}

.changelog-node {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.changelog-node-active {
  background: var(--purple-light);
  box-shadow:
    0 0 0 6px rgba(126, 60, 255, 0.14),
    0 0 20px rgba(126, 60, 255, 0.42),
    0 0 0 1px rgba(126, 60, 255, 0.28);
}

.changelog-node-active::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: #fff;
  animation: pulse-dot 2.4s ease-in-out infinite;
}

.changelog-item h3 {
  margin: 12px 0 0;
  color: #f0f2f8;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.changelog-item p {
  margin: 3px 0 0;
  color: rgba(188, 194, 206, 0.72);
  font-size: 15px;
  line-height: 1.5;
  max-width: 290px;
}

.changelog-item time {
  display: inline-block;
  margin-top: 10px;
  padding-top: 0;
  color: rgba(147, 154, 170, 0.78);
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .changelog-item h3 {
    min-height: 36px;
  }

  .changelog-item p {
    min-height: 92px;
  }
}

#services.feature-block {
  background:
    radial-gradient(circle at 50% 0%, rgba(126, 60, 255, 0.14) 0%, rgba(126, 60, 255, 0.07) 18%, rgba(126, 60, 255, 0.02) 30%, rgba(126, 60, 255, 0) 48%),
    linear-gradient(180deg, rgba(10, 10, 15, 0.92) 0%, rgba(10, 10, 15, 0.98) 100%);
}

.services-intro {
  max-width: 860px;
  margin: 0 auto 72px;
  text-align: center;
}

.services-intro h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -1.05px;
  font-weight: 600;
}

.services-intro p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #b6bbc4;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}


.service-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 76px;
  align-items: center;
}

.service-split-reverse .service-split-media {
  order: 2;
}

.service-split-reverse .service-split-copy {
  order: 1;
}

.service-split-media {
  min-width: 0;
}

.service-image {
  display: block;
  width: 100%;
  min-height: 430px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(17, 17, 20, 0.92);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
  object-fit: cover;
}

.service-split-copy {
  max-width: 520px;
}

.service-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: #d9dde6;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-split-copy h2 {
  margin: 28px 0 0;
  font-size: clamp(2rem, 3.35vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -1.05px;
  font-weight: 600;
}

.service-split-copy p {
  margin: 22px 0 0;
  color: #d3d6de;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.service-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin-top: 34px;
}

.service-points span {
  display: flex;
  align-items: center;
  color: #b0b5bf;
  font-size: 14px;
  line-height: 1.5;
  padding: 14px 16px 14px 30px;
  position: relative;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(90, 34, 187, 0.18), rgba(46, 18, 90, 0.08)),
    linear-gradient(180deg, rgba(18, 12, 29, 0.92) 0%, rgba(11, 10, 18, 0.94) 100%);
  border: 1px solid rgba(126, 60, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(126, 60, 255, 0.03);
}

.service-points span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: rgba(169, 117, 255, 0.92);
  box-shadow: 0 0 14px rgba(126, 60, 255, 0.45);
}

.feature-detail-section {
  padding-top: 4px;
}

.feature-detail-head {
  align-items: start;
  margin-bottom: 60px;
}

.feature-detail-title h2 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(1.95rem, 3vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -1.05px;
  font-weight: 600;
}

.feature-detail-summary {
  max-width: 430px;
}

.feature-detail-summary p {
  margin: 0;
  color: #d9dade;
  font-size: 20px;
  line-height: 1.42;
  letter-spacing: -0.03em;
}

.feature-detail-label {
  display: inline-block;
  margin-top: 30px;
  color: #6a6f79;
  font-size: 13px;
}

.intake-section {
  padding-top: 4px;
}

.intake-head {
  align-items: start;
  margin-bottom: 34px;
}

.intake-title h2 {
  max-width: 390px;
  margin: 0;
  font-size: clamp(2.2rem, 3.5vw, 3.3rem);
  line-height: 0.95;
  letter-spacing: -1.05px;
  font-weight: 600;
}

.feature-title-line {
  display: block;
  white-space: nowrap;
}

.intake-summary {
  max-width: 380px;
}

.intake-summary p {
  margin: 0;
  color: #d9dade;
  font-size: 17px;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.intake-label {
  display: inline-block;
  margin-top: 30px;
  color: #6a6f79;
  font-size: 13px;
}

.feature-copy {
  max-width: 320px;
}

.showcase-card {
  padding: 10px;
  border-radius: 14px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
}

.feature-media {
  max-width: 100%;
}

.image-showcase {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    #090b0c;
}

.image-showcase img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.board-showcase {
  padding: 12px;
}

.feature-detail-media img {
  width: 100%;
  display: block;
  height: 500px;
  object-fit: cover;
}

.intake-canvas {
  position: relative;
  min-height: 500px;
  max-height: 500px;
  overflow: hidden;
}

.intake-thread {
  position: absolute;
  left: 14px;
  top: -20px;
  z-index: 3;
  width: 300px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.96), rgba(21, 21, 21, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.thread-header {
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: #979da6;
  font-size: 12px;
}

@media (max-width: 991px) {
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    padding-top: 5px;
    padding-bottom: 3px;
    z-index: 1050;
    transition: none !important;
  }

  body.navbar-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
  }

  .navbar>.site-container {
    flex-wrap: wrap;
  }

  .navbar-collapse {
    position: static;
    width: 100%;
    height: auto;
    max-height: none;
    overflow: visible;
    padding: 12px 0 16px;
    margin-top: 8px;
    background: transparent;
  }
}

.thread-message {
  margin-bottom: 14px;
  color: #8a8f98;
  font-size: 12px;
  line-height: 1.5;
}

.thread-message strong {
  display: block;
  margin-bottom: 4px;
  color: #f7f8f8;
  font-size: 13px;
  font-weight: 500;
}

.thread-input {
  margin-top: 12px;
  padding: 13px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #9271ff;
  font-size: 12px;
}

.intake-board {
  grid-template-columns: 1.1fr 1fr 1fr 0.64fr;
  margin-left: 252px;
}

.board-shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.board-column {
  min-height: 300px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(255, 255, 255, 0.045);
}

.board-column>span {
  display: block;
  margin-bottom: 14px;
  color: #d0d6e0;
  font-size: 13px;
  font-weight: 600;
}

.board-column-fade {
  opacity: 0.56;
}

.board-ticket {
  padding: 10px 10px 11px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: #141617;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.board-ticket:hover {
  background: #181b1c;
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.board-ticket.active {
  border-color: rgba(94, 106, 210, 0.45);
  box-shadow: inset 0 0 0 1px rgba(94, 106, 210, 0.18);
}

.intake-footer {
  margin-top: 18px;
}

.detail-footer {
  margin-top: 18px;
}

.intake-footer-link {
  display: block;
  padding: 12px 18px;
  color: #7d828c;
  font-size: 13px;
}

.detail-footer-link {
  display: block;
  padding: 12px 18px;
  color: #7d828c;
  font-size: 13px;
}

.intake-footer-link-split {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-footer-link-split {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.changelog-section .promo-card {
  min-height: 204px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 12px;
}

.promo-card-soft {
  background:
    radial-gradient(circle at 72% 35%, rgba(255, 255, 255, 0.55), transparent 22%),
    linear-gradient(135deg, #ebedf6 0%, #cfd6f0 100%);
  color: #08090a;
}

.promo-card-bright {
  background:
    linear-gradient(135deg, rgba(209, 255, 51, 1) 0%, rgba(232, 255, 98, 1) 100%);
  color: #08090a;
}

.promo-card h3 {
  font-size: clamp(1.7rem, 2.3vw, 2.2rem);
  max-width: 330px;
}

.promo-arrow {
  display: inline-block;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 600;
}

.work-section {
  background:
    linear-gradient(180deg, #050509 0%, #050509 100%);
}

.work-shell {
  max-width: 1280px;
}

.work-kicker {
  justify-content: flex-start;
}

.work-shell h2 {
  margin: 14px 0 0;
  max-width: 760px;
  font-size: clamp(2rem, 3.35vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -1.05px;
  font-weight: 600;
}

.work-accent {
  color: #a767ff;
  font-style: italic;
  font-weight: 500;
}

.work-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.work-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(126, 60, 255, 0.08), rgba(126, 60, 255, 0) 58%),
    linear-gradient(180deg, rgba(10, 10, 15, 0.96), rgba(8, 9, 14, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 14px 30px rgba(0, 0, 0, 0.26);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.work-item:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 103, 255, 0.38);
  background:
    linear-gradient(145deg, rgba(126, 60, 255, 0.12), rgba(126, 60, 255, 0) 62%),
    linear-gradient(180deg, rgba(12, 11, 18, 0.98), rgba(9, 10, 16, 0.99));
}

.work-index {
  margin-top: 0;
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(127, 255, 59, 0.3);
  background: rgba(127, 255, 59, 0.08);
  color: #7fff3b;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: 600;
}

.work-copy h3 {
  margin: 0;
  color: #f2f5f8;
  font-size: clamp(1.24rem, 1.9vw, 1.58rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.work-copy p {
  margin: 10px 0 0;
  color: #8f95a1;
  font-size: 15px;
  line-height: 1.62;
  letter-spacing: -0.02em;
  max-width: 540px;
}

#now {
  display: none;
}

.cta-panel {
  position: relative;
  padding: 100px 32px 106px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 10%, rgba(126, 60, 255, 0.2) 0%, rgba(126, 60, 255, 0.1) 22%, rgba(126, 60, 255, 0) 52%),
    radial-gradient(circle at 18% 0%, rgba(198, 157, 255, 0.08) 0%, rgba(198, 157, 255, 0) 28%),
    radial-gradient(circle at 82% 8%, rgba(160, 102, 255, 0.08) 0%, rgba(160, 102, 255, 0) 26%),
    linear-gradient(180deg, rgba(14, 11, 22, 0.94) 0%, rgba(10, 10, 15, 0.98) 100%);
  border: 1px solid rgba(143, 95, 255, 0.1);
  border-radius: 28px;
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(199, 166, 255, 0.12) 0%, rgba(199, 166, 255, 0) 36%);
}

.cta-panel h2 {
  position: relative;
  max-width: none;
  margin: 0 auto;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -1.05px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.cta-panel p {
  position: relative;
  max-width: 680px;
  margin: 22px auto 0;
  color: #b8bdc6;
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: -0.02em;
  text-align: center;
}

.cta-actions {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: nowrap;
  width: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  flex: 0 0 auto;
}

.cta-primary {
  background: #f2f2f2;
  border-color: #f2f2f2;
  color: #000000;
}

.cta-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.08);
  background: #2a2a2f;
}

.site-footer {
  position: relative;
  padding: 56px 0 0;
  border-top: 1px solid rgba(126, 60, 255, 0.16);
  /* background:
    radial-gradient(circle at 18% 0%, rgba(126, 60, 255, 0.16) 0%, rgba(126, 60, 255, 0.06) 24%, rgba(126, 60, 255, 0) 52%),
    radial-gradient(circle at 82% 10%, rgba(198, 157, 255, 0.08) 0%, rgba(198, 157, 255, 0) 26%),
    linear-gradient(180deg, rgba(18, 12, 29, 0.88) 0%, rgba(8, 8, 12, 0.98) 100%); */
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
}

.footer-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

@media (max-width: 991px) {
  .footer-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .footer-brand-block {
    margin: 0 auto;
  }

  .footer-column a {
    margin: 0 auto 10px;
  }
}

.footer-logo {
  margin-top: 0;
}

.brand-logo-footer {
  width: 60px;
}

.footer-brand-block {
  max-width: 380px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    display: contents;
  }
}

.footer-column h3,
.footer-newsletter h3 {
  margin: 0 0 28px;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
}

.footer-column a,
.footer-bottom a {
  display: block;
  width: fit-content;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-column a:last-child {
  margin-bottom: 0;
}

.footer-newsletter {
  min-width: 0;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 420px;
}

.newsletter-form input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  outline: none;
  min-width: 0;
}

.newsletter-form input::placeholder {
  color: var(--muted);
}

.newsletter-form button {
  height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #f2f2f2;
  color: #000000;
  font-size: 15px;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 56px;
  padding: 24px 0 18px;
  color: var(--muted);
  align-items: center;
  border-top: 1px solid var(--line);
}

.placeholder-page {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 84px;
}

.placeholder-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: stretch;
}

.placeholder-copy,
.placeholder-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(11, 12, 13, 0.96);
  box-shadow: var(--shadow);
}

.placeholder-copy {
  padding: 44px;
}

.placeholder-eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: #a2a8b2;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.placeholder-copy h1 {
  max-width: 580px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.placeholder-copy p {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.placeholder-panel {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.placeholder-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.placeholder-grid {
  display: grid;
  gap: 16px;
}

.placeholder-tile {
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.placeholder-tile h2 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.placeholder-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.placeholder-cta {
  width: fit-content;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 260ms;
}

@keyframes float-panel {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 15, 99, 0.45);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(255, 15, 99, 0);
  }
}

@keyframes marquee-logos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes snowfall-fall {
  0% {
    transform: translate3d(0, -10vh, 0);
    opacity: 0;
  }

  12% {
    opacity: var(--snow-opacity, 0.72);
  }

  52% {
    transform: translate3d(calc(var(--snow-drift, 24px) * 0.55), 54vh, 0);
  }

  78% {
    opacity: var(--snow-opacity, 0.72);
  }

  100% {
    transform: translate3d(var(--snow-drift, 24px), 110vh, 0);
    opacity: 0;
  }
}

@keyframes hero-glow-drift-left {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.62;
  }

  50% {
    transform: translate3d(18px, 18px, 0) scale(1.08);
    opacity: 0.78;
  }

  100% {
    transform: translate3d(-14px, -10px, 0) scale(0.96);
    opacity: 0.66;
  }
}

@keyframes hero-glow-drift-right {
  0% {
    transform: translate3d(0, 0, 0) scale(0.94);
    opacity: 0.44;
  }

  50% {
    transform: translate3d(-22px, 12px, 0) scale(1.06);
    opacity: 0.62;
  }

  100% {
    transform: translate3d(12px, -14px, 0) scale(0.98);
    opacity: 0.5;
  }
}

@keyframes hero-orb-breathe {
  0% {
    transform: translate(-50%, -50%) scale(0.94);
    opacity: 0.78;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.04);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(0.97);
    opacity: 0.84;
  }
}

@keyframes hero-orb-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes hero-orb-spin-reverse {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@media (max-width: 1199.98px) {
  .site-container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero-stage {
    padding: 96px 28px 72px;
  }

  .board-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intake-board {
    margin-left: 180px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intake-thread {
    width: 248px;
  }
}

@media (max-width: 991.98px) {
  .work-shell h2 {
    font-size: clamp(2.1rem, 6vw, 3rem);
    line-height: 1.08;
  }

  .work-grid {
    margin-top: 42px;
    gap: 12px;
  }

  .work-item {
    gap: 14px;
    padding: 20px 18px;
  }

  .work-index {
    min-width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .work-copy h3 {
    font-size: clamp(1.15rem, 2.7vw, 1.35rem);
  }

  .work-copy p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.6;
  }

  .audience-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .audience-copy {
    position: static;
  }

  .audience-shell h2 {
    max-width: 720px;
    font-size: clamp(2.075rem, 5.8vw, 2.825rem);
    line-height: 1.08;
  }

  .audience-intro {
    max-width: none;
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.55;
  }

  .audience-track {
    padding: 0;
  }

  .audience-track::before {
    display: none;
  }

  .audience-list {
    margin-top: 0;
  }

  .services-intro {
    margin-bottom: 54px;
  }

  .services-intro p {
    font-size: 18px;
  }

  .service-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-split-reverse .service-split-media,
  .service-split-reverse .service-split-copy {
    order: initial;
  }

  .service-split-copy {
    max-width: none;
  }

  .service-image {
    min-height: 340px;
  }

  .service-split-copy h2 {
    font-size: clamp(2.1rem, 6vw, 3rem);
  }

  .service-split-copy p {
    font-size: 17px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-card {
    min-height: 200px;
    padding: 42px 24px 34px;
  }

  .metric-number {
    font-size: clamp(2.2rem, 6.5vw, 2.95rem);
  }

  .changelog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 20px;
  }

  .changelog-grid::before {
    display: none;
  }


  .navbar>.site-container {
    flex-wrap: wrap;
  }

  .navbar-collapse {
    width: 100%;
  }

  .navbar-collapse {
    padding: 12px 0 16px;
  }

  .navbar-nav {
    align-items: flex-start !important;
    margin: 8px 0 14px;
  }

  .nav-primary {
    gap: 10px;
    justify-content: flex-start;
  }

  .nav-item-cta {
    margin-left: 0;
    margin-top: 8px;
  }

  .nav-community-btn {
    width: auto;
    justify-content: flex-start;
  }

  .nav-dropdown {
    min-width: 100%;
  }

  .hero {
    padding-top: 0;
  }

  .hero-meta {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-link {
    margin-left: 0;
    white-space: normal;
  }

  .hero-stage {
    min-height: calc(100vh - 64px);
    padding: 78px 24px 66px;
  }

  .hero-subtitle {
    max-width: 760px;
  }

  .feature-copy,
  .intro-copy {
    max-width: none;
  }

  .feature-row {
    padding-top: 0;
  }

  .intro-copy {
    margin-bottom: 42px;
  }

  .intake-summary {
    max-width: none;
  }

  .feature-detail-summary {
    max-width: none;
  }

  .feature-detail-summary p,
  .intake-summary p {
    font-size: 20px;
    line-height: 1.35;
  }

  .intake-board {
    margin-left: 0;
  }

  .intake-thread {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    margin-bottom: 14px;
  }

  .intake-canvas {
    min-height: auto;
    max-height: none;
  }

  .intake-footer {
    margin-top: 10px;
  }

  .detail-footer {
    margin-top: 10px;
  }

  .mini-card {
    min-height: 520px;
    padding-right: 24px;
    padding-left: 28px;
  }

  .figure-image {
    max-width: 260px;
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-bottom: 36px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }

  .newsletter-form {
    max-width: 520px;
  }

  .placeholder-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .work-shell h2 {
    font-size: clamp(1.95rem, 10vw, 2.7rem);
    line-height: 1.02;
  }

  .work-grid {
    margin-top: 30px;
    grid-template-columns: 1fr;
  }

  .work-item {
    gap: 12px;
    padding: 16px 14px;
  }

  .work-index {
    min-width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .work-copy h3 {
    font-size: clamp(1.05rem, 5.4vw, 1.24rem);
    line-height: 1.24;
  }

  .work-copy p {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.55;
  }

  .audience-shell h2 {
    font-size: clamp(1.925rem, 9.5vw, 2.525rem);
    line-height: 1.02;
  }

  .audience-intro {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.6;
  }

  .audience-list {
    margin-top: 0;
    gap: 10px;
  }

  .audience-item {
    align-items: center;
    gap: 12px;
    min-height: 0;
    padding: 13px 14px;
  }

  .audience-item-icon {
    margin-top: 0;
    font-size: 14px;
  }

  .audience-item p {
    font-size: 14px;
    line-height: 1.52;
  }

  .site-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-space {
    padding: 52px 0 60px;
  }

  .feature-block.section-space {
    padding: 34px 0 40px;
  }

  .hero h1,
  .cta-panel h2 {
    line-height: 1.02;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10vw, 3.05rem);
    letter-spacing: -0.05em;
    text-wrap: wrap;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-subtitle {
    overflow-wrap: anywhere;
  }

  .hero-stage {
    min-height: calc(100vh - 64px);
    padding: 72px 20px 60px;
    width: 100%;
    margin-left: 0;
  }

  .gradient-bg {
    background:
      radial-gradient(circle at 50% 4%, rgba(126, 60, 255, 0.1) 0%, rgba(126, 60, 255, 0.04) 18%, rgba(126, 60, 255, 0) 42%),
      linear-gradient(180deg, rgba(20, 10, 34, 0.92) 0%, rgba(12, 8, 22, 0.96) 55%, rgba(7, 6, 14, 0.99) 100%);
  }

  .gradient-bg::before,
  .gradient-bg::after {
    display: none;
  }

  .hero-orb-glow {
    width: min(20rem, 72vw);
    height: min(20rem, 72vw);
  }

  .hero-orb-ring-1 {
    width: min(13rem, 46vw);
    height: min(13rem, 46vw);
    border-width: 5px;
  }

  .hero-orb-ring-2 {
    width: min(15.5rem, 54vw);
    height: min(15.5rem, 54vw);
  }

  .hero-orb-core {
    width: min(11rem, 38vw);
    height: min(11rem, 38vw);
  }

  .cta-panel h2 {
    font-size: clamp(2.4rem, 11vw, 4.25rem);
  }

  .intro-copy h2,
  .feature-copy h2,
  .promo-card h3 {
    font-size: clamp(1.35rem, 8vw, 1.9rem);
  }

  .services-intro {
    margin-bottom: 26px;
  }

  .service-split {
    gap: 18px;
  }

  .services-intro h2 {
    font-size: clamp(2rem, 12vw, 2.9rem);
  }

  .services-intro p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.6;
  }

  .service-kicker {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .service-image {
    min-height: 240px;
    border-radius: 20px;
  }

  .service-split-copy h2 {
    margin-top: 22px;
    font-size: clamp(1.95rem, 10vw, 2.7rem);
    line-height: 1.02;
  }

  .service-split-copy p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.6;
  }

  .service-points {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
    padding: 20px 18px;
    justify-items: start;
  }

  .service-points span {
    font-size: 13px;
    width: 100%;
    justify-content: flex-start;
    justify-self: stretch;
    text-align: left;
  }

  .metrics-section {
    padding: 16px 0 34px;
  }

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

  .metric-card {
    min-height: 170px;
    padding: 30px 18px 24px;
  }

  .metric-number {
    font-size: clamp(1.95rem, 11vw, 2.65rem);
  }

  .metric-label {
    margin-top: 14px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }

  .changelog-head {
    margin-bottom: 20px;
  }

  .changelog-head h2 {
    font-size: clamp(2rem, 11vw, 2.9rem);
  }

  .changelog-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    position: relative;
    margin-top: 40px;
  }

  .changelog-item {
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 6px;
    padding: 0;
    min-height: 0;
  }

  .changelog-node-row {
    grid-column: 1;
    grid-row: 1;
    height: auto;
    align-items: flex-start;
    margin-bottom: 0;
    padding-top: 4px;
  }

  .changelog-grid::before {
    display: block;
    left: 4px;
    right: auto;
    top: 6px;
    bottom: 12px;
    width: 1px;
    height: auto;
  }

  .changelog-item h3 {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
    font-size: 15px;
  }

  .changelog-item p {
    grid-column: 2;
    grid-row: 2;
    font-size: 15px;
    max-width: none;
  }

  .changelog-item time {
    grid-column: 2;
    grid-row: 3;
    margin-top: 10px;
    font-size: 13px;
    letter-spacing: 0.12em;
  }


  .cta-panel {
    padding: 68px 20px 72px;
    border-radius: 22px;
  }

  .cta-panel h2 {
    white-space: normal;
    font-size: 32px;
    line-height: 1.15;
  }

  .cta-panel p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.6;
  }

  .cta-actions {
    margin-top: 24px;
  }

  .feature-title-line {
    white-space: normal;
  }

  .hero-subtitle {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
  }

  .hero-link {
    max-width: 100%;
    min-width: 0;
    width: auto;
    font-size: 13px;
    line-height: 1.45;
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .hero-link-label {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-cta {
    min-height: 52px;
    padding: 0 20px;
    font-size: 16px;
  }

  .cta-panel {
    padding: 82px 18px 90px;
  }

  .cta-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .logo-slider {
    margin-top: 22px;
    padding-top: 10px;
  }

  .logo-track {
    gap: 32px;
  }

  .logo-item {
    font-size: 1.2rem;
  }

  .logo-band-title {
    font-size: 0.95rem;
  }

  .principles-grid {
    row-gap: 18px;
  }

  .app-window,
  .showcase-card {
    padding: 10px;
    border-radius: 18px;
  }

  .mini-card,
  .promo-card,
  .cta-panel {
    border-radius: 16px;
  }

  .mini-card {
    min-height: 0;
    padding: 22px 0 26px;
    align-items: center;
    width: 100%;
  }

  .mini-card::before {
    display: none;
  }

  .mini-card h3,
  .mini-card p {
    max-width: 360px;
    width: 100%;
    text-align: center !important;
  }

  .intro-copy {
    margin-bottom: 26px;
  }

  .intro-copy h2 {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
    line-height: 1.08;
  }

  .feature-detail-title h2,
  .intake-title h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    line-height: 1.2;
  }

  .feature-detail-summary p,
  .intake-summary p {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
  }

  .feature-detail-label,
  .intake-label {
    margin-top: 18px;
    font-size: 12px;
  }

  .figure-image {
    max-width: 86%;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }

  .feature-copy {
    max-width: none;
  }

  .board-shell {
    grid-template-columns: 1fr;
  }

  .intake-board {
    grid-template-columns: 1fr;
  }

  .feature-detail-media img {
    height: auto;
    max-height: 500px;
  }

  .intake-footer-link,
  .intake-footer-link-split,
  .detail-footer-link,
  .detail-footer-link-split {
    border-left: 0;
    padding-left: 0;
  }

  .board-column {
    min-height: auto;
  }

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

  .footer-column h3,
  .footer-newsletter h3 {
    margin-bottom: 18px;
  }

  .footer-column a,
  .footer-bottom a {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer-bottom {
    margin-top: 52px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .newsletter-form button {
    width: 100%;
  }

  .placeholder-page {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 58px;
  }

  .placeholder-copy,
  .placeholder-panel {
    padding: 24px;
    border-radius: 22px;
  }

  .placeholder-copy h1 {
    letter-spacing: -0.05em;
  }

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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