@import url("https://fonts.googleapis.com/css2?\
family=Manrope:wght@400;500;600;700;800&\
family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,600,1,0&\
family=Unbounded:wght@500;600;700&display=swap");
:root {
  --ink: #080716;
  --paper: #f7f6fb;
  --violet: #7c5cff;
  --blue: #417cff;
  --pink: #df57ed;
  --coral: #ff7664;
  --line: rgba(16, 12, 42, 0.12);
  font-family: Manrope, system-ui, sans-serif;
  color: var(--ink);
  background: var(--ink);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  overflow-x: hidden;
}
body:after {
  content: "";
  position: fixed;
  z-index: 100;
  left: var(--mx);
  top: var(--my);
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(126, 90, 255, 0.08),
    transparent 65%
  );
  pointer-events: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: Unbounded, sans-serif;
  letter-spacing: -0.055em;
  line-height: 1.02;
}
h1 {
  font-size: clamp(52px, 5.35vw, 86px);
  margin: 22px 0 30px;
}
h2 {
  font-size: clamp(38px, 4.2vw, 66px);
  margin: 18px 0 24px;
}
h3 {
  font-size: 20px;
  line-height: 1.25;
}
.site-header {
  height: 76px;
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 40px));
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 0 14px 0 20px;
  color: white;
  background: rgba(8, 7, 22, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  backdrop-filter: blur(22px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 600 19px Unbounded;
}
.brand i {
  font-style: normal;
  color: #a778ff;
  text-shadow: 0 0 22px #7a61ff;
}
.site-header nav {
  display: flex;
  gap: 28px;
  margin-right: auto;
  font-size: 13px;
  color: #c8c3d9;
}
.site-header nav a:hover {
  color: white;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 48px;
  padding: 0 9px 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.button b {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
}
.primary {
  color: white;
  background: linear-gradient(110deg, #3b7fff, #7956ff 52%, #df52ec);
  box-shadow: 0 12px 38px rgba(91, 71, 255, 0.28);
}
.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(91, 71, 255, 0.4);
}
.menu {
  display: none;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 11px;
  color: #9985ff;
}
.hero {
  min-height: 900px;
  padding: 155px max(28px, calc((100vw - 1240px) / 2)) 90px;
  color: white;
  background: #080716;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 64px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      circle at 82% 25%,
      rgba(99, 71, 255, 0.42),
      transparent 30%
    ),
    radial-gradient(
      circle at 18% 90%,
      rgba(222, 76, 226, 0.14),
      transparent 27%
    ),
    linear-gradient(150deg, #080716, #0c0b24 55%, #10091f);
}
.hero-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent);
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-copy p {
  font-size: 19px;
  line-height: 1.65;
  color: #c6c0d6;
  max-width: 610px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}
.text-link {
  font-size: 14px;
  font-weight: 800;
  color: white;
}
.text-link b {
  margin-left: 8px;
}
.proof {
  display: flex;
  gap: 24px;
  margin-top: 56px;
}
.proof span {
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #918ba4;
}
.proof span:last-child {
  border: 0;
}
.proof b {
  display: block;
  font: 600 25px Unbounded;
  color: white;
  margin-bottom: 4px;
}
.hero-visual {
  height: 620px;
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 60px 160px rgba(0, 0, 0, 0.55);
  transform: perspective(1300px) rotateY(-4deg) rotateX(2deg);
}
.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 80px rgba(39, 46, 130, 0.25);
}
.hero-prompt {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 30px;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px 10px 18px;
  border-radius: 20px;
  color: #262038;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.3);
}
.hero-prompt i {
  font-style: normal;
  color: #7755ff;
}
.hero-prompt span {
  margin-right: auto;
  font-size: 14px;
  font-weight: 700;
}
.hero-prompt b {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #111023;
  color: white;
}
.marquee {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  font: 600 clamp(15px, 1.7vw, 24px) Unbounded;
  color: #252037;
}
.marquee i {
  font-style: normal;
  color: #8c65ff;
}
.section {
  padding: 130px max(28px, calc((100vw - 1240px) / 2));
}
.section-head {
  max-width: 850px;
  margin-bottom: 56px;
}
.section-head > p,
.section p {
  font-size: 17px;
  line-height: 1.7;
  color: #665f76;
  max-width: 760px;
}
.bento {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1.1fr;
  grid-template-rows: 520px;
  gap: 16px;
}
.ability {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(25, 14, 60, 0.07);
  transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ability:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(38, 18, 90, 0.14);
}
.ability .number {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 17px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(8, 7, 22, 0.75);
  color: white;
  font: 500 10px Unbounded;
  backdrop-filter: blur(8px);
}
.ability-art {
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #ddd;
}
.ability-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.ability:hover img {
  transform: scale(1.06);
}
.ability:nth-child(2) .ability-art,
.ability:nth-child(3) .ability-art {
  height: 210px;
}
.ability h3 {
  margin: 0 0 10px;
}
.ability p {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 18px;
}
.ability a {
  margin-top: auto;
  font-size: 13px;
  font-weight: 800;
}
.studio {
  background: #0a091a;
  color: white;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
  position: relative;
  overflow: hidden;
}
.studio:before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  right: -250px;
  bottom: -400px;
  background: #6d4cff;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.38;
}
.studio-copy {
  position: relative;
  z-index: 1;
}
.studio-copy p {
  color: #bdb8cb;
}
.studio blockquote {
  margin: 28px 0;
  padding: 22px;
  border-left: 2px solid #9172ff;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 18px 18px 0;
  color: #e4e0ed;
  line-height: 1.65;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.chips span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.app-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 64px 1fr;
  min-height: 570px;
  background: #f8f7fc;
  color: #161326;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.38);
}
.app-rail {
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #eeecf5;
  border-right: 1px solid #ded9e9;
}
.app-rail i:not(.gem) {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: #d7d1e4;
}
.gem {
  font-style: normal;
  color: #7352ff;
}
.app-main {
  padding: 0 24px 24px;
}
.app-bar {
  height: 62px;
  border-bottom: 1px solid #e6e1ee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
}
.app-bar div {
  display: flex;
  gap: 8px;
}
.app-bar i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e6e1ee;
}
.conversation {
  padding: 38px 24px 0;
}
.prompt {
  max-width: 78%;
  margin-left: auto;
  padding: 18px;
  background: white;
  border: 1px solid #e3deeb;
  border-radius: 20px 20px 5px 20px;
  box-shadow: 0 12px 30px rgba(30, 18, 55, 0.06);
}
.prompt span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #7c5cff;
  font-weight: 800;
}
.prompt p {
  font-size: 14px;
  line-height: 1.5;
  margin: 8px 0 12px;
}
.prompt em {
  font-style: normal;
  display: inline-block;
  font-size: 10px;
  padding: 6px 9px;
  margin-right: 5px;
  border-radius: 7px;
  background: #f0edfa;
}
.answer {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}
.answer > .gem {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #527cff, #bd58e9);
  color: white;
}
.answer strong {
  font-size: 17px;
}
.answer p {
  font-size: 13px;
  line-height: 1.55;
}
.answer-lines {
  display: grid;
  gap: 8px;
}
.answer-lines i {
  height: 8px;
  background: #dfd9ea;
  border-radius: 8px;
  width: 85%;
}
.answer-lines i:nth-child(2) {
  width: 100%;
}
.answer-lines i:nth-child(3) {
  width: 60%;
}
.composer {
  margin-top: 38px;
  padding: 16px 12px 16px 18px;
  border: 1px solid #ddd7e8;
  border-radius: 16px;
  color: #91899e;
  font-size: 13px;
}
.composer b {
  float: right;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: #151228;
  color: white;
  display: grid;
  place-items: center;
  margin-top: -6px;
}
.panorama {
  padding-top: 0;
  background: #f7f6fb;
}
.panorama-art {
  height: 680px;
  border-radius: 36px;
  overflow: hidden;
}
.panorama-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.panorama-copy {
  position: relative;
  width: min(770px, 90%);
  margin: -110px auto 0;
  padding: 52px 60px;
  text-align: center;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(24px);
  border: 1px solid white;
  border-radius: 30px;
  box-shadow: 0 22px 60px rgba(35, 22, 72, 0.12);
}
.panorama-copy h2 em {
  font-style: normal;
  color: #7755ff;
}
.panorama-copy p {
  margin: 0 auto;
}
.process {
  background: white;
}
.process-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.process-line article {
  display: flex;
  gap: 22px;
  padding: 34px 30px;
  border-right: 1px solid var(--line);
}
.process-line article:first-child {
  padding-left: 0;
}
.process-line article:last-child {
  border: 0;
}
.process-line > article > span {
  font: 500 44px Unbounded;
  color: #7655ff;
}
.process-line h3 {
  margin: 0 0 10px;
}
.process-line p {
  font-size: 14px;
  margin: 0;
}
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 850px;
}
.dark {
  background:
    radial-gradient(circle at 75% 40%, #28145b, transparent 30%), #090817;
  color: white;
}
.dark p {
  color: #bdb7cc;
}
.feature-stack {
  position: relative;
  height: 620px;
}
.feature-stack img {
  position: absolute;
  width: 70%;
  height: 78%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.42);
}
.feature-stack .back {
  left: 0;
  top: 0;
  transform: rotate(-7deg);
}
.feature-stack .front {
  right: 0;
  bottom: 0;
  transform: rotate(7deg);
}
.float-card {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 210px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  color: #171327;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.float-card i {
  font-style: normal;
  color: #7655ff;
}
.float-card strong,
.float-card span {
  display: block;
}
.float-card strong {
  margin-top: 24px;
}
.float-card span {
  font-size: 11px;
  margin-top: 5px;
  color: #6a6376;
}
.media-lab {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  background: #f7f6fb;
}
.media-screen {
  position: relative;
  border-radius: 32px;
  padding: 18px;
  background: #111020;
  box-shadow: 0 38px 90px rgba(25, 17, 57, 0.22);
}
.media-screen > img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
}
.timeline {
  display: grid;
  grid-template-columns: 1fr 1.3fr 0.7fr;
  gap: 5px;
  margin-top: 16px;
  position: relative;
}
.timeline div {
  height: 46px;
  border-radius: 6px;
  background: linear-gradient(90deg, #5541ad, #b14ed0);
}
.timeline span {
  position: absolute;
  left: 44%;
  top: -7px;
  width: 2px;
  height: 60px;
  background: #ff8d70;
}
.wave {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 88px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 8px 12px;
  background: rgba(8, 7, 22, 0.72);
  border-radius: 13px;
  backdrop-filter: blur(10px);
}
.wave i {
  flex: 1;
  height: var(--h);
  background: linear-gradient(#ff78b7, #7c6cff);
  border-radius: 4px;
}
.dark-link {
  color: #171327;
}
.ecosystem {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
  background: linear-gradient(135deg, #6a50ff, #a346ed 58%, #fc776a);
  color: white;
}
.ecosystem p {
  color: #eee8f5;
}
.orbit {
  height: 590px;
  position: relative;
}
.orbit:before,
.orbit:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  inset: 80px;
}
.orbit:after {
  inset: 25px;
}
.orbit-center,
.orbit-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: #19142c;
  box-shadow: 0 15px 50px rgba(38, 16, 96, 0.2);
}
.orbit-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font: 600 20px Unbounded;
}
.orbit-center i {
  font-style: normal;
  color: #7655ff;
}
.orbit-item i {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #ece8fb;
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 800;
  color: #7555e9;
}
.orbit-item span {
  font-size: 12px;
  font-weight: 800;
}
.o1 {
  left: 8%;
  top: 18%;
}
.o2 {
  right: 3%;
  top: 20%;
}
.o3 {
  left: 4%;
  bottom: 17%;
}
.o4 {
  right: 9%;
  bottom: 15%;
}
.trust {
  background: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-grid article {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #faf9fc;
}
.trust-grid article > span {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #ebe7fa;
  color: #7455e7;
  font-size: 21px;
}
.trust-grid h3 {
  margin-top: 38px;
}
.trust-grid p {
  font-size: 13px;
  margin-bottom: 0;
}
.formats {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
  background: #ece9f8;
}
.format-art {
  height: 600px;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
}
.format-art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.format-tags {
  position: absolute;
  inset: auto 20px 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.format-tags span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(8, 7, 22, 0.78);
  color: white;
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.format-copy .button {
  margin-top: 20px;
}
.faq {
  background: #f7f6fb;
}
.accordion {
  border-top: 1px solid var(--line);
}
.accordion details {
  border-bottom: 1px solid var(--line);
}
.accordion summary {
  min-height: 80px;
  display: grid;
  grid-template-columns: 60px 1fr 30px;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 18px;
}
.accordion summary span {
  font: 500 12px Unbounded;
  color: #7c5cff;
}
.accordion summary b {
  font-size: 24px;
  font-weight: 400;
}
.accordion details p {
  padding: 0 60px 30px 80px;
  margin: 0;
  font-size: 15px;
}
.final-cta {
  min-height: 650px;
  padding: 120px 24px;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #080716;
  color: white;
}
.final-cta > div:last-child {
  position: relative;
  z-index: 2;
  max-width: 920px;
}
.final-cta p {
  color: #c8c2d3;
  font-size: 18px;
  margin: 0 auto 32px;
}
.final-orb {
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: conic-gradient(
    from 20deg,
    #4282ff,
    #7d55ff,
    #e354e7,
    #ff7a62,
    #4282ff
  );
  filter: blur(90px);
  opacity: 0.42;
  animation: orb 12s linear infinite;
}
@keyframes orb {
  to {
    transform: rotate(360deg) scale(1.08);
  }
}
#site-footer {
  padding: 78px max(28px, calc((100vw - 1240px) / 2)) 28px;
  background: #080716;
  color: white;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
}
#site-footer p {
  font-size: 13px;
  color: #8f899e;
  margin-top: 18px;
}
#site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 24px;
}
#site-footer nav a {
  font-size: 13px;
  color: #c6c0d1;
}
#site-footer nav a:hover,
#site-footer nav a[aria-current] {
  color: #9d83ff;
}
.legal {
  grid-column: 1/-1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  color: #777184;
  font-size: 11px;
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1050px) {
  .site-header nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 145px;
  }
  .hero-copy {
    max-width: 800px;
  }
  .hero-visual {
    height: 580px;
  }
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .ability {
    min-height: 500px;
  }
  .studio,
  .feature,
  .media-lab,
  .ecosystem,
  .formats {
    grid-template-columns: 1fr;
  }
  .app-shell {
    min-height: 540px;
  }
  .process-line,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-line article:nth-child(2) {
    border-right: 0;
  }
  .orbit {
    max-width: 700px;
    width: 100%;
    margin: auto;
  }
}
@media (max-width: 640px) {
  body:after {
    display: none;
  }
  .site-header {
    top: 8px;
    height: 60px;
    width: calc(100% - 16px);
    border-radius: 18px;
    padding: 0 10px 0 15px;
  }
  .site-header > .button {
    display: none;
  }
  .brand {
    font-size: 16px;
  }
  .menu {
    display: block;
    margin-left: auto;
    border: 0;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }
  .hero {
    min-height: auto;
    padding: 118px 16px 60px;
    gap: 42px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-copy p {
    font-size: 16px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .proof {
    gap: 13px;
  }
  .proof span {
    padding-right: 13px;
  }
  .hero-visual {
    height: 470px;
    border-radius: 24px;
    transform: none;
  }
  .hero-visual > img {
    object-position: 62% center;
  }
  .hero-prompt {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 58px;
  }
  .hero-prompt span {
    font-size: 11px;
  }
  .marquee {
    justify-content: flex-start;
    padding-left: 18px;
    height: 70px;
    gap: 18px;
  }
  .section {
    padding: 84px 16px;
  }
  .section h2 {
    font-size: 36px;
  }
  .section-head {
    margin-bottom: 38px;
  }
  .bento {
    grid-template-columns: 1fr;
  }
  .ability {
    min-height: auto;
  }
  .ability-art,
  .ability:nth-child(2) .ability-art,
  .ability:nth-child(3) .ability-art {
    height: 260px;
  }
  .studio {
    gap: 42px;
  }
  .app-shell {
    grid-template-columns: 44px;
    min-height: 510px;
    border-radius: 24px;
  }
  .app-rail {
    gap: 14px;
  }
  .app-main {
    padding: 0 10px 14px;
  }
  .conversation {
    padding: 24px 5px 0;
  }
  .prompt {
    max-width: 92%;
  }
  .panorama {
    padding-top: 0;
  }
  .panorama-art {
    height: 430px;
    border-radius: 0;
    margin: 0 -16px;
  }
  .panorama-art img {
    object-position: 59% center;
  }
  .panorama-copy {
    width: 100%;
    margin: -40px auto 0;
    padding: 34px 20px;
  }
  .process-line,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .process-line article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
  }
  .feature {
    min-height: auto;
  }
  .feature-stack {
    height: 480px;
  }
  .media-screen > img {
    height: 320px;
  }
  .orbit {
    height: 470px;
  }
  .orbit:before {
    inset: 75px 30px;
  }
  .orbit:after {
    inset: 20px -20px;
  }
  .orbit-item {
    padding: 10px;
  }
  .orbit-item span {
    display: none;
  }
  .trust-grid article {
    padding: 26px;
  }
  .format-art {
    height: 430px;
  }
  .accordion summary {
    grid-template-columns: 40px 1fr 20px;
    font-size: 15px;
  }
  .accordion details p {
    padding: 0 20px 26px 60px;
  }
  .final-cta {
    min-height: 560px;
    padding: 90px 18px;
  }
  .final-cta h2 {
    font-size: 40px;
  }
  #site-footer {
    grid-template-columns: 1fr;
    padding: 58px 20px 26px;
    gap: 32px;
  }
  #site-footer nav {
    grid-template-columns: 1fr;
  }
  .legal {
    flex-direction: column;
    gap: 8px;
  }
}
.knowledge {
  background: #eeebf8;
}
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.knowledge-grid article {
  padding: 32px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid white;
}
.knowledge-grid article > span {
  font: 500 12px Unbounded;
  color: #7655ff;
}
.knowledge-grid h3 {
  margin: 36px 0 14px;
}
.knowledge-grid p {
  font-size: 14px;
  margin: 0;
}
.knowledge-note {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: 40px;
  margin-top: 18px;
  padding: 30px 34px;
  border-radius: 24px;
  background: #0b0a1c;
  color: white;
}
.knowledge-note strong {
  font: 500 17px Unbounded;
}
.knowledge-note p {
  color: #bbb5c7;
  margin: 0;
  font-size: 14px;
}
.long-guide {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  background: #fff;
}
.guide-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}
.guide-intro > p {
  font-size: 17px;
}
.guide-intro .chips span {
  color: #302944;
  background: #eeeaf7;
  border-color: #e2dced;
}
.guide-steps {
  border-top: 1px solid var(--line);
}
.guide-steps article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.guide-steps article > span {
  font: 500 12px Unbounded;
  color: #7655ff;
}
.guide-steps h3 {
  margin: 0 0 12px;
}
.guide-steps p {
  font-size: 14px;
  margin: 0;
}
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  background: #0a091a;
  color: white;
}
.editorial-copy p {
  color: #bcb6c8;
}
.editorial-list {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.editorial-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.editorial-list article > span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #7958ee;
  font-weight: 800;
}
.editorial-list h3 {
  margin: 0 0 8px;
}
.editorial-list p {
  font-size: 13px;
  color: #aaa4b8;
  margin: 0;
}
main,
section,
section > *,
#site-footer > * {
  min-width: 0;
}
h1,
h2,
h3,
p,
a,
span,
blockquote {
  overflow-wrap: anywhere;
}
.feature {
  overflow: hidden;
}
@media (max-width: 1050px) {
  .knowledge-grid {
    grid-template-columns: 1fr 1fr;
  }
  .knowledge-note,
  .long-guide,
  .editorial {
    grid-template-columns: 1fr;
  }
  .guide-intro {
    position: static;
  }
}
@media (max-width: 640px) {
  .knowledge-grid {
    grid-template-columns: 1fr;
  }
  .knowledge-note {
    grid-template-columns: 1fr;
    padding: 25px;
  }
  .guide-steps article {
    grid-template-columns: 42px 1fr;
  }
  .editorial {
    gap: 48px;
  }
}
.related {
  background: #fff;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.related-grid a {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  transition: 0.3s;
}
.related-grid a:hover {
  transform: translateY(-5px);
  border-color: #9a82ef;
  box-shadow: 0 20px 45px rgba(36, 20, 80, 0.1);
}
.related-grid a span {
  grid-column: 1/-1;
  font: 500 11px Unbounded;
  color: #7c5cff;
}
.related-grid a strong {
  font-size: 18px;
}
.related-grid a b {
  font-size: 20px;
}
@media (max-width: 640px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}
html,
body {
  max-width: 100%;
  overflow-x: clip;
}
.feature-stack {
  overflow: clip;
}
.audiences {
  background: #f7f6fb;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.audience-grid article {
  padding: 30px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
}
.audience-grid article > span {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #ece8fa;
  color: #7355e6;
  font-size: 20px;
}
.audience-grid h3 {
  margin: 38px 0 12px;
}
.audience-grid p {
  font-size: 13px;
  margin: 0;
}
.examples {
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(112, 76, 255, 0.28),
      transparent 28%
    ),
    #090817;
  color: white;
}
.examples-intro {
  max-width: 780px;
  margin-bottom: 50px;
}
.examples-intro p {
  color: #beb8ca;
}
.example-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.example-card {
  padding: 14px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}
