

:root {
  --ink: #11142b;
  --muted: #70758d;
  --line: rgba(91, 82, 153, 0.12);
  --accent: #6c63ff;
  --accent-soft: #d8d5ff;
  --accent-deep: #171148;
  --accent-alt: #d49fe5;
  --surface: rgba(255, 255, 255, 0.76);
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: #f7f7fb;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  padding: clamp(10px, 1.25vw, 22px);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 31%),
    linear-gradient(135deg, #f4f5fa 0%, #faf9fc 48%, #f0f3fa 100%);
}

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

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

.landing-shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100%;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: clamp(24px, 2.5vw, 42px);
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58)),
    radial-gradient(circle at 74% 36%, rgba(217, 212, 255, 0.45), transparent 28%),
    radial-gradient(circle at 93% 72%, rgba(190, 236, 232, 0.36), transparent 25%);
  box-shadow: 0 32px 80px rgba(38, 35, 76, 0.1), inset 0 0 0 1px rgba(111, 103, 188, 0.06);
}

.landing-shell::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(99, 90, 181, 0.12) 0.8px, transparent 0.8px);
  background-size: 20px 20px;
  opacity: 0.16;
  content: "";
  mask-image: linear-gradient(to right, transparent, black 40%, black 78%, transparent);
}

.aurora {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(16px);
  pointer-events: none;
}

.aurora-one {
  top: 20%;
  right: 1%;
  width: 32vw;
  height: 32vw;
  background: conic-gradient(from 180deg, rgba(109, 99, 255, 0.16), rgba(255, 173, 196, 0.15), rgba(140, 224, 225, 0.18), rgba(109, 99, 255, 0.16));
  animation: breathe 9s ease-in-out infinite;
}

.aurora-two {
  bottom: -15%;
  left: 17%;
  width: 22vw;
  height: 22vw;
  background: rgba(213, 176, 255, 0.15);
}

.landing-header {
  position: relative;
  z-index: 10;
  display: flex;
  width: 100%;
  max-width: 1920px;
  height: clamp(74px, 9vh, 96px);
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  padding: 0 clamp(24px, 4vw, 68px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #0f172a;
  font: 700 clamp(1rem, 1.15vw, 1.28rem)/1 "Outfit", sans-serif;
  letter-spacing: -0.02em;
}

.brand strong {
  font: inherit;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 11px;
  background: conic-gradient(from 225deg, #ff3b30, #ff9500, #ffcc00, #4cd964, #5ac8fa, #007aff, #5856d6, #ff2d55, #ff3b30);
  box-shadow:
    0 10px 24px rgba(108, 99, 255, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.48);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand:hover .brand-mark {
  transform: rotate(180deg) scale(1.08);
}

.mini-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.2vw, 54px);
  color: #646980;
  font-size: 0.76rem;
  font-weight: 600;
}

.mini-nav span {
  position: relative;
}

.mini-nav span + span::before {
  position: absolute;
  top: 50%;
  left: calc(clamp(24px, 3.2vw, 54px) / -2);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c0bdcf;
  content: "";
}

.header-action,
.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-action {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(83, 75, 144, 0.13);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(32, 28, 72, 0.06);
  font-size: 0.76rem;
}

.header-action svg,
.primary-action svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-action:hover,
.primary-action:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  width: 100%;
  max-width: 1920px;
  height: calc(100% - clamp(74px, 9vh, 96px) - clamp(62px, 8vh, 78px));
  grid-template-columns: minmax(360px, 0.86fr) minmax(580px, 1.14fr);
  align-items: center;
  gap: clamp(20px, 3vw, 56px);
  margin-inline: auto;
  padding: 0 clamp(24px, 4vw, 68px) clamp(12px, 2vh, 22px);
}

