:root {
  --page: #050608;
  --panel: #121419;
  --panel-2: #191c22;
  --white: #f5f5f7;
  --ink: #f5f6f8;
  --ink-dark: #15161a;
  --muted: #a0a5af;
  --muted-dark: #686d77;
  --line: rgba(255, 255, 255, 0.11);
  --line-dark: rgba(21, 22, 26, 0.1);
  --blue: #7e9cff;
  --blue-strong: #5879f2;
  --cyan: #71d9ff;
  --green: #6fe0ad;
  --violet: #ae86ff;
  --orange: #ffbd77;
  --content: 1320px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 38px 110px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 0, rgba(73, 104, 217, 0.14), transparent 28%),
    var(--page);
  color: var(--ink);
  font-family: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #ffffff;
  color: #111217;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
  padding: 132px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(5, 6, 8, 0.7);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  backdrop-filter: blur(24px) saturate(150%);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--content));
  min-height: 68px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  width: 29px;
  height: 29px;
  border-radius: 9px;
  display: inline-block;
  background: url("./brand/dreamer-logo.png") center / cover no-repeat;
  box-shadow: 0 0 24px rgba(88, 121, 242, 0.35);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.nav-toggle span,
.nav-toggle span::after {
  width: 17px;
  height: 1px;
  display: block;
  background: currentColor;
}

.nav-toggle span::after {
  content: "";
  transform: translateY(6px);
}

.nav-links {
  position: absolute;
  top: calc(100% + 1px);
  right: 16px;
  left: 16px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 17px;
  display: grid;
  background: rgba(13, 15, 20, 0.94);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease-out, transform 180ms ease-out;
}

.nav-links.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links a {
  min-height: 44px;
  padding: 11px 13px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  color: #a7abb4;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.nav-links .nav-cta {
  justify-content: center;
  background: #f4f5f7;
  color: #111217;
}

.eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue-strong);
}

.hero {
  padding-top: 150px;
  display: grid;
  gap: 72px;
}

.hero-copy {
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}

.hero h1,
.section-title {
  margin: 18px 0 0;
  font-size: clamp(60px, 9.5vw, 126px);
  line-height: 1.08;
  letter-spacing: -0.048em;
}

.hero h1 span {
  color: #818690;
}

.hero-lede {
  max-width: 760px;
  margin: 32px auto 0;
  color: #b0b4bc;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.button {
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms var(--ease), background 180ms ease-out, box-shadow 180ms ease-out;
}

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

.button.primary {
  background: #f4f5f7;
  color: #111217;
  box-shadow: 0 16px 42px rgba(255, 255, 255, 0.12);
}

.button.quiet {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #c6cad1;
}

.button.light {
  margin-top: 36px;
  background: #ffffff;
  color: #111217;
}

/* Realistic Photoshop + Dreamer product stage */

.photoshop-stage {
  position: relative;
  padding: 1px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(125, 156, 255, 0.08), rgba(255, 255, 255, 0.05));
  box-shadow: 0 50px 140px rgba(0, 0, 0, 0.58);
}

.photoshop-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 70%;
  height: 36%;
  top: -12%;
  left: 15%;
  border-radius: 50%;
  background: rgba(87, 119, 242, 0.2);
  filter: blur(80px);
}

.ps-window {
  overflow: hidden;
  border-radius: 31px;
  background: #25272b;
}