.example-card header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 16px;
}
.example-card header span {
  font: 500 10px Unbounded;
  color: #a995ff;
}
.example-card header strong {
  font-size: 13px;
  margin-right: auto;
}
.example-card header i {
  font-style: normal;
  color: #9b77ff;
}
.example-prompt,
.example-output {
  padding: 20px;
  border-radius: 18px;
}
.example-prompt {
  background: #fff;
  color: #171326;
  margin-bottom: 8px;
}
.example-output {
  background: #18152c;
}
.example-card small {
  font-size: 9px;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: #8a75df;
}
.example-card p {
  font-size: 13px;
  line-height: 1.55;
  margin: 9px 0 0;
}
.example-prompt p {
  color: #3b3547;
}
.example-output p {
  color: #cbc5d5;
}
.example-output > div {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}
.example-output i {
  height: 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}
.example-output i:nth-child(2) {
  width: 82%;
}
.example-output i:nth-child(3) {
  width: 56%;
}
@media (max-width: 1050px) {
  .audience-grid,
  .example-board {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .audience-grid,
  .example-board {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Arrow-free controls and final responsive pass. */
.button {
  gap: 0;
  padding-inline: 26px;
}
.button b,
.text-link b,
.ability > a b,
.related-grid > a b,
.hero-prompt > b,
.composer > b {
  display: none;
}
.menu {
  font-weight: 800;
  text-align: center;
}
.hero-prompt {
  padding-right: 18px;
}
.related-grid a {
  grid-template-columns: 1fr;
}
.related-grid a strong {
  max-width: 100%;
}
@media (max-width: 640px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
  body {
    font-size: 16px;
  }
  .site-header {
    height: 62px;
    padding: 0 10px 0 16px;
    gap: 12px;
  }
  .site-header .brand {
    font-size: 15px;
  }
  .site-header .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 82px;
    height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 12px;
    white-space: nowrap;
  }
  .site-header > .button {
    display: none;
  }
  .hero {
    padding: 104px 16px 54px;
    gap: 32px;
  }
  .hero h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.04;
    margin: 16px 0 22px;
  }
  .hero-copy p {
    font-size: 16px;
    line-height: 1.58;
  }
  .hero-actions {
    width: 100%;
    gap: 18px;
    margin-top: 28px;
  }
  .hero-actions .button {
    width: 100%;
    min-height: 52px;
    padding: 0 20px;
  }
  .text-link {
    font-size: 13px;
  }
  .proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 38px;
  }
  .proof span {
    padding: 0 10px;
    text-align: center;
    font-size: 9px;
  }
  .proof span:first-child {
    padding-left: 0;
  }
  .proof span:last-child {
    padding-right: 0;
  }
  .proof b {
    font-size: 21px;
  }
  .hero-visual {
    height: 360px;
    border-radius: 22px;
  }
  .hero-prompt {
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-height: 54px;
    padding: 10px 14px;
    gap: 10px;
    border-radius: 16px;
  }
  .hero-prompt span {
    font-size: 11px;
    line-height: 1.35;
  }
  .marquee {
    height: 60px;
    padding-left: 16px;
    gap: 14px;
    font-size: 13px;
  }
  .section {
    padding: 68px 16px;
  }
  .section h2,
  .final-cta h2 {
    font-size: clamp(29px, 8.8vw, 36px);
    line-height: 1.06;
    margin-bottom: 20px;
  }
  .section-head {
    margin-bottom: 30px;
  }
  .section-head > p,
  .section p {
    font-size: 16px;
    line-height: 1.62;
  }
  .kicker {
    font-size: 10px;
    line-height: 1.4;
  }
  .bento,
  .knowledge-grid,
  .audience-grid,
  .example-board,
  .related-grid {
    gap: 12px;
  }
  .ability {
    padding: 16px;
    border-radius: 22px;
  }
  .ability-art,
  .ability:nth-child(2) .ability-art,
  .ability:nth-child(3) .ability-art {
    height: 220px;
    border-radius: 16px;
    margin-bottom: 16px;
  }
  .ability h3 {
    font-size: 18px;
  }
  .ability p {
    font-size: 14px;
  }
  .studio,
  .feature,
  .media-lab,
  .ecosystem,
  .formats,
  .long-guide,
  .editorial {
    gap: 34px;
  }
  .studio blockquote {
    margin: 20px 0;
    padding: 18px;
    font-size: 14px;
  }
  .app-shell {
    grid-template-columns: 38px 1fr;
    min-height: 460px;
    border-radius: 20px;
  }
  .app-rail {
    gap: 12px;
  }
  .app-main {
    padding: 0 8px 12px;
  }
  .app-bar {
    height: 54px;
    font-size: 12px;
  }
  .conversation {
    padding: 18px 3px 0;
  }
  .prompt {
    max-width: 96%;
    padding: 14px;
  }
  .answer {
    gap: 8px;
    margin-top: 20px;
  }
  .composer {
    margin-top: 24px;
    padding: 14px;
  }
  .panorama-art {
    height: 320px;
  }
  .panorama-copy {
    margin: -28px auto 0;
    padding: 28px 16px;
    border-radius: 22px;
  }
  .process-line article {
    gap: 14px;
    padding: 22px 0;
  }
  .process-line > article > span {
    font-size: 34px;
  }
  .knowledge-grid article,
  .audience-grid article {
    min-height: 0;
    padding: 24px;
    border-radius: 22px;
  }
  .knowledge-grid h3,
  .audience-grid h3 {
    margin: 24px 0 10px;
  }
  .knowledge-note {
    padding: 22px;
    border-radius: 20px;
  }
  .guide-steps article {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 24px 0;
  }
  .example-card {
    border-radius: 22px;
  }
  .example-prompt,
  .example-output {
    padding: 16px;
  }
  .feature-stack {
    height: 360px;
  }
  .feature-stack img {
    width: 76%;
    height: 72%;
    border-radius: 20px;
  }
  .float-card {
    width: 176px;
    padding: 16px;
  }
  .media-screen {
    padding: 10px;
    border-radius: 22px;
  }
  .media-screen > img {
    height: 230px;
    border-radius: 15px;
  }
  .wave {
    left: 20px;
    right: 20px;
    bottom: 70px;
    height: 58px;
  }
  .timeline div {
    height: 36px;
  }
  .ecosystem {
    overflow: hidden;
  }
  .orbit {
    height: 360px;
  }
  .orbit:before {
    inset: 64px 20px;
  }
  .orbit:after {
    inset: 18px -34px;
  }
  .orbit-center {
    font-size: 16px;
    padding: 13px 16px;
  }
  .orbit-item {
    padding: 8px;
  }
  .format-art {
    height: 330px;
    border-radius: 22px;
  }
  .format-tags {
    inset: auto 12px 12px;
  }
  .format-tags span {
    padding: 8px 10px;
    font-size: 10px;
  }
  .accordion summary {
    min-height: 70px;
    grid-template-columns: 30px 1fr 18px;
    gap: 10px;
    font-size: 14px;
  }
  .accordion details p {
    padding: 0 8px 24px 40px;
    font-size: 14px;
  }
  .related-grid a {
    min-height: 116px;
    padding: 20px;
    border-radius: 20px;
  }
  .related-grid a strong {
    font-size: 16px;
  }
  .final-cta {
    min-height: 500px;
    padding: 76px 16px;
  }
  .final-cta p {
    font-size: 16px;
  }
  .final-cta .button {
    width: 100%;
    max-width: 320px;
  }
  .final-orb {
    width: 440px;
    height: 440px;
  }
  #site-footer {
    padding: 50px 16px 24px;
    gap: 28px;
  }
  #site-footer nav {
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
  }
  #site-footer nav a {
    font-size: 12px;
  }
  .legal {
    font-size: 10px;
    line-height: 1.5;
  }
}
@media (max-width: 380px) {
  .site-header .brand {
    font-size: 14px;
  }
  .site-header .menu {
    min-width: 74px;
    padding-inline: 12px;
  }
  .hero h1 {
    font-size: 33px;
  }
  .hero-visual {
    height: 330px;
  }
  .proof span {
    font-size: 8px;
  }
  .section {
    padding-inline: 14px;
  }
  .section h2,
  .final-cta h2 {
    font-size: 29px;
  }
  .app-shell {
    grid-template-columns: 34px 1fr;
  }
  .orbit {
    height: 330px;
  }
  #site-footer nav {
    grid-template-columns: 1fr;
  }
}