.hero-copy {
  z-index: 2;
  max-width: 610px;
  padding-left: clamp(0px, 2vw, 26px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: clamp(16px, 2.5vh, 27px);
  padding: 8px 13px;
  border: 1px solid rgba(108, 99, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: #686482;
  font-size: clamp(0.62rem, 0.66vw, 0.73rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.eyebrow-spark {
  color: var(--accent);
  font-size: 0.9rem;
}

h1 {
  max-width: 610px;
  margin: 0;
  color: #12152c;
  font: 700 clamp(3.1rem, 4.8vw, 6.1rem)/0.94 "Outfit", sans-serif;
  letter-spacing: -0.062em;
}

h1 > .hero-title-line {
  display: block;
  background: linear-gradient(100deg, var(--accent) 2%, #9c79e9 43%, #e68bb4 76%, #dc9a75);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  max-width: 520px;
  margin: clamp(18px, 2.7vh, 30px) 0 0;
  color: #696e84;
  font-size: clamp(0.88rem, 1vw, 1.08rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 38px);
  margin-top: clamp(22px, 3.4vh, 38px);
}

.primary-action {
  min-height: 56px;
  padding: 0 25px;
  background: linear-gradient(120deg, var(--accent), color-mix(in srgb, var(--accent), #7ec7ff 35%));
  box-shadow: 0 15px 30px color-mix(in srgb, var(--accent), transparent 72%);
  color: white;
  font-size: 0.84rem;
}

.color-starter {
  display: grid;
  gap: 8px;
}

.color-starter > span {
  color: #8a8ea0;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.color-options {
  display: flex;
  gap: 8px;
}

.color-dot {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 4px solid white;
  border-radius: 50%;
  background: #6c63ff;
  box-shadow: 0 0 0 1px rgba(70, 65, 112, 0.13), 0 5px 10px rgba(31, 28, 61, 0.12);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.color-dot:nth-child(2) { background: #f06472; }
.color-dot:nth-child(3) { background: #13a88a; }
.color-dot:nth-child(4) { background: #e7a21a; }

.color-dot:hover,
.color-dot.is-active {
  box-shadow: 0 0 0 2px var(--accent), 0 6px 12px rgba(31, 28, 61, 0.13);
  transform: scale(1.08);
}

.trust-row {
  display: flex;
  gap: clamp(18px, 2.8vw, 42px);
  margin-top: clamp(26px, 4.5vh, 52px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #82869a;
  font-size: 0.67rem;
  white-space: nowrap;
}

.trust-item strong {
  color: #4c5066;
}

.trust-icon {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(108, 99, 255, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--accent);
}

.trust-icon svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.product-scene {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 870px;
  min-height: min(62vh, 650px);
  justify-self: end;
}

.studio-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92%, 760px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: clamp(22px, 2vw, 30px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 38px 80px rgba(45, 38, 91, 0.16), 0 8px 24px rgba(64, 53, 129, 0.06), inset 0 0 0 1px rgba(117, 108, 190, 0.08);
  transform: translate(-50%, -48%) perspective(1200px) rotateY(-2deg) rotateX(1deg);
  backdrop-filter: blur(18px);
}

.studio-topbar {
  display: flex;
  height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid rgba(86, 78, 143, 0.08);
  color: #777b91;
  font-size: 0.62rem;
  font-weight: 600;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #deddea;
}

.studio-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #5e6379;
}

.studio-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #58c8a8;
  box-shadow: 0 0 0 4px rgba(88, 200, 168, 0.11);
}

.studio-body {
  display: grid;
  min-height: 430px;
  grid-template-columns: 60px 1fr;
}

.studio-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 13px;
  padding-top: 18px;
  border-right: 1px solid rgba(86, 78, 143, 0.08);
  background: rgba(249, 249, 253, 0.66);
}

.side-logo {
  display: grid;
  width: 27px;
  height: 27px;
  margin-bottom: 13px;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--accent), var(--accent-alt));
}

.side-logo span {
  width: 10px;
  height: 10px;
  border: 2px solid white;
  border-radius: 50%;
}

.side-item {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #9b9eb0;
}

.side-item.is-active {
  background: color-mix(in srgb, var(--accent), white 91%);
  color: var(--accent);
}

.side-item svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.studio-content {
  padding: clamp(18px, 2vw, 28px);
}

.studio-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.studio-heading small {
  color: var(--accent);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.studio-heading h2 {
  margin: 5px 0 0;
  font: 700 clamp(0.94rem, 1.2vw, 1.18rem)/1 "Outfit", sans-serif;
  letter-spacing: -0.025em;
}

.base-color {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(90, 82, 145, 0.09);
  border-radius: 9px;
  background: white;
  color: #616579;
  font-size: 0.56rem;
}

.base-color i {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--accent);
}

.tone-row {
  display: grid;
  height: 104px;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  margin-top: 20px;
}

.tone-row > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 9px;
  border-radius: 12px;
  background: var(--tone);
  color: color-mix(in srgb, var(--tone), #111 78%);
  font-size: 0.52rem;
  box-shadow: inset 0 0 0 1px rgba(60, 54, 104, 0.04);
}

.tone-row > span:nth-child(n + 4) {
  color: white;
}

.tone-row > span.is-base {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.tone-row b {
  font-size: 0.58rem;
}

.tone-row small {
  overflow: hidden;
  opacity: 0.76;
  font-size: 0.44rem;
  text-overflow: ellipsis;
}

.system-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  margin-top: 14px;
}

.roles-card,
.preview-card {
  min-width: 0;
  height: 138px;
  overflow: hidden;
  border: 1px solid rgba(83, 76, 137, 0.08);
  border-radius: 15px;
  background: rgba(250, 250, 253, 0.9);
}

.roles-card {
  padding: 13px;
}

.card-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #40445a;
  font-size: 0.56rem;
  font-weight: 700;
}

.card-label small {
  color: #9a9dae;
  font-size: 0.44rem;
  font-weight: 600;
}

.role-colors {
  display: grid;
  height: 88px;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 10px;
}

.role-colors span {
  display: flex;
  align-items: flex-end;
  padding: 7px;
  border-radius: 9px;
  background: var(--role);
}

.role-colors i {
  color: white;
  font-size: 0.42rem;
  font-style: normal;
  font-weight: 700;
}

.role-colors span:nth-child(2) i {
  color: #4f5266;
}

.preview-card {
  position: relative;
  background:
    radial-gradient(circle at 86% 16%, color-mix(in srgb, var(--accent-alt), white 15%) 0 9%, transparent 10%),
    linear-gradient(140deg, var(--accent-deep), color-mix(in srgb, var(--accent), var(--accent-deep) 38%));
  color: white;
}

.preview-card::after {
  position: absolute;
  right: -14px;
  bottom: -35px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.preview-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px;
}

.preview-nav i {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: white;
}

.preview-nav span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
}

.preview-copy {
  display: flex;
  max-width: 190px;
  flex-direction: column;
  gap: 6px;
  padding: 7px 16px;
}

.preview-copy small {
  color: color-mix(in srgb, var(--accent-alt), white 50%);
  font-size: 0.4rem;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.preview-copy strong {
  font: 600 clamp(0.65rem, 0.85vw, 0.82rem)/1.25 "Outfit", sans-serif;
}

.preview-copy i {
  width: 42px;
  height: 4px;
  margin-top: 3px;
  border-radius: 999px;
  background: var(--accent-alt);
}

.studio-footer {
  display: grid;
  height: 42px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 0 13px;
  border: 1px solid rgba(83, 76, 137, 0.08);
  border-radius: 12px;
  color: #4e5367;
  font-size: 0.5rem;
  font-weight: 700;
}

.studio-footer small {
  color: #999cad;
  font-weight: 600;
}

.status-check {
  display: inline-grid;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  place-items: center;
  border-radius: 50%;
  background: #dff7ed;
  color: #21a77d;
  font-size: 0.48rem;
  font-style: normal;
}

.gradient-sample {
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-alt), color-mix(in srgb, var(--accent), #89d8dd 50%));
}

.footer-export {
  color: var(--accent);
}

.feature-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  min-width: 150px;
  align-items: center;
  gap: 10px;
  padding: 10px 13px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 30px rgba(50, 43, 93, 0.1);
  backdrop-filter: blur(14px);
}

.feature-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: color-mix(in srgb, var(--accent), white 90%);
  color: var(--accent);
}

.feature-icon svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.feature-chip > span:last-child {
  display: grid;
  gap: 3px;
}

.feature-chip strong {
  color: #3c4057;
  font-size: 0.57rem;
}

.feature-chip small {
  color: #9397a9;
  font-size: 0.47rem;
}

.feature-chip-scale {
  top: 7%;
  left: -1%;
}

.feature-chip-contrast {
  top: 16%;
  right: -1%;
}

.feature-chip-export {
  right: 2%;
  bottom: 4%;
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(108, 99, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 6px;
  height: 6px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 4px 10px rgba(75, 65, 156, 0.25);
  content: "";
}

.orbit-left {
  top: 5%;
  left: -10%;
  width: 260px;
  height: 260px;
  border-right-color: transparent;
  transform: rotate(-20deg);
}

.orbit-left::before { top: 34px; right: 34px; }
.orbit-left::after { right: -2px; bottom: 70px; }

.orbit-right {
  right: -16%;
  bottom: -8%;
  width: 330px;
  height: 330px;
  border-left-color: transparent;
  transform: rotate(18deg);
}

.orbit-right::before { top: 32px; left: 42px; }
.orbit-right::after { bottom: 45px; left: 20px; }

.landing-footer {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 50%;
  display: flex;
  width: min(calc(100% - (clamp(24px, 4vw, 68px) * 2)), calc(1920px - (clamp(24px, 4vw, 68px) * 2)));
  height: clamp(62px, 8vh, 78px);
  align-items: center;
  gap: 9px;
  border-top: 1px solid rgba(75, 68, 128, 0.09);
  color: #878b9d;
  font-size: clamp(0.6rem, 0.7vw, 0.75rem);
  transform: translateX(-50%);
}

@media (min-width: 2400px) {
  .landing-header,
  .hero {
    max-width: 2040px;
  }

  .landing-footer {
    width: min(calc(100% - 136px), 1904px);
  }
}

@media (min-width: 3000px) and (min-height: 1400px) {
  .landing-header,
  .hero {
    max-width: 2300px;
  }

  .landing-header .brand,
  .landing-header .mini-nav,
  .landing-header .header-action {
    transform: scale(1.28);
  }

  .landing-header .brand {
    transform-origin: center left;
  }

  .landing-header .header-action {
    transform-origin: center right;
  }

  .hero-copy {
    transform: scale(1.32);
    transform-origin: center right;
  }

  .product-scene {
    transform: scale(1.32);
    transform-origin: center left;
  }

  .landing-footer {
    width: min(calc(100% - 136px), 2164px);
    font-size: 0.97rem;
  }

  .landing-footer .footer-features {
    font-size: 0.68rem;
  }
}

.landing-footer > i {
  width: 24px;
  height: 1px;
  background: #c9c7d4;
}

.landing-footer strong {
  color: #565a70;
}

.footer-features {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: auto;
  color: #75798d;
  font-size: 0.58rem;
  font-weight: 600;
}

.footer-features b {
  color: var(--accent);
  font-weight: 500;
}

@keyframes breathe {
  50% { transform: scale(1.08) rotate(5deg); }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(320px, 0.8fr) minmax(490px, 1.2fr);
    gap: 10px;
  }

  .feature-chip {
    min-width: 138px;
  }

  .feature-chip-scale { left: 0; }
  .feature-chip-contrast { right: -2%; }
}

@media (max-width: 860px) {
  body { padding: 0; }

  .landing-shell {
    min-height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .mini-nav,
  .trust-row,
  .landing-footer,
  .feature-chip,
  .orbit {
    display: none;
  }

  .landing-header {
    height: 70px;
    padding: 0 20px;
  }

  .header-action {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    display: flex;
    width: 100%;
    min-width: 0;
    height: calc(100% - 70px);
    flex-direction: column;
    gap: 18px;
    overflow: hidden;
    padding: 3vh 20px 18px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    width: 100%;
    min-width: 0;
    max-width: 640px;
    align-items: center;
    flex-direction: column;
    padding: 0;
  }

  .eyebrow { margin-bottom: 14px; }

  h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.55rem, 10vw, 4.5rem);
  }

  .hero-description {
    max-width: 540px;
    margin-top: 14px;
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .product-scene {
    width: min(100%, 670px);
    min-width: 0;
    max-width: 100%;
    min-height: 0;
    flex: 1;
  }

  .studio-card {
    top: 0;
    width: 100%;
    transform: translateX(-50%) scale(0.86);
    transform-origin: top center;
  }
}

@media (max-width: 560px) {
  .header-action svg { display: none; }
  .header-action {
    display: none;
  }

  .eyebrow { font-size: 0.56rem; }

  .hero {
    gap: 14px;
    padding-top: 2vh;
  }

  h1 {
    max-width: 350px;
    font-size: clamp(2.15rem, 10.8vw, 3rem);
    line-height: 0.96;
  }

  .hero-description {
    max-width: 350px;
    font-size: 0.7rem;
  }

  .hero-actions {
    gap: 14px;
    margin-top: 15px;
  }

  .primary-action {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.73rem;
  }

  .color-starter > span { display: none; }
  .color-starter { display: block; }
  .color-options { gap: 6px; }
  .color-dot { width: 21px; height: 21px; }

  .studio-card {
    width: 670px;
    transform: translateX(-50%) scale(0.46);
  }
}

@media (max-width: 380px) {
  .landing-header { padding: 0 14px; }
  .brand { gap: 8px; }
  .brand-mark { width: 31px; height: 31px; }
  .hero { padding-right: 14px; padding-left: 14px; }
  .studio-card { transform: translateX(-50%) scale(0.43); }
}

@media (max-height: 760px) and (min-width: 861px) {
  .landing-header { height: 72px; }
  .hero { height: calc(100% - 72px - 58px); }
  .landing-footer { height: 58px; }
  .eyebrow { margin-bottom: 13px; }
  .hero-description { margin-top: 16px; }
  .hero-actions { margin-top: 18px; }
  .trust-row { margin-top: 22px; }
  .product-scene { min-height: 530px; transform: scale(0.9); transform-origin: center right; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.landing-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-select select {
  min-height: 40px;
  padding: 0 30px 0 13px;
  border: 1px solid rgba(83, 75, 144, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #303248;
  font: 700 0.72rem/1 "Inter", sans-serif;
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 720px) {
  .landing-header-actions { gap: 6px; }
  .language-select select { min-height: 38px; padding-inline: 10px; font-size: 0.66rem; }
}
/* Long-form SEO content */
html, body { height: auto; min-height: 100%; overflow-x: hidden; overflow-y: auto; scroll-behavior: smooth; }
body { padding-bottom: 24px; }
.landing-shell { height: min(900px, calc(100vh - clamp(20px, 2.5vw, 44px))); min-height: 620px; }
.mini-nav a { position: relative; transition: color 160ms ease; }
.mini-nav a:hover { color: var(--accent); }
.mini-nav a + a::before { position: absolute; top: 50%; left: calc(clamp(24px, 3.2vw, 54px) / -2); width: 3px; height: 3px; border-radius: 50%; background: #c0bdcf; content: ""; }
.mini-nav span + span::before { content: none; }
.seo-content { width: min(1180px, calc(100% - 40px)); margin: 0 auto; color: var(--ink); }
.content-section { padding: clamp(76px, 10vw, 132px) 0; border-bottom: 1px solid var(--line); }
.section-heading { max-width: 780px; }
.section-kicker { display: block; margin-bottom: 14px; color: var(--accent); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.section-heading h2, .content-cta h2 { margin: 0; font: 700 clamp(2rem, 4vw, 4.25rem)/1.05 "Outfit", sans-serif; letter-spacing: -.045em; }
.section-heading > p { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.16rem); line-height: 1.75; }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 50px; }
.feature-grid article { min-height: 250px; padding: clamp(24px, 3vw, 40px); border: 1px solid rgba(91,82,153,.12); border-radius: 28px; background: rgba(255,255,255,.7); box-shadow: 0 18px 50px rgba(38,35,76,.06); }
.feature-grid article > span { color: var(--accent); font: 800 .72rem/1 "Outfit", sans-serif; }
.feature-grid h3 { margin: 55px 0 12px; font: 700 clamp(1.25rem, 2vw, 1.7rem)/1.15 "Outfit", sans-serif; }
.feature-grid p, .workflow-list p, .faq-list p { margin: 0; color: var(--muted); line-height: 1.7; }
.workflow-list { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; margin: 52px 0 0; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--line); list-style: none; counter-reset: steps; }
.workflow-list li { min-height: 280px; padding: 32px; background: #fafafe; counter-increment: steps; }
.workflow-list li::before { display: block; margin-bottom: 70px; color: var(--accent); content: "0" counter(steps); font: 800 .75rem/1 "Outfit", sans-serif; }
.workflow-list strong { display: block; margin-bottom: 12px; font: 700 1.2rem/1.2 "Outfit", sans-serif; }
.use-cases-section { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: end; }
.use-case-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.use-case-tags span { padding: 14px 18px; border: 1px solid rgba(108,99,255,.17); border-radius: 999px; background: rgba(108,99,255,.06); color: #403a93; font-weight: 700; }
.faq-list { margin-top: 44px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 24px 4px; cursor: pointer; font: 700 clamp(1rem, 1.7vw, 1.28rem)/1.3 "Outfit", sans-serif; }
.faq-list p { max-width: 760px; padding: 0 4px 26px; }
.content-cta { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin: clamp(76px, 10vw, 130px) 0 40px; padding: clamp(36px, 6vw, 72px); border-radius: 34px; background: linear-gradient(135deg,#171148,#453bc0 62%,#6c63ff); color: white; }
.content-cta .section-kicker { color: #c8c3ff; }
.content-cta .primary-action { flex: 0 0 auto; background: white; color: #211c61; box-shadow: none; }
.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0 8px; color: var(--muted); font-size: .82rem; }
.site-footer a { color: var(--ink); font-weight: 800; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } .workflow-list { grid-template-columns: repeat(2,1fr); } .use-cases-section { grid-template-columns: 1fr; gap: 36px; } .use-case-tags { justify-content: flex-start; } }
@media (max-width: 860px) { .landing-shell { height: 100dvh; } .seo-content { width: min(100% - 32px, 680px); } }
@media (max-width: 620px) { .content-section { padding: 64px 0; } .workflow-list { grid-template-columns: 1fr; } .workflow-list li { min-height: 230px; } .workflow-list li::before { margin-bottom: 44px; } .content-cta { align-items: flex-start; flex-direction: column; } .site-footer { flex-direction: column; } }
/* Cohesive long-form landing refresh */
html, body { height: auto; min-height: 100%; overflow-x: hidden; overflow-y: auto; scroll-behavior: smooth; }
.landing-shell { height: calc(100dvh - (clamp(10px, 1.25vw, 22px) * 2)); min-height: 620px; }
.seo-content {
  position: relative; isolation: isolate; width: min(1380px, calc(100% - 40px));
  margin: clamp(24px, 3vw, 48px) auto 0; overflow: hidden;
  border: 1px solid rgba(255,255,255,.9); border-radius: clamp(28px,3vw,48px);
  background: radial-gradient(circle at 94% 8%,rgba(108,99,255,.13),transparent 24%), radial-gradient(circle at 4% 42%,rgba(212,159,229,.11),transparent 22%), radial-gradient(circle at 88% 72%,rgba(103,200,215,.11),transparent 24%), linear-gradient(145deg,rgba(255,255,255,.9),rgba(248,248,253,.82));
  box-shadow: 0 32px 90px rgba(38,35,76,.08), inset 0 0 0 1px rgba(111,103,188,.04);
}
.seo-content::before { position:absolute; z-index:-1; inset:0; background-image:radial-gradient(rgba(99,90,181,.1) .75px,transparent .75px); background-size:22px 22px; opacity:.2; content:""; mask-image:linear-gradient(to bottom,black,transparent 36%,black 68%,transparent); }
.content-section { position:relative; width:min(1180px,calc(100% - clamp(40px,8vw,120px))); margin:0 auto; padding:clamp(90px,10vw,148px) 0; border-bottom:1px solid var(--line); }
.section-heading { max-width:830px; }
.section-kicker { display:inline-flex; align-items:center; gap:9px; margin-bottom:18px; padding:9px 13px; border:1px solid rgba(108,99,255,.15); border-radius:999px; background:rgba(255,255,255,.62); color:var(--accent); font-size:.67rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; box-shadow:0 10px 24px rgba(50,43,93,.05); }
.section-kicker::before { width:7px; height:7px; border-radius:50%; background:currentColor; box-shadow:0 0 0 5px color-mix(in srgb,currentColor,transparent 88%); content:""; }
.section-heading h2,.content-cta h2 { margin:0; font:700 clamp(2.45rem,4.8vw,5.1rem)/.98 "Outfit",sans-serif; letter-spacing:-.055em; }
.section-heading h2 { background:linear-gradient(105deg,#171a34 12%,#5a4fc9 72%,#a36eb6); -webkit-background-clip:text; background-clip:text; color:transparent; }
.section-heading>p { max-width:760px; margin:26px 0 0; font-size:clamp(1rem,1.5vw,1.16rem); line-height:1.8; }
.feature-grid { gap:20px; margin-top:58px; }
.feature-grid article { --card-color:var(--accent); position:relative; min-height:290px; overflow:hidden; padding:clamp(28px,3vw,42px); border:1px solid rgba(91,82,153,.11); border-radius:30px; background:linear-gradient(145deg,rgba(255,255,255,.9),rgba(247,246,253,.72)); box-shadow:0 22px 55px rgba(38,35,76,.07),inset 0 0 0 1px rgba(255,255,255,.75); transition:transform 220ms ease,box-shadow 220ms ease; }
.feature-grid article:nth-child(2){--card-color:#e889ac}.feature-grid article:nth-child(3){--card-color:#13a88a}.feature-grid article:nth-child(4){--card-color:#e7a21a}
.feature-grid article::before { position:absolute; top:-70px; right:-55px; width:190px; height:190px; border-radius:50%; background:radial-gradient(circle,color-mix(in srgb,var(--card-color),transparent 62%),transparent 68%); content:""; }
.feature-grid article::after { position:absolute; right:34px; bottom:32px; width:82px; height:82px; border:1px solid color-mix(in srgb,var(--card-color),transparent 72%); border-radius:26px; content:""; transform:rotate(14deg); }
.feature-grid article:hover { transform:translateY(-6px); box-shadow:0 30px 70px rgba(38,35,76,.11); }
.feature-grid article>span { display:grid; width:44px; height:44px; place-items:center; border-radius:14px; background:color-mix(in srgb,var(--card-color),white 88%); color:var(--card-color); }
.feature-grid h3 { max-width:370px; margin:70px 0 14px; font-size:clamp(1.35rem,2vw,1.85rem); letter-spacing:-.025em; }
.feature-grid p,.workflow-list p,.faq-list p { position:relative; z-index:1; }
.workflow-section::after { position:absolute; top:150px; right:2%; width:220px; height:220px; border:1px solid rgba(108,99,255,.12); border-radius:50%; content:""; }
.workflow-list { position:relative; gap:14px; margin-top:62px; padding:14px; overflow:visible; border:1px solid rgba(91,82,153,.1); border-radius:32px; background:rgba(255,255,255,.46); box-shadow:0 22px 55px rgba(38,35,76,.06); backdrop-filter:blur(14px); }
.workflow-list::before { position:absolute; top:55px; right:10%; left:10%; height:1px; background:linear-gradient(90deg,transparent,rgba(108,99,255,.35),rgba(212,159,229,.4),transparent); content:""; }
.workflow-list li { position:relative; min-height:310px; padding:28px; border-radius:22px; background:linear-gradient(155deg,rgba(255,255,255,.92),rgba(247,246,253,.72)); }
.workflow-list li::before { position:relative; z-index:1; display:grid; width:42px; height:42px; margin-bottom:84px; place-items:center; border:5px solid white; border-radius:50%; background:linear-gradient(135deg,var(--accent),var(--accent-alt)); box-shadow:0 8px 20px color-mix(in srgb,var(--accent),transparent 72%); color:white; }
.workflow-list strong { font-size:1.24rem; letter-spacing:-.02em; }
.use-cases-section { grid-template-columns:1fr .82fr; gap:clamp(50px,8vw,110px); align-items:center; }
.use-cases-section::before { position:absolute; right:-4%; width:44%; height:58%; border-radius:42px; background:linear-gradient(145deg,rgba(108,99,255,.08),rgba(212,159,229,.1)); content:""; transform:rotate(-3deg); }
.use-case-tags { position:relative; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; padding:18px; border:1px solid rgba(255,255,255,.85); border-radius:30px; background:rgba(255,255,255,.55); box-shadow:0 28px 65px rgba(38,35,76,.1); backdrop-filter:blur(14px); }
.use-case-tags span { display:flex; min-height:82px; align-items:flex-end; padding:18px; border:1px solid rgba(108,99,255,.12); border-radius:20px; background:linear-gradient(145deg,rgba(255,255,255,.92),rgba(108,99,255,.07)); color:#403a93; font:.86rem/1.2 "Outfit",sans-serif; font-weight:700; }
.use-case-tags span:nth-child(2),.use-case-tags span:nth-child(5){background:linear-gradient(145deg,rgba(255,255,255,.92),rgba(212,159,229,.13));color:#76477f}.use-case-tags span:nth-child(3),.use-case-tags span:nth-child(6){background:linear-gradient(145deg,rgba(255,255,255,.92),rgba(19,168,138,.1));color:#176d5d}
.faq-list { display:grid; gap:12px; margin-top:52px; }
.faq-list details,.faq-list details:last-child { overflow:hidden; border:1px solid rgba(91,82,153,.1); border-radius:20px; background:rgba(255,255,255,.64); box-shadow:0 12px 34px rgba(38,35,76,.045); transition:background 180ms ease,transform 180ms ease; }
.faq-list details[open] { background:rgba(255,255,255,.92); transform:translateX(6px); }
.faq-list summary { position:relative; padding:25px 64px 25px 25px; list-style:none; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { position:absolute; top:50%; right:22px; display:grid; width:30px; height:30px; place-items:center; border-radius:10px; background:color-mix(in srgb,var(--accent),white 90%); color:var(--accent); content:"+"; transform:translateY(-50%); }
.faq-list details[open] summary::after { content:"-"; }
.faq-list p { max-width:800px; padding:0 25px 26px; }
.content-cta { position:relative; width:min(1180px,calc(100% - clamp(40px,8vw,120px))); margin:clamp(76px,10vw,130px) auto 40px; overflow:hidden; border:1px solid rgba(255,255,255,.2); background:radial-gradient(circle at 85% 10%,rgba(212,159,229,.5),transparent 26%),linear-gradient(135deg,#171148,#453bc0 62%,#6c63ff); box-shadow:0 32px 70px rgba(57,47,155,.25); }
.content-cta::after { position:absolute; right:-70px; bottom:-130px; width:310px; height:310px; border:1px solid rgba(255,255,255,.2); border-radius:50%; content:""; }
.site-footer { width:min(1180px,calc(100% - clamp(40px,8vw,120px))); margin:0 auto; padding-bottom:34px; }
@media(max-width:900px){.workflow-list::before{display:none}.use-cases-section{grid-template-columns:1fr;gap:48px}.use-cases-section::before{right:-10%;bottom:8%;width:80%;height:34%}}
@media(max-width:860px){.landing-shell{height:100dvh}.seo-content{width:calc(100% - 20px);margin-top:10px;border-radius:28px}.content-section,.content-cta,.site-footer{width:calc(100% - 40px)}}
@media(max-width:620px){.content-section{padding:72px 0}.section-heading h2,.content-cta h2{font-size:clamp(2.25rem,11vw,3.25rem)}.feature-grid article{min-height:270px}.workflow-list{padding:10px}.workflow-list li{min-height:250px}.workflow-list li::before{margin-bottom:54px}.use-case-tags{grid-template-columns:1fr}.use-case-tags span{min-height:68px}}

/* Full-viewport editorial sections */
.seo-content {
  width: 100%;
  margin: clamp(14px, 1.5vw, 24px) 0 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.seo-content::before,
.feature-grid article::before,
.feature-grid article::after,
.workflow-section::after,
.use-cases-section::before,
.content-cta::after {
  display: none;
}
.content-section,
.content-cta {
  width: 100%;
  min-height: calc(100dvh - (clamp(10px, 1.25vw, 22px) * 2));
  margin: 0 0 clamp(14px, 1.5vw, 24px);
  padding: clamp(54px, 6vw, 92px) clamp(28px, 6vw, 96px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.92);
  border-radius: clamp(24px, 2.5vw, 42px);
  background:
    radial-gradient(circle at 80% 16%, rgba(108,99,255,.09), transparent 27%),
    linear-gradient(125deg, rgba(255,255,255,.9), rgba(250,249,253,.72));
  box-shadow: 0 28px 75px rgba(38,35,76,.08), inset 0 0 0 1px rgba(111,103,188,.05);
}
.content-section {
  display: grid;
  grid-template-columns: minmax(300px,.78fr) minmax(560px,1.22fr);
  align-items: center;
  gap: clamp(48px, 7vw, 120px);
}
.content-section:nth-of-type(even) {
  background:
    radial-gradient(circle at 18% 82%, rgba(212,159,229,.1), transparent 27%),
    linear-gradient(125deg, rgba(250,249,253,.78), rgba(255,255,255,.92));
}
.section-heading { max-width: 610px; }
.section-heading h2,
.content-cta h2 { font-size: clamp(2.65rem, 4.4vw, 5.35rem); }
.section-heading > p { max-width: 590px; }
.content-intro .feature-grid,
.workflow-section .workflow-list,
.faq-section .faq-list {
  margin: 0;
}
.feature-grid {
  grid-template-columns: repeat(2,minmax(0,1fr));
  align-self: center;
}
.feature-grid article {
  min-height: clamp(230px, 29vh, 310px);
  padding: clamp(24px, 2.5vw, 38px);
  background: rgba(255,255,255,.78);
}
.feature-grid article:nth-child(1) { transform: translateY(-18px); }
.feature-grid article:nth-child(4) { transform: translateY(18px); }
.feature-grid article:hover { transform: translateY(-6px); }
.feature-grid article:nth-child(1):hover { transform: translateY(-24px); }
.feature-grid article:nth-child(4):hover { transform: translateY(12px); }
.feature-grid h3 { margin: clamp(42px, 6vh, 68px) 0 13px; }
.workflow-section {
  grid-template-columns: minmax(300px,.7fr) minmax(620px,1.3fr);
}
.workflow-list {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
  padding: 14px;
  border-radius: 32px;
}
.workflow-list::before { display: none; }
.workflow-list li {
  min-height: clamp(230px, 29vh, 300px);
  padding: clamp(24px, 2.5vw, 34px);
}
.workflow-list li::before { margin-bottom: clamp(44px, 6vh, 72px); }
.use-cases-section {
  grid-template-columns: minmax(360px,.9fr) minmax(470px,1.1fr);
  gap: clamp(48px, 8vw, 130px);
}
.use-case-tags {
  padding: 16px;
  border-color: rgba(91,82,153,.1);
  background: rgba(255,255,255,.62);
}
.use-case-tags span {
  min-height: clamp(105px, 16vh, 150px);
  padding: 22px;
  font-size: clamp(.88rem, 1.1vw, 1.04rem);
}
.faq-section {
  grid-template-columns: minmax(320px,.75fr) minmax(560px,1.25fr);
}
.faq-list details[open] { transform: none; }
.faq-list summary { padding: clamp(22px,2.2vw,30px) 66px clamp(22px,2.2vw,30px) clamp(22px,2.2vw,30px); }
.content-cta {
  display: grid;
  grid-template-columns: minmax(420px,1fr) auto;
  align-items: center;
  gap: 60px;
  margin-bottom: 0;
  background: linear-gradient(135deg,#171148 0%,#352c9b 48%,#6c63ff 100%);
}
.content-cta > div { max-width: 820px; }
.content-cta .primary-action { min-height: 62px; padding-inline: 30px; font-size: .9rem; }
.site-footer {
  width: 100%;
  padding: 24px clamp(8px, 2vw, 28px) 8px;
}
@media (max-width: 1080px) {
  .content-section,
  .workflow-section,
  .use-cases-section,
  .faq-section { grid-template-columns: 1fr; align-content: center; gap: 48px; }
  .section-heading { max-width: 780px; }
  .feature-grid article:nth-child(1),
  .feature-grid article:nth-child(4) { transform: none; }
  .content-cta { grid-template-columns: 1fr; align-content: center; justify-items: start; }
}
@media (max-width: 700px) {
  .seo-content { margin-top: 10px; }
  .content-section,
  .content-cta {
    min-height: auto;
    margin-bottom: 10px;
    padding: 72px 22px;
    border-radius: 26px;
  }
  .feature-grid,
  .workflow-list,
  .use-case-tags { grid-template-columns: 1fr; }
  .feature-grid article,
  .workflow-list li,
  .use-case-tags span { min-height: auto; }
  .feature-grid article { padding: 26px; }
  .feature-grid h3 { margin-top: 48px; }
  .workflow-list li { padding: 26px; }
  .workflow-list li::before { margin-bottom: 46px; }
  .use-case-tags span { min-height: 86px; }
  .content-cta { min-height: calc(100dvh - 20px); }
}

/* Product-screen sections v2: useful HTML/CSS visuals, one viewport each */
.seo-content { margin-top: clamp(14px,1.5vw,24px); }
.content-section,
.content-cta {
  min-height: calc(100dvh - (clamp(10px,1.25vw,22px) * 2));
  scroll-margin-top: clamp(10px,1.25vw,22px);
}
.content-section {
  grid-template-columns: minmax(320px,.78fr) minmax(580px,1.22fr);
  gap: clamp(44px,6vw,108px);
  background: linear-gradient(125deg,rgba(255,255,255,.94),rgba(249,249,253,.78));
}
.content-section:nth-of-type(even) {
  grid-template-columns: minmax(580px,1.22fr) minmax(320px,.78fr);
  background: linear-gradient(125deg,rgba(249,249,253,.8),rgba(255,255,255,.95));
}
.content-section:nth-of-type(even) .section-copy { order: 2; }
.content-section:nth-of-type(even) .section-visual,
.content-section:nth-of-type(even) > .faq-list { order: 1; }
.section-copy { position: relative; z-index: 2; min-width: 0; }
.section-heading h2 { font-size: clamp(2.75rem,4.25vw,5.15rem); }
.section-heading > p { font-size: clamp(.92rem,1.1vw,1.08rem); line-height: 1.7; }
.section-visual {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(89,80,150,.11);
  border-radius: clamp(24px,2.4vw,34px);
  background: rgba(255,255,255,.78);
  box-shadow: 0 32px 80px rgba(42,36,85,.13), inset 0 0 0 1px rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
}

/* Screen 1: the actual chromatic system */
.content-intro .feature-grid {
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: clamp(28px,4vh,42px);
}
.content-intro .feature-grid article,
.content-intro .feature-grid article:nth-child(1),
.content-intro .feature-grid article:nth-child(4) {
  display: grid;
  min-height: 0;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.66);
  box-shadow: none;
  transform: none;
}
.content-intro .feature-grid article:hover { transform: translateX(5px); box-shadow: 0 12px 28px rgba(38,35,76,.07); }
.content-intro .feature-grid article > span { width: 34px; height: 34px; border-radius: 11px; }
.content-intro .feature-grid h3 { margin: 0 0 3px; font-size: .94rem; }
.content-intro .feature-grid p { overflow: hidden; display: -webkit-box; font-size: .72rem; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 1; }
.system-visual { padding: clamp(24px,3vw,40px); }
.visual-window-bar { display:flex; align-items:center; gap:7px; margin-bottom:clamp(28px,4vh,44px); color:#84889b; font-size:.68rem; }
.visual-window-bar span { width:8px; height:8px; border-radius:50%; background:#deddea; }
.visual-window-bar b { margin-left:auto; color:#555a70; font-size:.68rem; }
.system-visual-head { display:flex; align-items:center; justify-content:space-between; }
.system-visual-head div { display:grid; gap:7px; }
.system-visual-head small { color:#999caf; font-size:.6rem; font-weight:800; letter-spacing:.12em; }
.system-visual-head strong { font:700 clamp(1.55rem,2.3vw,2.35rem)/1 "Outfit",sans-serif; letter-spacing:-.04em; }
.system-visual-head > i { width:52px; height:52px; border:8px solid white; border-radius:17px; background:#6c63ff; box-shadow:0 0 0 1px rgba(91,82,153,.12),0 12px 25px rgba(108,99,255,.24); }
.visual-scale { display:grid; height:clamp(130px,18vh,180px); grid-template-columns:repeat(6,1fr); gap:8px; margin-top:clamp(24px,4vh,38px); }
.visual-scale span { display:flex; min-width:0; flex-direction:column; justify-content:space-between; padding:12px 10px; border-radius:14px; background:var(--swatch); color:color-mix(in srgb,var(--swatch),#111 78%); font-size:.58rem; }
.visual-scale span:nth-child(n+4) { color:white; }
.visual-scale .is-selected { outline:2px solid #6c63ff; outline-offset:3px; transform:translateY(-6px); box-shadow:0 16px 30px rgba(75,65,156,.2); }
.visual-scale small { overflow:hidden; opacity:.72; font-size:.48rem; text-overflow:ellipsis; }
.visual-role-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-top:24px; }
.visual-role-grid > div { display:grid; grid-template-columns:26px 1fr; align-items:center; gap:4px 9px; padding:12px; border:1px solid rgba(91,82,153,.09); border-radius:14px; background:#fafafe; }
.visual-role-grid small { grid-column:1/-1; color:#979aac; font-size:.5rem; }
.visual-role-grid span { width:24px; height:24px; border-radius:8px; background:var(--role); }
.visual-role-grid b { overflow:hidden; color:#4d5167; font-size:.6rem; text-overflow:ellipsis; }
.visual-export-row { display:flex; align-items:center; gap:8px; margin-top:18px; padding:13px 15px; border:1px solid rgba(91,82,153,.09); border-radius:14px; color:#686d82; font-size:.6rem; }
.visual-export-row > span { display:flex; align-items:center; gap:8px; margin-right:auto; }
.visual-export-row i { width:8px; height:8px; border-radius:50%; background:#20b486; box-shadow:0 0 0 5px rgba(32,180,134,.1); }
.visual-export-row b { padding:7px 9px; border-radius:8px; background:#f0efff; color:#5c54d6; font-size:.52rem; }

/* Screen 2: a real four-step pipeline */
.workflow-section .workflow-list { display:grid; grid-template-columns:repeat(2,1fr); gap:8px; margin-top:32px; padding:0; border:0; background:transparent; box-shadow:none; }
.workflow-section .workflow-list li { min-height:0; padding:14px 15px; border:1px solid rgba(91,82,153,.09); border-radius:15px; background:rgba(255,255,255,.65); }
.workflow-section .workflow-list li::before { display:block; width:auto; height:auto; margin:0 0 8px; border:0; border-radius:0; background:none; box-shadow:none; color:var(--accent); font-size:.58rem; }
.workflow-section .workflow-list strong { margin:0 0 4px; font-size:.9rem; }
.workflow-section .workflow-list p { overflow:hidden; display:-webkit-box; font-size:.68rem; line-height:1.4; -webkit-box-orient:vertical; -webkit-line-clamp:2; }
.workflow-visual { padding:clamp(22px,3vw,36px); }
.workflow-toolbar { display:flex; align-items:center; justify-content:space-between; margin-bottom:24px; padding-bottom:18px; border-bottom:1px solid rgba(91,82,153,.09); color:#777b90; font-size:.62rem; }
.workflow-toolbar b { padding:8px 11px; border-radius:999px; background:#e3f7f0; color:#168365; font-size:.56rem; }
.workflow-stage { display:grid; min-height:clamp(82px,11vh,108px); grid-template-columns:42px 1fr auto; align-items:center; gap:16px; padding:16px 18px; border:1px solid rgba(91,82,153,.1); border-radius:18px; background:rgba(250,250,254,.9); }
.workflow-stage > i { display:grid; width:36px; height:36px; place-items:center; border-radius:12px; background:#eeecff; color:#635be5; font-size:.7rem; font-style:normal; font-weight:800; }
.workflow-stage.is-done > i { background:#6c63ff; color:white; }
.workflow-stage > div:not(.harmony-dots):not(.file-pills) { display:grid; gap:5px; }
.workflow-stage small { color:#999cad; font-size:.5rem; font-weight:800; letter-spacing:.11em; }
.workflow-stage strong { font:700 clamp(.88rem,1.2vw,1.06rem)/1.15 "Outfit",sans-serif; }
.workflow-connector { width:2px; height:14px; margin-left:35px; background:linear-gradient(#bcb7ff,#dedcf6); }
.input-swatch { width:42px; height:42px; border:7px solid white; border-radius:13px; background:#6c63ff; box-shadow:0 0 0 1px rgba(91,82,153,.1); }
.harmony-dots { display:flex; gap:6px; }
.harmony-dots span { width:20px; height:20px; border:4px solid white; border-radius:50%; background:#6c63ff; box-shadow:0 0 0 1px rgba(91,82,153,.08); }
.harmony-dots span:nth-child(2){background:#9d63ff}.harmony-dots span:nth-child(3){background:#d49fe5}.harmony-dots span:nth-child(4){background:#635fd5}
.score-pill { padding:9px 12px; border-radius:10px; background:#e3f7f0; color:#168365; font-size:.7rem; font-weight:800; }
.file-pills { display:flex; gap:6px; }
.file-pills span { padding:8px 10px; border-radius:9px; background:#eeecff; color:#5c54d6; font-size:.58rem; font-weight:800; }

/* Screen 3: applications, not decorative tags */
.use-cases-section .use-case-tags { display:flex; flex-wrap:wrap; gap:7px; margin-top:32px; padding:0; border:0; background:transparent; box-shadow:none; }
.use-cases-section .use-case-tags span { min-height:0; padding:9px 12px; border-radius:999px; background:rgba(255,255,255,.72); font:700 .68rem/1 "Inter",sans-serif; }
.applications-visual { min-height:clamp(500px,66vh,660px); border:0; background:transparent; box-shadow:none; backdrop-filter:none; }
.app-preview { position:absolute; overflow:hidden; border:1px solid rgba(255,255,255,.9); background:white; box-shadow:0 28px 70px rgba(42,36,85,.16); }
.app-preview-main { top:4%; left:0; width:82%; height:72%; border-radius:28px; }
.app-nav { display:flex; height:56px; align-items:center; gap:16px; padding:0 22px; border-bottom:1px solid rgba(91,82,153,.08); }
.app-logo { width:24px; height:24px; border-radius:8px; background:linear-gradient(135deg,#6c63ff,#d49fe5); }
.app-nav i { width:42px; height:4px; border-radius:4px; background:#deddea; }
.app-nav b { margin-left:auto; padding:9px 13px; border-radius:999px; background:#171148; color:white; font-size:.55rem; }
.app-hero { display:flex; height:56%; flex-direction:column; justify-content:center; padding:clamp(24px,4vw,52px); background:linear-gradient(135deg,#21195e,#5147ca 62%,#8a7cff); color:white; }
.app-hero small { color:#d2ccff; font-size:.52rem; font-weight:800; letter-spacing:.12em; }
.app-hero strong { max-width:430px; margin-top:14px; font:700 clamp(1.45rem,2.6vw,2.8rem)/1 "Outfit",sans-serif; letter-spacing:-.04em; }
.app-hero span { width:58px; height:5px; margin-top:22px; border-radius:5px; background:#d49fe5; }
.app-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; padding:18px; }
.app-cards i { height:56px; border-radius:12px; background:#efedff; }.app-cards i:nth-child(2){background:#f7e9f8}.app-cards i:nth-child(3){background:#e7f7f4}
.app-preview-mobile { right:1%; bottom:1%; width:31%; height:58%; padding:20px; border-radius:30px; background:linear-gradient(165deg,#f7f2ff,#fff 52%); }
.mobile-status { width:34%; height:5px; margin:0 auto 32px; border-radius:5px; background:#171148; opacity:.14; }
.mobile-chip { display:inline-flex; padding:7px 9px; border-radius:999px; background:#e9e6ff; color:#5e56d5; font-size:.5rem; font-weight:800; }
.app-preview-mobile strong { display:block; margin-top:14px; color:#21195e; font:700 clamp(1.1rem,1.7vw,1.65rem)/1.05 "Outfit",sans-serif; }
.mobile-product { height:38%; margin:20px 0; border-radius:50% 50% 22px 22px; background:linear-gradient(145deg,#6c63ff,#d49fe5); box-shadow:inset -20px -20px 45px rgba(23,17,72,.18); }
.app-preview-mobile button { width:100%; min-height:36px; border:0; border-radius:999px; background:#171148; color:white; font-size:.58rem; font-weight:800; }
.token-panel { position:absolute; left:8%; bottom:0; display:grid; width:43%; gap:12px; padding:20px; border:1px solid rgba(255,255,255,.9); border-radius:20px; background:rgba(255,255,255,.9); box-shadow:0 22px 55px rgba(42,36,85,.14); backdrop-filter:blur(16px); }
.token-panel > small { color:#9699ac; font-size:.5rem; font-weight:800; letter-spacing:.11em; }
.token-panel > span { display:grid; grid-template-columns:18px 1fr auto; align-items:center; gap:8px; color:#53576c; font-size:.56rem; }
.token-panel i { width:17px; height:17px; border-radius:5px; background:var(--token); }.token-panel b{font-size:.52rem;color:#898c9e}

/* Screen 4: answers paired with a real contrast result */
.faq-copy { display:flex; flex-direction:column; gap:clamp(38px,6vh,70px); }
.contrast-visual { overflow:hidden; border:1px solid rgba(91,82,153,.1); border-radius:24px; background:white; box-shadow:0 24px 55px rgba(42,36,85,.1); }
.contrast-sample { padding:clamp(24px,3vw,38px); background:#171148; color:white; }
.contrast-sample small { color:#bcb7ff; font-size:.56rem; font-weight:800; letter-spacing:.09em; }
.contrast-sample strong { display:block; max-width:380px; margin-top:15px; font:700 clamp(1.2rem,2vw,1.8rem)/1.12 "Outfit",sans-serif; }
.contrast-result { display:grid; grid-template-columns:1fr auto; align-items:center; gap:5px 20px; padding:18px 22px; }
.contrast-result span { display:flex; align-items:center; gap:8px; color:#238269; font-size:.62rem; font-weight:800; }.contrast-result span i{width:8px;height:8px;border-radius:50%;background:#20b486}
.contrast-result strong { grid-row:1/3; grid-column:2; color:#171148; font:700 1.35rem/1 "Outfit",sans-serif; }.contrast-result small{color:#9296a9;font-size:.55rem}
.faq-section > .faq-list { display:grid; gap:10px; margin:0; }
.faq-section > .faq-list details { background:rgba(255,255,255,.78); }
.faq-section > .faq-list details[open] { border-color:rgba(108,99,255,.25); box-shadow:0 18px 38px rgba(42,36,85,.08); }

/* Final screen: CTA plus export-ready system */
.content-cta { grid-template-columns:minmax(360px,.85fr) minmax(500px,1.15fr); background:linear-gradient(135deg,#171148 0%,#352c9b 48%,#6c63ff 100%); }
.cta-copy { position:relative; z-index:2; max-width:650px; }
.content-cta .primary-action { margin-top:32px; }
.cta-system { width:min(100%,620px); justify-self:end; overflow:hidden; border:1px solid rgba(255,255,255,.2); border-radius:28px; background:rgba(255,255,255,.94); box-shadow:0 36px 80px rgba(17,11,70,.3); color:#171148; }
.cta-system-head { display:grid; grid-template-columns:18px 1fr auto; align-items:center; gap:10px; padding:20px 22px; border-bottom:1px solid rgba(91,82,153,.09); }.cta-system-head span{width:14px;height:14px;border-radius:5px;background:#6c63ff}.cta-system-head b{font-size:.76rem}.cta-system-head small{color:#21866c;font-size:.55rem;font-weight:800}
.cta-swatches { display:grid; height:180px; grid-template-columns:repeat(5,1fr); gap:7px; padding:22px; }.cta-swatches i{border-radius:14px;background:#f1f0ff}.cta-swatches i:nth-child(2){background:#d8d5ff}.cta-swatches i:nth-child(3){background:#6c63ff}.cta-swatches i:nth-child(4){background:#4035c7}.cta-swatches i:nth-child(5){background:#171148}
.cta-code { display:grid; grid-template-columns:1fr auto; gap:10px 20px; margin:0 22px 22px; padding:18px; border-radius:16px; background:#f7f7fc; font-family:monospace; font-size:.65rem; }.cta-code span{color:#72768b}.cta-code b{color:#373b50}

@media (max-width: 1100px) {
  .content-section,
  .content-section:nth-of-type(even),
  .content-cta { grid-template-columns:1fr; align-content:center; gap:42px; }
  .content-section:nth-of-type(even) .section-copy,
  .content-section:nth-of-type(even) .section-visual,
  .content-section:nth-of-type(even) > .faq-list { order:initial; }
  .section-heading { max-width:780px; }
  .system-visual,.workflow-visual,.applications-visual,.faq-section>.faq-list { width:min(100%,760px); justify-self:center; }
  .applications-visual { min-height:580px; }
  .content-cta { justify-items:center; text-align:left; }.cta-system{justify-self:center}
}
@media (max-width: 700px) {
  .content-section,.content-cta { min-height:100dvh; padding:64px 20px; }
  .section-heading h2 { font-size:clamp(2.3rem,11vw,3.35rem); }
  .content-intro .feature-grid article:nth-child(n) { grid-template-columns:34px 1fr; }
  .content-intro .feature-grid p,.workflow-section .workflow-list p { display:none; }
  .visual-scale { height:260px; grid-template-columns:repeat(3,1fr); }
  .visual-role-grid { grid-template-columns:repeat(2,1fr); }
  .workflow-section .workflow-list { grid-template-columns:1fr 1fr; }
  .workflow-stage { grid-template-columns:36px 1fr; }.workflow-stage>*:last-child{grid-column:2}
  .applications-visual { min-height:520px; }.app-preview-main{width:94%;height:66%}.app-preview-mobile{width:42%;height:55%}.token-panel{left:2%;width:58%;padding:14px}
  .content-cta { grid-template-columns:1fr; }.cta-swatches{height:140px;padding:16px}.cta-code{margin:0 16px 16px}
}

/* Header controls: fixed intrinsic sizing and no overlap */
.landing-header-actions { flex: 0 0 auto; gap: 12px; }
.language-select { position: relative; display: block; flex: 0 0 auto; }
.language-select::after { position: absolute; top: 50%; right: 15px; width: 7px; height: 7px; border-right: 1.5px solid #72768a; border-bottom: 1.5px solid #72768a; content: ""; pointer-events: none; transform: translateY(-70%) rotate(45deg); }
.language-select select { display: block; width: 120px; min-width: 120px; padding: 0 36px 0 17px; appearance: none; white-space: nowrap; }
.landing-header-actions .header-action { min-width: 152px; flex: 0 0 auto; padding-inline: 20px; white-space: nowrap; }
@media (max-width: 720px) {
  .landing-header-actions { gap: 8px; }
  .language-select select { width: 104px; min-width: 104px; padding: 0 28px 0 13px; }
  .language-select::after { right: 12px; }
  .landing-header-actions .header-action { min-width: 138px; padding-inline: 15px; }
}
@media (max-width: 620px) {
  .brand strong { display: none; }
}


/* Reactive palette trial hero */
:root {
  --atmosphere-1: #f4f0ff;
  --atmosphere-2: #c7c1ff;
  --atmosphere-3: #a69cff;
  --atmosphere-4: #dda8e9;
}

.landing-shell {
  background:
    linear-gradient(118deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.66) 34%, rgba(255,255,255,.3) 68%, rgba(255,255,255,.56) 100%),
    radial-gradient(circle at 12% 36%, var(--atmosphere-1) 0 17%, transparent 43%),
    radial-gradient(circle at 75% 28%, var(--atmosphere-2) 0 12%, transparent 39%),
    radial-gradient(circle at 91% 80%, var(--atmosphere-3) 0 8%, transparent 34%),
    linear-gradient(135deg, var(--atmosphere-1), var(--atmosphere-4));
  transition: background 700ms cubic-bezier(.2,.8,.2,1);
}

.landing-shell::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 34% 58%, color-mix(in srgb, var(--accent), transparent 72%), transparent 0);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.landing-shell.is-palette-changing::after { animation: palette-wave 720ms ease-out; }

.palette-atmosphere {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.palette-atmosphere::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 74px 74px;
  content: "";
  mask-image: radial-gradient(circle at 76% 44%, black, transparent 58%);
  opacity: .52;
}

.atmosphere-orb,
.atmosphere-line {
  position: absolute;
  display: block;
  transition: border-color 700ms ease, background 700ms ease, box-shadow 700ms ease;
}

.atmosphere-orb {
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(255,255,255,.08);
}

.atmosphere-orb-one {
  top: -30%;
  right: -5%;
  width: min(66vw, 1050px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 38% 60%, color-mix(in srgb, var(--atmosphere-2), transparent 8%), color-mix(in srgb, var(--atmosphere-3), transparent 52%) 55%, transparent 72%);
}

.atmosphere-orb-two {
  bottom: -72%;
  left: -12%;
  width: min(66vw, 960px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 60% 30%, color-mix(in srgb, var(--atmosphere-4), transparent 28%), transparent 66%);
}

.atmosphere-orb-three {
  top: 18%;
  left: 35%;
  width: min(45vw, 680px);
  aspect-ratio: 1;
  background: rgba(255,255,255,.08);
}

.atmosphere-line {
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 50%;
}

.atmosphere-line-one { top: -38vw; left: 22%; }
.atmosphere-line-two { right: -28vw; bottom: -48vw; }

.aurora { opacity: .3; }

.hero-copy { max-width: 650px; }

.color-starter {
  position: relative;
  display: grid;
  width: min(100%, 590px);
  grid-template-columns: 1fr auto;
  gap: 14px 18px;
  margin-top: clamp(22px, 3.2vh, 34px);
  padding: 16px 17px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 22px;
  background: rgba(255,255,255,.58);
  box-shadow: 0 18px 45px color-mix(in srgb, var(--accent), transparent 86%), inset 0 0 0 1px rgba(97,88,160,.06);
  backdrop-filter: blur(18px) saturate(1.15);
}

.color-starter::after {
  position: absolute;
  right: -30px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent), transparent 76%), transparent 68%);
  content: "";
  pointer-events: none;
}

.color-starter-copy { min-width: 0; }

.color-starter-kicker {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #34364d;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.color-starter-kicker i { color: var(--accent); font-size: .86rem; font-style: normal; }

.color-starter-copy p {
  max-width: 390px;
  margin: 6px 0 0;
  color: #777b8f;
  font-size: .62rem;
  line-height: 1.45;
}

.color-options {
  display: flex;
  grid-column: 1 / -1;
  gap: 7px;
}

.color-dot {
  position: relative;
  display: grid;
  width: auto;
  height: 42px;
  min-width: 92px;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid rgba(75,69,117,.1);
  border-radius: 13px;
  background: rgba(255,255,255,.66);
  box-shadow: none;
  color: #5d6175;
  cursor: pointer;
  font: 700 .58rem/1 "Inter", sans-serif;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.color-dot > i {
  width: 22px;
  height: 22px;
  grid-row: 1 / 3;
  border: 4px solid white;
  border-radius: 50%;
  background: #6c63ff;
  box-shadow: 0 0 0 1px rgba(54,49,91,.12), 0 5px 11px rgba(31,28,61,.12);
}

.color-dot[data-color="coral"] > i { background: #f06472; }
.color-dot[data-color="teal"] > i { background: #13a88a; }
.color-dot[data-color="amber"] > i { background: #e7a21a; }

.color-dot > b {
  display: none;
  color: var(--accent);
  font-size: .42rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

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

.color-dot:hover,
.color-dot.is-active {
  border-color: color-mix(in srgb, var(--accent), transparent 56%);
  background: rgba(255,255,255,.9);
  box-shadow: 0 9px 20px color-mix(in srgb, var(--accent), transparent 87%);
  transform: translateY(-2px);
}

.color-dot.is-active > i {
  box-shadow: 0 0 0 2px white, 0 0 0 4px var(--accent), 0 8px 16px color-mix(in srgb, var(--accent), transparent 66%);
}

.color-dot.is-active > b { display: block; }

.palette-status {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 9px;
  min-width: 148px;
  padding: 9px 11px;
  border-radius: 13px;
  background: color-mix(in srgb, var(--accent-soft), white 64%);
}

.palette-status > i {
  position: relative;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent), transparent 84%);
}

.palette-status > i::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  content: "";
  animation: status-pulse 1.8s ease-out infinite;
}

.palette-status span { display: grid; gap: 3px; }
.palette-status small { color: #7a7d90; font-size: .43rem; font-weight: 600; }
.palette-status strong { color: var(--accent-deep); font-size: .54rem; }

.hero-actions { margin-top: 14px; }

.studio-card,
.feature-chip,
.primary-action,
.eyebrow,
.trust-icon {
  transition: border-color 500ms ease, background 500ms ease, box-shadow 500ms ease, color 500ms ease, transform 180ms ease;
}

.is-palette-changing .studio-card { animation: interface-color-shift 620ms ease-out; }
.is-palette-changing .atmosphere-orb-one { animation: atmosphere-bloom 760ms ease-out; }

@keyframes palette-wave {
  0% { background: radial-gradient(circle at 34% 58%, color-mix(in srgb, var(--accent), transparent 60%) 0, transparent 0); opacity: .9; }
  100% { background: radial-gradient(circle at 34% 58%, color-mix(in srgb, var(--accent), transparent 84%) 0 38%, transparent 72%); opacity: 0; }
}

@keyframes atmosphere-bloom {
  0% { opacity: .55; transform: scale(.94); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes interface-color-shift {
  0% { box-shadow: 0 38px 80px rgba(45,38,91,.16), 0 0 0 0 color-mix(in srgb, var(--accent), transparent 36%); }
  45% { box-shadow: 0 38px 80px rgba(45,38,91,.16), 0 0 0 9px color-mix(in srgb, var(--accent), transparent 82%); }
  100% { box-shadow: 0 38px 80px rgba(45,38,91,.16), 0 0 0 0 transparent; }
}

@keyframes status-pulse {
  0% { opacity: .75; transform: scale(.7); }
  75%, 100% { opacity: 0; transform: scale(1.8); }
}

@media (max-width: 1250px) {
  .color-dot { min-width: 82px; }
  .color-starter { width: min(100%, 540px); }
}

@media (max-width: 1120px) {
  .color-starter-copy p { max-width: 320px; }
  .color-options { display: grid; grid-template-columns: repeat(4, 1fr); }
  .color-dot { min-width: 0; padding-inline: 8px; }
}

@media (max-width: 860px) {
  .palette-atmosphere::before { opacity: .3; }
  .atmosphere-orb-one { top: -5%; right: -46%; width: 120vw; }
  .atmosphere-orb-two { bottom: -30%; left: -55%; width: 120vw; }
  .hero-copy { max-width: 680px; }
  .color-starter { width: min(100%, 580px); margin-top: 17px; text-align: left; }
  .color-starter-copy p { max-width: 390px; }
  .hero-actions { margin-top: 12px; }
}

@media (max-width: 560px) {
  .color-starter {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
    padding: 12px;
    border-radius: 18px;
  }
  .color-starter-kicker { font-size: .56rem; }
  .color-starter-copy p { margin-top: 4px; font-size: .53rem; }
  .color-options { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .color-dot { height: 34px; grid-template-columns: 18px 1fr; border-radius: 11px; font-size: .52rem; }
  .color-dot > i { width: 18px; height: 18px; border-width: 3px; }
  .palette-status { display: none; }
  .hero-actions { margin-top: 10px; }
}

@media (max-height: 760px) and (min-width: 861px) {
  .color-starter { gap: 9px 14px; margin-top: 14px; padding: 11px 13px; }
  .color-starter-copy p { display: none; }
  .color-dot { height: 36px; }
  .hero-actions { margin-top: 10px; }
}


/* Compact reactive hero on short viewports */
@media (max-height: 820px) and (min-width: 861px) {
  .color-starter {
    gap: 8px 12px;
    margin-top: 13px;
    padding: 10px 12px;
    border-radius: 18px;
  }
  .color-starter-copy p { display: none; }
  .color-dot { height: 35px; }
  .palette-status { padding-block: 7px; }
  .hero-actions { margin-top: 9px; }
  .trust-row { margin-top: 14px; }
}

@media (max-height: 700px) and (max-width: 560px) {
  .hero { gap: 9px; padding-top: 1vh; }
  .eyebrow { margin-bottom: 9px; }
  .hero-description { margin-top: 10px; }
  .color-starter { margin-top: 10px; }
  .studio-card { transform: translateX(-50%) scale(.33); }
}


/* Palette selector refinement and header collision fix */
.color-options { padding: 4px; border: 1px solid rgba(75,69,117,.08); border-radius: 16px; background: rgba(247,247,252,.62); }
.color-options .color-dot,
.color-options .color-dot:nth-child(2),
.color-options .color-dot:nth-child(3),
.color-options .color-dot:nth-child(4) { height:44px; min-width:0; grid-template-columns:22px minmax(0,1fr); padding:0 11px; border:1px solid transparent; border-radius:12px; background:transparent; box-shadow:none; color:#626679; transform:none; }
.color-options .color-dot:hover { border-color:rgba(75,69,117,.1); background:rgba(255,255,255,.66); box-shadow:none; transform:none; }
.color-options .color-dot.is-active { border-color:color-mix(in srgb,var(--accent),transparent 52%); background:color-mix(in srgb,var(--accent-soft),white 78%); box-shadow:0 7px 18px color-mix(in srgb,var(--accent),transparent 88%); color:var(--accent-deep); transform:none; }
.color-options .color-dot > i { width:20px; height:20px; grid-row:auto; border-width:3px; box-shadow:0 0 0 1px rgba(54,49,91,.1),0 4px 9px rgba(31,28,61,.1); }
.color-options .color-dot.is-active > i { box-shadow:0 0 0 2px white,0 0 0 3px var(--accent); }
.color-options .color-dot > span { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.color-options .color-dot > b { position:absolute; top:6px; right:7px; display:none; width:6px; height:6px; overflow:hidden; border-radius:50%; background:var(--accent); color:transparent; font-size:0; }
.color-options .color-dot.is-active > b { display:block; }
.color-options .color-dot { transition:none; }
@media (min-width:3000px) and (min-height:1400px) { .landing-header .header-action { transform:none; } .landing-header-actions { gap:18px; transform:scale(1.28); transform-origin:center right; } }
@media (max-width:560px) { .color-options { padding:3px; border-radius:13px; } .color-options .color-dot,.color-options .color-dot:nth-child(2),.color-options .color-dot:nth-child(3),.color-options .color-dot:nth-child(4) { height:36px; grid-template-columns:18px minmax(0,1fr); padding-inline:8px; border-radius:10px; } .color-options .color-dot > i { width:17px; height:17px; } }


/* Unified system and workflow section */
.section-anchor { position:absolute; top:0; left:0; scroll-margin-top:24px; }

.unified-system-section {
  position: relative;
  grid-template-columns: minmax(340px,.72fr) minmax(650px,1.28fr);
  gap: clamp(46px,6vw,104px);
  align-items: center;
  background:
    radial-gradient(circle at 78% 28%,rgba(108,99,255,.08),transparent 25%),
    linear-gradient(125deg,rgba(255,255,255,.96),rgba(248,248,253,.82));
}

.unified-system-section .section-heading { max-width:650px; }
.unified-system-section .section-heading h2 { font-size:clamp(2.8rem,4.2vw,5.2rem); }

.unified-capabilities {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:9px;
  margin-top:clamp(28px,4vh,42px);
}

.unified-capabilities article {
  display:grid;
  min-width:0;
  grid-template-columns:34px 1fr;
  align-items:center;
  gap:11px;
  padding:13px 14px;
  border:1px solid rgba(91,82,153,.09);
  border-radius:15px;
  background:rgba(255,255,255,.64);
}

.unified-capabilities article > i {
  display:grid;
  width:32px;
  height:32px;
  place-items:center;
  border-radius:10px;
  background:color-mix(in srgb,var(--accent),white 90%);
  color:var(--accent);
  font-size:.56rem;
  font-style:normal;
  font-weight:800;
}

.unified-capabilities article > div { display:grid; min-width:0; gap:3px; }
.unified-capabilities strong { color:#303449; font-size:.72rem; }
.unified-capabilities span { overflow:hidden; color:#8b8fa2; font-size:.55rem; text-overflow:ellipsis; white-space:nowrap; }

.unified-system-visual {
  display:grid;
  align-content:center;
  padding:clamp(24px,2.7vw,38px);
}

.unified-toolbar {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:18px;
  border-bottom:1px solid rgba(91,82,153,.09);
  color:#7c8093;
  font-size:.6rem;
}

.unified-toolbar > span { display:flex; align-items:center; gap:8px; }
.unified-toolbar > span i { width:8px; height:8px; border-radius:50%; background:var(--accent); box-shadow:0 0 0 5px color-mix(in srgb,var(--accent),transparent 88%); }
.unified-toolbar > b { padding:7px 10px; border-radius:999px; background:#e3f7f0; color:#168365; font-size:.52rem; }

.unified-system-head { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-top:22px; }
.unified-system-head > div { display:grid; gap:6px; }
.unified-system-head small { color:#989bae; font-size:.52rem; font-weight:800; letter-spacing:.1em; }
.unified-system-head strong { color:#171a34; font:700 clamp(1.55rem,2vw,2.2rem)/1 "Outfit",sans-serif; letter-spacing:-.045em; }
.unified-harmony { justify-items:end; }
.unified-harmony > span { display:flex; gap:5px; }
.unified-harmony i { width:21px; height:21px; border:4px solid white; border-radius:50%; background:#6c63ff; box-shadow:0 0 0 1px rgba(91,82,153,.1); }
.unified-harmony i:nth-child(2){background:#9d63ff}.unified-harmony i:nth-child(3){background:#d49fe5}.unified-harmony i:nth-child(4){background:#635fd5}

.unified-scale { height:clamp(116px,15vh,152px); margin-top:20px; }
.unified-scale .is-selected { transform:translateY(-4px); }

.unified-roles { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:8px; margin-top:18px; }
.unified-roles > span {
  display:grid;
  min-width:0;
  grid-template-columns:25px 1fr;
  align-items:center;
  gap:2px 8px;
  padding:10px;
  border:1px solid rgba(91,82,153,.08);
  border-radius:13px;
  background:#fafafe;
}
.unified-roles i { width:24px; height:24px; grid-row:1/3; border-radius:8px; background:var(--role); }
.unified-roles small { color:#999caf; font-size:.45rem; }
.unified-roles b { overflow:hidden; color:#505469; font-size:.55rem; text-overflow:ellipsis; }

.unified-flow {
  display:grid;
  grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;
  align-items:center;
  gap:7px;
  margin-top:14px;
  padding:12px;
  border:1px solid rgba(91,82,153,.09);
  border-radius:16px;
  background:rgba(247,247,252,.78);
}
.unified-flow > div { display:grid; min-width:0; grid-template-columns:26px 1fr; align-items:center; gap:8px; }
.unified-flow > div > i { display:grid; width:26px; height:26px; place-items:center; border-radius:8px; background:var(--accent); color:white; font-size:.52rem; font-style:normal; font-weight:800; }
.unified-flow > div > span { display:grid; min-width:0; gap:3px; }
.unified-flow small { color:#999caf; font-size:.4rem; font-weight:800; letter-spacing:.07em; }
.unified-flow strong { overflow:hidden; color:#45495e; font-size:.53rem; text-overflow:ellipsis; white-space:nowrap; }
.unified-flow > b { color:color-mix(in srgb,var(--accent),transparent 35%); font-size:.7rem; font-weight:500; }

.unified-export-row { display:flex; align-items:center; justify-content:space-between; gap:14px; margin-top:12px; padding:10px 12px; border-radius:13px; background:color-mix(in srgb,var(--accent-soft),white 78%); color:#686c80; font-size:.53rem; }
.unified-export-row > span { display:flex; align-items:center; gap:8px; }
.unified-export-row > span i { width:7px; height:7px; border-radius:50%; background:#20b486; box-shadow:0 0 0 4px rgba(32,180,134,.1); }
.unified-export-row > div { display:flex; gap:5px; }
.unified-export-row b { padding:6px 8px; border-radius:7px; background:white; color:var(--accent); font-size:.46rem; }

.site-footer { margin-top:clamp(28px,4vw,54px); }

@media (max-width:1100px) {
  .unified-system-section { grid-template-columns:1fr; gap:42px; }
  .unified-system-section .section-heading { max-width:780px; }
  .unified-system-visual { width:min(100%,820px); justify-self:center; }
}

@media (max-width:700px) {
  .unified-system-section { padding:64px 20px; }
  .unified-capabilities { grid-template-columns:1fr; }
  .unified-capabilities span { white-space:normal; }
  .unified-system-visual { padding:16px; border-radius:22px; }
  .unified-system-head { align-items:flex-start; flex-direction:column; gap:14px; }
  .unified-harmony { justify-items:start; }
  .unified-scale { height:236px; grid-template-columns:repeat(3,1fr); }
  .unified-roles { grid-template-columns:repeat(2,1fr); }
  .unified-flow { grid-template-columns:repeat(2,1fr); }
  .unified-flow > b { display:none; }
  .unified-export-row { align-items:flex-start; flex-direction:column; }
}


/* Continuous landing canvas */
.seo-content {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin-top: clamp(18px, 2vw, 32px);
  overflow: clip;
  background:
    radial-gradient(circle at 88% 9%, rgba(108,99,255,.1), transparent 22%),
    radial-gradient(circle at 7% 43%, rgba(212,159,229,.09), transparent 24%),
    radial-gradient(circle at 91% 72%, rgba(19,168,138,.075), transparent 23%),
    linear-gradient(180deg, #fafafe 0%, #f7f7fc 42%, #fbfafc 72%, #f6f8fb 100%);
}

.seo-content::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  display: block;
  background-image: radial-gradient(rgba(92,83,158,.11) .7px, transparent .7px);
  background-size: 24px 24px;
  content: "";
  opacity: .18;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 0 18%, transparent 35% 48%, black 62%, transparent 88%);
}

.content-section,
.content-section:nth-of-type(even),
.unified-system-section {
  width: 100%;
  min-height: min(920px, 100dvh);
  margin: 0;
  padding-block: clamp(92px, 10vw, 160px);
  padding-inline: max(clamp(24px, 6vw, 96px), calc((100vw - 1760px) / 2));
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.content-section::before {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.unified-system-section::before {
  top: 7%;
  right: -12%;
  width: min(58vw, 980px);
  height: min(58vw, 980px);
  border: 1px solid rgba(108,99,255,.1);
  border-radius: 50%;
  background: radial-gradient(circle at 42% 42%, rgba(108,99,255,.105), rgba(212,159,229,.045) 42%, transparent 69%);
}

.use-cases-section::before {
  top: 8%;
  left: -18%;
  width: min(62vw, 1040px);
  height: min(62vw, 1040px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,159,229,.105), rgba(108,99,255,.035) 47%, transparent 70%);
}

.faq-section::before {
  right: -10%;
  bottom: -16%;
  width: min(52vw, 850px);
  height: min(52vw, 850px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19,168,138,.085), transparent 68%);
}

.content-section:not(:last-of-type)::after {
  position: absolute;
  right: max(clamp(24px,6vw,96px), calc((100vw - 1760px) / 2));
  bottom: 0;
  left: max(clamp(24px,6vw,96px), calc((100vw - 1760px) / 2));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,82,153,.13) 18% 82%, transparent);
  content: "";
}

.content-section:nth-of-type(even) .section-copy,
.content-section:nth-of-type(even) .section-visual,
.content-section:nth-of-type(even) > .faq-list {
  order: initial;
}

.use-cases-section {
  grid-template-columns: minmax(360px,.9fr) minmax(520px,1.1fr);
}

.faq-section {
  padding-bottom: clamp(110px, 12vw, 184px);
}

.section-kicker {
  background: rgba(255,255,255,.46);
  box-shadow: 0 10px 28px rgba(50,43,93,.035);
  backdrop-filter: blur(10px);
}

.unified-system-visual {
  background: rgba(255,255,255,.72);
  box-shadow: 0 30px 80px rgba(42,36,85,.11), inset 0 0 0 1px rgba(255,255,255,.86);
}

.applications-visual {
  filter: drop-shadow(0 34px 54px rgba(42,36,85,.065));
}

.faq-section > .faq-list details {
  background: rgba(255,255,255,.54);
  backdrop-filter: blur(12px);
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 28px max(clamp(24px,6vw,96px), calc((100vw - 1760px) / 2)) 34px;
  border-top: 1px solid rgba(91,82,153,.09);
  background: rgba(247,248,252,.6);
}

@media (max-width: 1100px) {
  .content-section,
  .content-section:nth-of-type(even),
  .unified-system-section {
    min-height: auto;
    padding-block: clamp(82px, 11vw, 124px);
  }
  .use-cases-section { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .seo-content { margin-top: 10px; }
  .content-section,
  .content-section:nth-of-type(even),
  .unified-system-section {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 76px 20px;
    border-radius: 0;
  }
  .content-section:not(:last-of-type)::after { right: 20px; left: 20px; }
  .unified-system-section::before { top: 18%; right: -72%; width: 150vw; height: 150vw; }
  .use-cases-section::before { top: 10%; left: -88%; width: 165vw; height: 165vw; }
  .faq-section::before { right: -85%; bottom: -5%; width: 160vw; height: 160vw; }
  .site-footer { padding-inline: 20px; }
}




/* Editorial word highlights */
h1 .hero-title-line:first-child { white-space: nowrap; }

.editorial-title .editorial-highlight {
  display: inline;
  margin-inline: .025em;
  background: linear-gradient(105deg, color-mix(in srgb,var(--accent),#168f82 28%), #8d68e9 58%, #da79a7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -.065em;
}

h1 .editorial-highlight {
  font-size: 1.02em;
  line-height: .8;
}

.section-heading h2 .editorial-highlight {
  font-size: 1.035em;
  line-height: .9;
}

@media (max-width:560px) {
  h1 .hero-title-line:first-child { white-space: normal; }
  .editorial-title .editorial-highlight { margin-inline:.015em; }
}

/* Khromafy social links */
.social-links {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(83, 75, 144, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #424660;
  box-shadow: 0 10px 24px rgba(32, 28, 72, 0.045);
  transition: color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.social-links a:hover {
  background: color-mix(in srgb, var(--accent), white 88%);
  color: var(--accent-deep);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--accent), transparent 84%);
  transform: translateY(-2px);
}

.social-links a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent), transparent 58%);
  outline-offset: 3px;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-links svg path:first-child {
  fill: currentColor;
  stroke: none;
}

.header-social-links {
  margin-right: 2px;
}

.footer-social-links {
  margin-left: auto;
}

.site-footer {
  align-items: center;
}

@media (max-width: 860px) {
  .header-social-links {
    display: none;
  }
}

@media (max-width: 620px) {
  .footer-social-links {
    margin-left: 0;
  }
}
/* Landing footer social visibility and overlap fix */
.landing-footer {
  min-width: 0;
  justify-content: flex-start;
}

.landing-footer > span,
.landing-footer > strong {
  min-width: 0;
  white-space: nowrap;
}

.landing-footer .footer-features {
  flex: 0 0 auto;
  margin-left: 10px;
}

@media (max-width: 1180px) {
  .landing-footer .footer-features {
    display: none;
  }
}

@media (max-width: 980px) {
  .landing-footer > i {
    width: 16px;
  }

  .landing-footer > span,
  .landing-footer > strong {
    font-size: 0.72rem;
  }
}
/* Keep the first viewport footer clear: phrase left, social links right. */
.landing-footer > i,
.landing-footer .footer-features {
  display: none;
}

.landing-footer {
  gap: 4px;
}

.landing-footer > span,
.landing-footer > strong {
  flex: 0 0 auto;
}

@media (max-width: 560px) {
  .landing-footer > span,
  .landing-footer > strong {
    white-space: normal;
  }
}