.ps-titlebar {
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid #111216;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: linear-gradient(#303236, #282a2e);
  color: #b4b7bc;
  font-size: 13px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.ps-titlebar > span {
  justify-self: center;
}

.ps-titlebar > strong {
  justify-self: end;
  color: #858991;
  font-size: 12px;
  font-weight: 500;
}

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

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

.window-dots i:nth-child(2) { background: #febc2e; }
.window-dots i:nth-child(3) { background: #28c840; }

.ps-workspace {
  min-height: 720px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) minmax(320px, 36%);
  background: #1d1f22;
}

.ps-toolbar {
  padding: 13px 9px;
  border-right: 1px solid #111216;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: #292b2f;
}

.ps-toolbar i {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1.5px solid #a8abb0;
  opacity: 0.8;
}

.ps-toolbar i:nth-child(1) { border-radius: 2px; transform: rotate(45deg) scale(0.68); }
.ps-toolbar i:nth-child(2) { border-style: dashed; }
.ps-toolbar i:nth-child(3) { border: 0; border-left: 2px solid #a8abb0; border-bottom: 2px solid #a8abb0; transform: rotate(-45deg); }
.ps-toolbar i:nth-child(4) { border-radius: 50%; }
.ps-toolbar i:nth-child(5) { border-radius: 50% 50% 50% 0; transform: rotate(-25deg); }
.ps-toolbar i:nth-child(6) { border: 0; background: linear-gradient(90deg, #a8abb0 2px, transparent 2px 8px, #a8abb0 8px 10px); }
.ps-toolbar i:nth-child(7) { border-radius: 3px; box-shadow: inset 0 0 0 4px #292b2f; background: #a8abb0; }

.ps-canvas-wrap {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(45deg, #24262a 25%, transparent 25%),
    linear-gradient(-45deg, #24262a 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #24262a 75%),
    linear-gradient(-45deg, transparent 75%, #24262a 75%),
    #202226;
  background-position: 0 0, 0 8px, 8px -8px, -8px 0;
  background-size: 16px 16px;
}

.ps-canvas {
  position: relative;
  width: min(86%, 720px);
  aspect-ratio: 4 / 5;
  max-height: 630px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
  background:
    radial-gradient(circle at 68% 20%, rgba(230, 225, 177, 0.45), transparent 13%),
    linear-gradient(155deg, #526d5a, #243840 48%, #121c25);
}

.forest-depth {
  position: absolute;
  inset: 0;
}

.depth-back {
  opacity: 0.5;
  background:
    repeating-linear-gradient(100deg, transparent 0 17%, rgba(16, 28, 28, 0.8) 17.5% 21%, transparent 21.5% 34%);
  filter: blur(4px);
}

.depth-front {
  background:
    linear-gradient(72deg, transparent 0 14%, rgba(12, 20, 22, 0.76) 14.5% 18%, transparent 18.5%),
    linear-gradient(107deg, transparent 0 76%, rgba(11, 18, 21, 0.86) 76.5% 81%, transparent 81.5%);
}

.real-subject {
  position: absolute;
  z-index: 4;
  width: 42%;
  height: 76%;
  bottom: -5%;
  left: 29%;
  filter: drop-shadow(0 26px 24px rgba(0, 0, 0, 0.42));
}

.real-subject::before {
  content: "";
  position: absolute;
  width: 43%;
  aspect-ratio: 0.82;
  top: 3%;
  left: 28%;
  border-radius: 47% 47% 43% 43%;
  background:
    radial-gradient(ellipse at 48% 34%, transparent 0 35%, rgba(71, 46, 48, 0.3) 36% 38%, transparent 39%),
    linear-gradient(145deg, #d5ad98, #9c6d72);
  box-shadow: inset 12px 0 18px rgba(255, 224, 192, 0.18), inset -12px 0 20px rgba(74, 39, 49, 0.22);
}

.real-subject::after {
  content: "";
  position: absolute;
  width: 58%;
  height: 35%;
  top: -3%;
  left: 21%;
  border-radius: 55% 55% 38% 38%;
  background: #282329;
  clip-path: polygon(6% 10%, 94% 0, 82% 72%, 66% 100%, 50% 58%, 25% 100%, 12% 70%);
}

.real-subject > i {
  position: absolute;
  z-index: -1;
  inset: 24% 0 0;
  border-radius: 48% 48% 18% 18%;
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(179, 126, 95, 0.46) 47% 49%, transparent 50%),
    linear-gradient(145deg, #334257, #171d29);
}

.real-subject > span {
  position: absolute;
  z-index: 3;
  width: 40%;
  height: 8%;
  top: 31%;
  left: 30%;
  border-bottom: 2px solid rgba(203, 158, 120, 0.7);
  border-radius: 50%;
}

.selection-path {
  position: absolute;
  z-index: 5;
  width: 46%;
  height: 75%;
  left: 27%;
  bottom: 1%;
  border: 1px dashed rgba(255, 255, 255, 0.9);
  border-radius: 46% 46% 18% 18%;
  filter: drop-shadow(0 0 2px #000);
  animation: selection-march 1.2s linear infinite;
}

.light-ray {
  position: absolute;
  z-index: 2;
  width: 20%;
  height: 130%;
  top: -25%;
  right: 18%;
  opacity: 0.42;
  background: linear-gradient(90deg, transparent, rgba(255, 223, 153, 0.8), transparent);
  filter: blur(12px);
  transform: rotate(21deg);
  animation: light-breathe 4s ease-in-out infinite alternate;
}

.canvas-info {
  position: absolute;
  left: 18px;
  bottom: 15px;
  display: flex;
  gap: 8px;
  color: #888c93;
  font-size: 12px;
}

.canvas-info strong {
  color: #c0c4ca;
  font-weight: 500;
}

.result-toast {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-width: 220px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  display: grid;
  grid-template-columns: 11px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  background: rgba(29, 32, 38, 0.8);
  color: #9da2aa;
  font-size: 12px;
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  animation: toast-arrive 7s var(--ease) infinite;
}

.result-toast > i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(111, 224, 173, 0.75);
}

.result-toast strong {
  display: block;
  color: #f1f2f4;
  font-size: 13px;
}

.ps-side {
  min-width: 0;
  border-left: 1px solid #111216;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 210px;
  background: #202226;
}

.dreamer-panel {
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  background: #101217;
}

.panel-head {
  min-height: 62px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-brand .brand-mark {
  width: 31px;
  height: 31px;
}

.panel-brand strong,
.panel-brand small {
  display: block;
}

.panel-brand strong {
  font-size: 14px;
}

.panel-brand small {
  margin-top: 2px;
  color: #7f858f;
  font-size: 11px;
}

.panel-brand small i {
  width: 6px;
  height: 6px;
  margin-right: 4px;
  border-radius: 50%;
  display: inline-block;
  background: var(--green);
}

.panel-more {
  min-width: 32px;
  min-height: 32px;
  display: grid;
  place-items: center;
  color: #777d87;
}

.panel-context {
  min-height: 42px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7f858e;
  font-size: 11px;
}

.panel-context strong {
  padding: 4px 7px;
  border-radius: 6px;
  background: rgba(126, 156, 255, 0.1);
  color: #9baff0;
  font-size: 11px;
  font-weight: 600;
}

.chat-stream {
  min-height: 0;
  overflow: hidden;
  padding: 17px 14px 14px;
}

.chat-message {
  max-width: 92%;
  padding: 11px 12px;
  border-radius: 13px;
  font-size: 13px;
  line-height: 1.45;
}

.user-message {
  margin-left: auto;
  border-bottom-right-radius: 4px;
  background: #2b3141;
  color: #eef0f4;
}

.agent-message {
  margin-top: 13px;
  padding: 0;
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  gap: 8px;
  color: #c8ccd3;
}

.agent-avatar {
  width: 27px;
  height: 27px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #718ef5, #8c65d6);
  color: #ffffff;
  font-size: 12px;
  font-weight: 750;
}

.agent-message p {
  margin: 3px 0 0;
}

.review-card {
  margin: 15px 0 0 35px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: #1a1d24;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  animation: card-settle 4s var(--ease) infinite alternate;
}

.review-card header {
  min-height: 44px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card header span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
}

.review-card header span i {
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  display: inline-block;
  background: var(--orange);
}

.review-card header strong {
  color: #737a86;
  font-size: 11px;
}

.review-preview {
  position: relative;
  height: 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 18%, rgba(246, 203, 139, 0.5), transparent 12%),
    linear-gradient(145deg, #425b4c, #172532);
}

.preview-person {
  position: absolute;
  width: 58px;
  height: 98px;
  bottom: -12px;
  left: calc(50% - 29px);
  border-radius: 45% 45% 16% 16%;
  background:
    radial-gradient(circle at 50% 19%, #cfa48f 0 17%, transparent 18%),
    linear-gradient(145deg, transparent 28%, #263145 29%);
}

.preview-light {
  position: absolute;
  width: 38px;
  height: 180px;
  top: -40px;
  right: 27%;
  background: rgba(255, 218, 143, 0.35);
  filter: blur(10px);
  transform: rotate(18deg);
}

.review-card dl {
  margin: 0;
  padding: 8px 12px;
  display: grid;
  gap: 6px;
}

.review-card dl div {
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr);
  gap: 6px;
  font-size: 11px;
}

.review-card dt {
  color: #6f7681;
}

.review-card dd {
  margin: 0;
  color: #c9cdd4;
}

.review-action {
  width: calc(100% - 20px);
  min-height: 34px;
  margin: 2px 10px 10px;
  border: 0;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #6d87e8;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
}

.composer {
  margin: 0 12px 12px;
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: #1c1f26;
  color: #686f7c;
  font-size: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.composer > div {
  margin-top: 9px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.composer i {
  color: #8a919e;
  font-size: 11px;
  font-style: normal;
}

.composer-send {
  width: 27px;
  height: 27px;
  margin-left: auto;
  border: 0;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #6b84dc;
  color: #ffffff;
}

.layers-dock {
  overflow: hidden;
  border-top: 1px solid #111216;
  background: #292b2f;
}

.layers-dock > header {
  min-height: 37px;
  padding: 0 12px;
  border-bottom: 1px solid #17181b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #a9adb4;
  font-size: 11px;
}

.layers-dock > header span {
  color: #6e737b;
}

.layer {
  min-height: 52px;
  padding: 5px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.24);
  display: grid;
  grid-template-columns: 9px 34px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  color: #c2c5cb;
  font-size: 11px;
}

.layer.active {
  background: #3c434e;
}

.layer > i {
  color: #8d9299;
  font-size: 7px;
  font-style: normal;
}

.layer-thumb {
  width: 34px;
  height: 34px;
  border: 1px solid #111216;
  display: block;
}

.layer-thumb.result { background: linear-gradient(145deg, #4c6755, #1c2c39); }
.layer-thumb.mask { background: radial-gradient(circle, #fff 0 40%, #18191b 42%); }
.layer-thumb.source { background: linear-gradient(145deg, #7a665d, #263944); }

.layer strong,
.layer small {
  display: block;
}

.layer strong {
  font-weight: 500;
}

.layer small {
  color: #7b8088;
  font-size: 11px;
}

/* Pain and product capabilities */

.product-section {
  background: linear-gradient(180deg, #f7f7f9, #eceef3);
  color: var(--ink-dark);
}

.pain-grid {
  display: grid;
  gap: 10px;
}

.pain-grid article {
  min-height: 190px;
  padding: 27px;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 50px rgba(41, 48, 67, 0.07);
}

.pain-grid span {
  color: #9ca2ad;
  font-size: 12px;
  font-weight: 750;
}

.pain-grid strong {
  margin-top: 24px;
  display: block;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.045em;
}

.pain-grid p {
  max-width: 300px;
  margin: 10px 0 0;
  color: var(--muted-dark);
  font-size: 16px;
}

.product-answer {
  margin: 14px 0 128px;
  padding: 22px 26px;
  border-radius: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #15171c;
  color: #ffffff;
}

.product-answer span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 750;
}

.product-answer strong {
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: -0.025em;
}

.section-title {
  max-width: 1040px;
  font-size: clamp(52px, 8vw, 96px);
}

.section-title.dark {
  color: var(--ink-dark);
}

.capability-tabs {
  width: fit-content;
  margin-top: 56px;
  padding: 5px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  display: flex;
  background: rgba(255, 255, 255, 0.58);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.capability-tab {
  min-height: 45px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #7a7f89;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.capability-tab.is-active {
  background: #15171c;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(27, 31, 42, 0.18);
}

.capability-stage {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 32px;
  background:
    radial-gradient(circle at 84% 12%, rgba(88, 121, 242, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 32px 80px rgba(39, 46, 67, 0.13);
}

.capability-panel {
  min-height: 640px;
  padding: clamp(28px, 5vw, 68px);
  display: grid;
  align-items: center;
  gap: 42px;
  animation: panel-enter 420ms var(--ease) both;
}

.capability-panel[hidden] {
  display: none;
}

.capability-copy > span {
  color: var(--blue-strong);
  font-size: 16px;
  font-weight: 700;
}

.capability-copy h3 {
  margin: 20px 0 0;
  font-size: clamp(48px, 6.5vw, 80px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.capability-copy p {
  max-width: 510px;
  margin: 24px 0 0;
  color: var(--muted-dark);
  font-size: 18px;
}

.real-result-ui {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(19, 21, 27, 0.1);
  border-radius: 26px;
  background: #15181f;
  box-shadow: 0 36px 80px rgba(31, 38, 57, 0.23);
}

.retouch-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
}

.result-image {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 35%, #8d6870, #372c38 48%, #121720);
}

.result-face {
  position: absolute;
  width: 240px;
  height: 340px;
  bottom: -44px;
  left: calc(50% - 120px);
  border-radius: 48% 48% 40% 40%;
  background:
    radial-gradient(ellipse at 50% 9%, #2d272d 0 35%, transparent 36%),
    linear-gradient(145deg, #d6ad99, #90636e);
  box-shadow: inset 26px 0 40px rgba(255, 224, 190, 0.15), inset -28px 0 40px rgba(66, 35, 48, 0.22);
}

.result-face i {
  position: absolute;
  width: 31px;
  height: 7px;
  top: 145px;
  border-radius: 50%;
  background: #443038;
}

.result-face i:first-child { left: 48px; }
.result-face i:last-child { right: 48px; }

.result-scan {
  position: absolute;
  z-index: 3;
  width: 260px;
  height: 1px;
  top: 110px;
  left: calc(50% - 130px);
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 16px var(--cyan);
  animation: face-scan 4s ease-in-out infinite;
}

.result-inspector {
  padding: 20px 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  display: grid;
  align-content: center;
  gap: 9px;
  background: #20232a;
}

.result-inspector > span {
  margin-bottom: 8px;
  color: #7a818d;
  font-size: 13px;
}

.result-inspector strong {
  padding: 10px;
  border: 1px solid rgba(111, 224, 173, 0.15);
  border-radius: 10px;
  color: #d6dbdf;
  font-size: 13px;
  font-weight: 550;
}

.result-inspector strong::before {
  content: "•";
  margin-right: 7px;
  color: var(--blue);
}

.result-inspector > i {
  margin-top: 8px;
  color: var(--green);
  font-size: 12px;
  font-style: normal;
}

.expand-result {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  background: #121820;
}

.expand-original,
.expand-side {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 64% 20%, rgba(255, 220, 156, 0.35), transparent 13%),
    linear-gradient(145deg, #496558, #1b3039);
}

.expand-original {
  z-index: 2;
  border-inline: 1px dashed rgba(255, 255, 255, 0.7);
}

.expand-side {
  opacity: 0.85;
  background:
    repeating-linear-gradient(100deg, transparent 0 25%, rgba(16, 28, 30, 0.5) 26% 31%, transparent 32% 44%),
    linear-gradient(145deg, #415b51, #172a34);
  animation: expand-side-in 5s var(--ease) infinite;
}

.expand-side.right {
  animation-delay: 0.22s;
}

.mini-person {
  position: absolute;
  width: 90px;
  height: 210px;
  bottom: -16px;
  left: calc(50% - 45px);
  border-radius: 46% 46% 16% 16%;
  background:
    radial-gradient(circle at 50% 19%, #cfaa96 0 17%, transparent 18%),
    linear-gradient(145deg, transparent 28%, #27364c 29%);
}

.original-label {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 50%;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(15, 18, 24, 0.75);
  color: #d4d8de;
  font-size: 12px;
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.expand-light {
  position: absolute;
  z-index: 3;
  width: 12%;
  height: 140%;
  top: -20%;
  right: 22%;
  background: rgba(255, 217, 145, 0.3);
  filter: blur(10px);
  transform: rotate(18deg);
}

.style-result {
  padding: 30px;
  display: grid;
  align-content: center;
  gap: 16px;
  background: linear-gradient(145deg, #1d222d, #0f1218);
}

.style-frames {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.style-frames i {
  aspect-ratio: 0.8;
  border-radius: 13px;
  display: block;
  background:
    radial-gradient(circle at 50% 35%, rgba(217, 174, 154, 0.75), transparent 14%),
    linear-gradient(145deg, #79666d, #314753);
  filter: saturate(0.72);
  animation: frame-grade 5s ease-in-out infinite alternate;
}

.style-frames i:nth-child(2) { animation-delay: -1.7s; }
.style-frames i:nth-child(3) { animation-delay: -3.4s; }

.saved-skill {
  padding: 17px 18px;
  border: 1px solid rgba(111, 224, 173, 0.16);
  border-radius: 15px;
  background: rgba(111, 224, 173, 0.06);
}

.saved-skill span,
.saved-skill strong,
.saved-skill small {
  display: block;
}

.saved-skill span {
  color: var(--green);
  font-size: 12px;
}

.saved-skill strong {
  margin-top: 7px;
  font-size: 18px;
}

.saved-skill small {
  margin-top: 4px;
  color: #8b929e;
  font-size: 13px;
}

/* Agent relationship */

.agent-section {
  position: relative;
  padding-block: 150px;
}

.anchor-target {
  position: absolute;
  top: -68px;
}

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

.center-heading .section-title {
  margin-inline: auto;
}

.center-heading > p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.agent-diagram {
  position: relative;
  min-height: 760px;
  margin-top: 72px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 46%, rgba(91, 125, 245, 0.18), transparent 25%),
    linear-gradient(145deg, #11141b, #07090d);
  box-shadow: var(--shadow);
  perspective: 1200px;
  transform-style: preserve-3d;
}

.agent-floor {
  position: absolute;
  width: 120%;
  height: 56%;
  left: -10%;
  bottom: -28%;
  opacity: 0.4;
  background:
    linear-gradient(rgba(126, 156, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 156, 255, 0.16) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 28%);
  mask-image: linear-gradient(to bottom, transparent, #000 28%);
  transform: rotateX(67deg);
  transform-origin: center bottom;
}

.agent-node,
.output-node {
  position: absolute;
  z-index: 4;
  width: 230px;
  min-height: 105px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  display: grid;
  align-content: center;
  background: rgba(25, 29, 39, 0.7);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  backdrop-filter: blur(20px) saturate(145%);
  animation: node-float 4s var(--ease) infinite alternate;
}

.agent-node span,
.agent-node strong,
.output-node span,
.output-node strong {
  display: block;
}

.agent-node span,
.output-node span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.agent-node strong,
.output-node strong {
  margin-top: 7px;
  font-size: 17px;
}

.intent-node { top: 90px; left: 8%; transform: translateZ(40px) rotateY(6deg); }
.context-node { bottom: 105px; left: 8%; transform: translateZ(-15px) rotateY(6deg); animation-delay: -1.2s; }
.skill-node { top: 90px; right: 8%; transform: translateZ(25px) rotateY(-6deg); animation-delay: -2.4s; }
.engine-node { right: 8%; bottom: 105px; transform: translateZ(-20px) rotateY(-6deg); animation-delay: -0.7s; }

.agent-core {
  position: absolute;
  z-index: 7;
  width: 280px;
  height: 280px;
  top: calc(50% - 140px);
  left: calc(50% - 140px);
  display: grid;
  place-items: center;
  align-content: center;
  transform-style: preserve-3d;
  animation: core-float 4.5s var(--ease) infinite alternate;
}

.core-mark {
  position: relative;
  z-index: 4;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 36px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 33% 26%, rgba(255, 255, 255, 0.45), transparent 9%),
    linear-gradient(145deg, #7898ff, #805fd4);
  font-size: 42px;
  font-weight: 780;
  box-shadow: inset -13px -18px 34px rgba(40, 24, 88, 0.3), 0 0 60px rgba(89, 122, 244, 0.38);
  transform: translateZ(70px) rotateX(-7deg) rotateY(10deg);
}

.agent-core > strong {
  position: relative;
  z-index: 5;
  margin-top: 20px;
  font-size: 17px;
}

.agent-core > span {
  position: relative;
  z-index: 5;
  margin-top: 5px;
  color: #7f8795;
  font-size: 13px;
}

.core-ring {
  position: absolute;
  border: 1px solid rgba(113, 217, 255, 0.2);
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: ring-turn 7s linear infinite;
}

.core-ring i {
  position: absolute;
  width: 8px;
  height: 8px;
  top: -4px;
  left: 50%;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}

.ring-one {
  width: 205px;
  height: 205px;
  transform: rotateX(70deg) rotateZ(18deg);
}

.ring-two {
  width: 250px;
  height: 250px;
  border-color: rgba(174, 134, 255, 0.18);
  transform: rotateY(70deg) rotateZ(-14deg);
  animation-direction: reverse;
  animation-duration: 10s;
}

.ring-two i {
  background: var(--violet);
  box-shadow: 0 0 14px var(--violet);
}

.signal-line {
  position: absolute;
  z-index: 2;
  width: 300px;
  height: 1px;
  top: 50%;
  left: 50%;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(126, 156, 255, 0.62), rgba(126, 156, 255, 0.02));
  transform-origin: left;
}

.signal-line::after {
  content: "";
  position: absolute;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #e4e9ff, transparent);
  animation: signal-run 3s ease-in-out infinite;
}

.line-a { transform: rotate(-148deg); }
.line-b { transform: rotate(148deg); }
.line-c { transform: rotate(-31deg); }
.line-d { transform: rotate(31deg); }

.line-b::after,
.line-d::after {
  animation-direction: reverse;
}

.output-node {
  width: 215px;
  min-height: 78px;
  bottom: 35px;
  left: calc(50% - 107px);
  border-color: rgba(111, 224, 173, 0.2);
  background: rgba(18, 31, 30, 0.74);
  text-align: center;
}

.output-node span {
  color: var(--green);
}

.output-node span i {
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  display: inline-block;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

/* Memory */

.memory-section {
  background: linear-gradient(180deg, #f5f5f7, #e9ebf0);
  color: var(--ink-dark);
}

.memory-layout {
  display: grid;
  gap: 70px;
}

.memory-lede {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--muted-dark);
  font-size: 20px;
}

.memory-control {
  width: fit-content;
  margin-top: 20px;
  padding: 9px 13px;
  border: 1px solid rgba(21, 22, 26, 0.1);
  border-radius: 999px;
  display: block;
  color: #676c76;
  font-size: 13px;
  font-weight: 650;
  background: rgba(255, 255, 255, 0.45);
}

.asset-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  perspective: 1000px;
}

.asset-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(21, 22, 26, 0.11);
  border-radius: 26px;
  display: grid;
  align-content: end;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 60px rgba(51, 59, 81, 0.12);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  animation: asset-float 4s var(--ease) infinite alternate;
}

.asset-card::before,
.asset-card::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.asset-card::before {
  width: 110px;
  height: 110px;
  top: -34px;
  right: -24px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.96), rgba(79, 124, 255, 0.22) 46%, transparent 70%);
}

.asset-card::after {
  width: 7px;
  height: 7px;
  top: 28px;
  right: 30px;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(50, 112, 255, 0.9);
}

.asset-card span,
.asset-card strong,
.asset-card small {
  position: relative;
  z-index: 1;
  display: block;
}

.asset-card span {
  color: var(--blue-strong);
  font-size: 13px;
  font-weight: 700;
}

.asset-card strong {
  margin-top: 10px;
  font-size: 26px;
  letter-spacing: -0.035em;
}

.asset-card small {
  margin-top: 5px;
  color: #797f8a;
  font-size: 14px;
}

.asset-skill,
.asset-support {
  animation-delay: -1.4s;
}

.asset-skill {
  transform: translateY(34px);
  border-color: rgba(88, 121, 242, 0.18);
  background: rgba(241, 244, 255, 0.86);
}

.asset-library {
  background: rgba(247, 248, 251, 0.82);
  animation-delay: -2.7s;
}

.asset-support {
  transform: translateY(34px);
  background: linear-gradient(145deg, rgba(28, 31, 40, 0.94), rgba(35, 46, 70, 0.9));
}

.asset-support span {
  color: #86a8ff;
}

.asset-support strong {
  color: #ffffff;
}

.asset-support small {
  color: #b7bfce;
}

.final-cta {
  padding-block: 170px;
  text-align: center;
}

.truth-section {
  padding-block: 150px;
}

.truth-grid {
  margin-top: 56px;
  display: grid;
  gap: 10px;
}

.truth-grid article {
  min-height: 170px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  display: grid;
  align-content: end;
  background: rgba(255, 255, 255, 0.035);
}

.truth-grid strong,
.truth-grid span {
  display: block;
}

.truth-grid strong {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.truth-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
}

.truth-note {
  margin: 18px 0 0;
  color: #676d78;
  font-size: 13px;
}

.questions-section {
  background: linear-gradient(145deg, #eef1f8, #f9f9fa);
  color: var(--ink-dark);
}

.questions-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.questions-inner h2 {
  margin: 12px 0 0;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.final-cta .section-title {
  margin-inline: auto;
}

.site-footer {
  width: min(calc(100% - 40px), var(--content));
  min-height: 110px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #656b75;
  font-size: 13px;
}

.site-footer .brand {
  color: #d4d7dc;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 480ms var(--ease), transform 480ms var(--ease);
}

@keyframes selection-march {
  50% { opacity: 0.5; }
}

@keyframes light-breathe {
  to { opacity: 0.7; transform: rotate(21deg) translateX(10px); }
}

@keyframes toast-arrive {
  0%, 12% { opacity: 0; transform: translateY(12px); }
  26%, 82% { opacity: 1; transform: translateY(0); }
  94%, 100% { opacity: 0; transform: translateY(-5px); }
}

@keyframes card-settle {
  to { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(0, 0, 0, 0.3); }
}

@keyframes panel-enter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes face-scan {
  0%, 12% { opacity: 0; transform: translateY(0); }
  24% { opacity: 1; }
  76% { opacity: 0.9; transform: translateY(205px); }
  90%, 100% { opacity: 0; transform: translateY(205px); }
}

@keyframes expand-side-in {
  0%, 12% { opacity: 0.22; transform: scaleX(0.05); }
  30%, 82% { opacity: 0.85; transform: scaleX(1); }
  100% { opacity: 0.3; transform: scaleX(0.1); }
}

@keyframes frame-grade {
  to { filter: saturate(0.54) hue-rotate(12deg); transform: translateY(-4px); }
}

@keyframes node-float {
  to { translate: 0 -7px; }
}

@keyframes core-float {
  to { translate: 0 -9px; }
}

@keyframes ring-turn {
  to { transform: rotateX(70deg) rotateZ(378deg); }
}

@keyframes signal-run {
  0%, 12% { opacity: 0; transform: translateX(-120%); }
  30%, 72% { opacity: 1; }
  92%, 100% { opacity: 0; transform: translateX(340%); }
}

@keyframes asset-float {
  to { translate: 0 -8px; }
}

@media (min-width: 760px) {
  .pain-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .capability-panel {
    grid-template-columns: minmax(330px, 0.82fr) minmax(480px, 1.18fr);
  }

  .memory-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
    align-items: center;
  }

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

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    padding: 0;
    border: 0;
    display: flex;
    align-items: center;
    gap: 3px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-links .nav-cta {
    min-height: 38px;
    margin-left: 8px;
    padding-inline: 17px;
  }
}

@media (max-width: 980px) {
  .ps-workspace {
    min-height: 650px;
    grid-template-columns: 42px minmax(0, 1fr) minmax(295px, 42%);
  }

  .ps-side {
    grid-template-rows: minmax(0, 1fr) 180px;
  }

  .review-preview {
    height: 80px;
  }

  .agent-node {
    width: 195px;
  }

  .intent-node,
  .context-node { left: 4%; }

  .skill-node,
  .engine-node { right: 4%; }
}

@media (max-width: 720px) {
  .section {
    width: min(calc(100% - 28px), var(--content));
    padding-block: 92px;
  }

  .hero {
    padding-top: 118px;
    gap: 48px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .hero-lede {
    font-size: 18px;
  }

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

  .ps-titlebar > span {
    display: none;
  }

  .ps-workspace {
    min-height: 760px;
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .ps-toolbar {
    padding-inline: 7px;
  }

  .ps-side {
    position: absolute;
    width: 72%;
    max-width: 330px;
    height: 670px;
    right: 10px;
    bottom: 10px;
    border: 1px solid #111216;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  }

  .ps-canvas {
    width: 86%;
  }

  .result-toast {
    display: none;
  }

  .pain-grid article {
    min-height: 155px;
  }

  .product-answer {
    margin-bottom: 90px;
  }

  .capability-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .capability-tab {
    flex: 1 0 auto;
  }

  .capability-panel {
    min-height: 760px;
    align-content: start;
  }

  .capability-copy h3 {
    font-size: 50px;
  }

  .real-result-ui {
    min-height: 360px;
  }

  .retouch-result {
    grid-template-columns: 1fr;
  }

  .result-inspector {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 155px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
  }

  .agent-diagram {
    min-height: 820px;
  }

  .agent-node {
    width: 165px;
    min-height: 92px;
    padding: 14px;
  }

  .agent-node strong {
    font-size: 14px;
  }

  .intent-node { top: 75px; left: 12px; }
  .skill-node { top: 75px; right: 12px; }
  .context-node { bottom: 145px; left: 12px; }
  .engine-node { right: 12px; bottom: 145px; }

  .agent-core {
    transform: scale(0.8);
  }

  .asset-stack {
    grid-template-columns: 1fr;
  }

  .asset-skill,
  .asset-support {
    transform: none;
  }

  .site-footer {
    width: calc(100% - 28px);
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 470px) {
  .hero h1 {
    font-size: 50px;
  }

  .button {
    width: 100%;
  }

  .ps-side {
    width: calc(100% - 54px);
  }

  .review-card {
    margin-left: 0;
  }

  .section-title {
    font-size: 48px;
  }

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

  .agent-node {
    width: 145px;
  }

  .agent-node span {
    font-size: 11px;
  }

  .agent-node strong {
    font-size: 13px;
  }

  .agent-core {
    transform: scale(0.68);
  }
}

/* H5 and embedded-browser layout: simplify the desktop simulation instead of squeezing it. */
@media (max-width: 919px) {
  body {
    min-width: 0;
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
  }

  .nav-shell,
  .section,
  .site-footer {
    width: calc(100% - 28px);
  }

  .nav-shell {
    min-height: 64px;
  }

  .hero {
    padding-top: 102px;
    gap: 36px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 62px);
    line-height: 1.04;
  }

  .hero-lede {
    max-width: 34em;
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-actions {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding-inline: 12px;
  }

  .photoshop-stage,
  .ps-window {
    border-radius: 22px;
  }

  .ps-titlebar {
    min-height: 42px;
    padding-inline: 12px;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .ps-titlebar > strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ps-workspace {
    min-height: 0;
    display: block;
  }

  .ps-toolbar,
  .ps-canvas-wrap {
    display: none;
  }

  .ps-side {
    position: static;
    width: 100%;
    max-width: none;
    height: 620px;
    border: 0;
    border-radius: 0;
    grid-template-rows: minmax(0, 1fr) 148px;
    box-shadow: none;
  }

  .panel-head {
    min-height: 58px;
  }

  .chat-stream {
    padding: 14px 12px 12px;
  }

  .review-card {
    margin-left: 0;
  }

  .review-preview {
    height: 86px;
  }

  .layers-dock .layer:last-child {
    display: none;
  }

  .pain-grid article {
    min-height: 0;
  }

  .pain-grid,
  .truth-grid,
  .capability-panel,
  .memory-layout {
    grid-template-columns: 1fr;
  }

  .product-answer {
    margin-bottom: 76px;
    padding: 20px;
    display: grid;
    align-items: start;
  }

  .product-answer strong {
    font-size: 18px;
    line-height: 1.55;
  }

  .section-title {
    font-size: clamp(44px, 13vw, 58px);
    line-height: 1.08;
  }

  .capability-tabs {
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .capability-tabs::-webkit-scrollbar {
    display: none;
  }

  .capability-panel {
    min-height: 0;
    padding: 28px 18px 18px;
    gap: 26px;
  }

  .capability-copy h3 {
    font-size: clamp(40px, 12vw, 50px);
  }

  .capability-copy p {
    margin-top: 18px;
    font-size: 16px;
  }

  .real-result-ui {
    min-height: 320px;
    border-radius: 20px;
  }

  .agent-section {
    padding-block: 84px;
  }

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

  .agent-diagram {
    min-height: 0;
    margin-top: 42px;
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    border-radius: 24px;
    perspective: none;
  }

  .agent-floor,
  .signal-line {
    display: none;
  }

  .agent-node,
  .output-node {
    position: relative;
    width: auto;
    min-height: 92px;
    inset: auto;
    padding: 14px;
    transform: none;
    animation: none;
  }

  .agent-node span,
  .output-node span {
    font-size: 11px;
  }

  .agent-node strong,
  .output-node strong {
    font-size: 14px;
  }

  .agent-core {
    position: relative;
    width: 220px;
    height: 220px;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    justify-self: center;
    transform: scale(0.78);
  }

  .output-node {
    grid-column: 1 / -1;
  }

  .asset-card {
    min-height: 180px;
  }

  .truth-section {
    padding-block: 92px;
  }

  .truth-grid {
    margin-top: 40px;
  }

  .truth-grid article {
    min-height: 140px;
  }

  .questions-inner {
    display: grid;
  }

  .questions-inner h2 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .questions-inner .button {
    width: 100%;
  }

  .final-cta {
    padding-block: 108px;
  }

  .site-footer {
    min-height: 96px;
  }

  .reveal-ready,
  .reveal-ready.is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 390px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .ps-side {
    height: 600px;
  }
}

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

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

  .reveal-ready,
  .reveal-ready.is-visible {
    opacity: 1;
    transform: none;
  }
}