/* Visual polish: consistent cards, stronger typography,
   and clearer hierarchy. */
h1,
h2,
h3,
strong {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}
.section h2 {
  font-weight: 700;
  letter-spacing: -0.045em;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.72),
    0 14px 34px rgba(43, 28, 86, 0.1);
}
.dark h2,
.ecosystem h2 {
  color: #fff;
  text-shadow: 0 2px 16px rgba(13, 8, 35, 0.32);
}
.section-head > p,
.section p {
  font-size: 18px;
  line-height: 1.75;
}
.button {
  min-height: 52px;
  padding: 0 10px 0 24px;
  font-size: 14px;
  box-shadow: 0 14px 34px rgba(54, 35, 112, 0.18);
}
.button b {
  width: 38px;
  height: 38px;
}
.chips {
  gap: 10px;
  margin-top: 28px;
}
.chips span {
  padding: 11px 15px;
  font-size: 12px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 22px rgba(4, 2, 18, 0.16);
}

.audience-grid {
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 18px;
}
.audience-grid article {
  height: 100%;
  min-height: 310px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border-color: rgba(80, 59, 135, 0.14);
  box-shadow: 0 18px 48px rgba(46, 31, 86, 0.09);
}
.audience-grid article > span {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-size: 21px;
  box-shadow: 0 10px 24px rgba(115, 85, 230, 0.15);
}
.audience-grid h3 {
  margin: 42px 0 14px;
  font-size: 21px;
  line-height: 1.25;
}
.audience-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.example-board {
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 18px;
}
.example-card {
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}
.example-card header {
  min-height: 50px;
  padding: 8px 8px 17px;
}
.example-card header span {
  font-size: 11px;
}
.example-card header strong {
  font-size: 15px;
  line-height: 1.3;
}
.example-prompt,
.example-output {
  padding: 24px;
  border-radius: 19px;
}
.example-prompt {
  min-height: 132px;
}
.example-output {
  flex: 1;
  min-height: 164px;
}
.example-card small {
  font-size: 10px;
}
.example-card p {
  font-size: 15px;
  line-height: 1.65;
  margin-top: 11px;
}

.media-copy h2 {
  max-width: 620px;
  font-size: clamp(44px, 5.1vw, 74px);
  line-height: 1.02;
}
.media-copy p {
  font-size: 19px;
  line-height: 1.72;
}

.orbit-center,
.orbit-item {
  min-height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: 0 20px 48px rgba(38, 16, 96, 0.24);
}
.orbit-center {
  padding: 16px 22px;
  font-size: 21px;
}
.orbit-item {
  width: 194px;
  padding: 13px 16px;
}
.orbit-item i {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
}
.orbit-item span {
  font-size: 13px;
  line-height: 1.25;
}

.related-grid {
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 18px;
}
.related-grid a {
  height: 100%;
  min-height: 190px;
  padding: 30px;
  border-color: rgba(80, 59, 135, 0.15);
  background: #fff;
  box-shadow: 0 18px 46px rgba(46, 31, 86, 0.09);
}
.related-grid a span {
  font-size: 12px;
}
.related-grid a strong {
  font-size: 21px;
  line-height: 1.28;
}
.related-grid a b {
  font-size: 22px;
}
.section {
  padding-top: 96px;
  padding-bottom: 96px;
}
.section-head {
  margin-bottom: 44px;
}
.panorama.section {
  padding-top: 0;
}
.final-cta {
  min-height: 560px;
  padding-top: 94px;
  padding-bottom: 94px;
}
.audience-icon {
  font-family: "Material Symbols Rounded";
  font-weight: 600;
  font-style: normal;
  font-size: 27px !important;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  background: linear-gradient(145deg, #7857ff, #4b83ff) !important;
  color: #fff !important;
  box-shadow: 0 13px 30px rgba(100, 78, 232, 0.28) !important;
}
.trust-icon {
  font-family: "Material Symbols Rounded";
  font-weight: 600;
  font-style: normal;
  font-size: 27px !important;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  background: linear-gradient(145deg, #7857ff, #4b83ff) !important;
  color: #fff !important;
  box-shadow: 0 13px 30px rgba(100, 78, 232, 0.25) !important;
}
.feature {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 64px;
}
.feature-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}
.feature-copy h2 {
  max-width: 100%;
  font-size: clamp(42px, 4.15vw, 64px);
  overflow-wrap: break-word;
  word-break: normal;
}
.feature-stack {
  position: relative;
  z-index: 1;
  min-width: 0;
}

/* Compact vertical rhythm and a smaller multimodal panorama. */
.section {
  padding-top: 74px;
  padding-bottom: 74px;
}
.section-head {
  margin-bottom: 34px;
}
.panorama.section {
  padding-top: 74px;
  padding-bottom: 62px;
}
.panorama-art {
  width: min(1080px, 100%);
  height: 500px;
  margin: 0 auto;
  border-radius: 30px;
}
.panorama-copy {
  width: min(680px, 88%);
  margin: -72px auto 0;
  padding: 38px 46px;
  border-radius: 26px;
}
.panorama-copy h2 {
  margin-top: 14px;
  margin-bottom: 18px;
  font-size: clamp(36px, 3.7vw, 56px);
}
.final-cta {
  min-height: 500px;
  padding-top: 76px;
  padding-bottom: 76px;
}
.bento {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 520px;
}
.ability-art,
.ability:nth-child(2) .ability-art,
.ability:nth-child(3) .ability-art {
  height: 250px;
}

@media (max-width: 1050px) {
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .audience-grid article {
    min-height: 280px;
  }
  .example-prompt {
    min-height: 118px;
  }
  .media-copy h2 {
    font-size: clamp(42px, 7vw, 62px);
  }
  .feature {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .feature-copy h2 {
    font-size: clamp(40px, 7vw, 58px);
    overflow-wrap: normal;
  }
}
@media (max-width: 640px) {
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .section-head {
    margin-bottom: 30px;
  }
  .panorama.section {
    padding-top: 0;
  }
  .final-cta {
    min-height: 500px;
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .bento {
    grid-template-columns: 1fr;
  }
  .ability-art,
  .ability:nth-child(2) .ability-art,
  .ability:nth-child(3) .ability-art {
    height: 260px;
  }
  .section h2 {
    font-size: clamp(34px, 9.4vw, 42px);
    line-height: 1.07;
    letter-spacing: -0.04em;
  }
  .section-head > p,
  .section p {
    font-size: 17px;
    line-height: 1.7;
  }
  .audience-grid article {
    min-height: 0;
    padding: 28px;
  }
  .audience-grid h3 {
    margin-top: 30px;
    font-size: 20px;
  }
  .example-card {
    padding: 12px;
  }
  .example-prompt,
  .example-output {
    min-height: 0;
    padding: 21px;
  }
  .example-card header strong,
  .example-card p {
    font-size: 14px;
  }
  .media-copy h2 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.04;
  }
  .feature-copy h2 {
    font-size: clamp(34px, 9.4vw, 42px);
  }
  .media-copy p {
    font-size: 17px;
  }
  .orbit-item {
    width: auto;
    min-width: 58px;
    padding: 10px;
  }
  .orbit-item span {
    display: none;
  }
  .related-grid a {
    min-height: 165px;
    padding: 26px;
  }
  .related-grid a strong {
    font-size: 20px;
  }
  .app-shell {
    grid-template-columns: 44px minmax(0, 1fr);
  }
  .app-main,
  .conversation,
  .prompt,
  .answer,
  .answer > div {
    min-width: 0;
  }
  .app-shell p,
  .app-shell span,
  .app-shell strong {
    overflow-wrap: normal;
    word-break: normal;
  }
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-head {
    margin-bottom: 26px;
  }
  .panorama.section {
    padding-top: 50px;
    padding-bottom: 44px;
  }
  .panorama-art {
    width: 100%;
    height: 320px;
    margin: 0;
    border-radius: 22px;
  }
  .panorama-copy {
    width: calc(100% - 20px);
    margin: -30px auto 0;
    padding: 28px 18px;
    border-radius: 22px;
  }
  .panorama-copy h2 {
    font-size: clamp(30px, 8.7vw, 38px);
  }
  .final-cta {
    min-height: 460px;
    padding-top: 62px;
    padding-bottom: 62px;
  }
}
.sources {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.sources ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.sources li a {
  display: block;
  padding: 13px 16px;
  background: #eeebf8;
  border-radius: 12px;
  color: #51466d;
}
@media (max-width: 1024px) {
  .sources {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.footer-pbn {
  grid-column: 1/-1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-pbn h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 13px;
}
.footer-pbn-links {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px 20px;
}
.footer-pbn-links a {
  color: #c6c0d1;
  font-size: 13px;
}
.footer-pbn-links a:hover {
  color: #9d83ff;
}
@media (max-width: 900px) {
  .footer-pbn-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 430px) {
  .footer-pbn-links {
    grid-template-columns: 1fr 1fr;
  }
}
