:root {
  color-scheme: dark;
  --bg: #050713;
  --ink: #f8fbff;
  --muted: #aab5cf;
  --soft: rgba(255,255,255,.075);
  --soft-strong: rgba(255,255,255,.14);
  --line: rgba(255,255,255,.14);
  --blue: #63d7ff;
  --violet: #9d7cff;
  --mint: #75f8c3;
  --pink: #ff73d4;
  --dark-card: rgba(8, 12, 27, .72);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --section-gap: 56px;
  --section-gap-mobile: 34px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -20%, rgba(69, 101, 255, .34), transparent 38%),
    radial-gradient(circle at 20% 18%, rgba(99, 215, 255, .16), transparent 28%),
    var(--bg);
}
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.62; }
h1, h2, h3, p { margin-top: 0; }

.noise {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: .32;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at top, black, transparent 76%);
}
.page-shell {
  position: relative;
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0 80px;
}
.orb {
  position: fixed;
  z-index: -2;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  filter: blur(68px);
  opacity: .42;
  animation: orbFloat 10s ease-in-out infinite alternate;
}
.orb-blue { top: 70px; left: -180px; background: var(--blue); }
.orb-violet { right: -180px; top: 340px; background: var(--violet); animation-delay: -4s; }
.orb-mint { left: 28%; bottom: -220px; background: var(--mint); opacity: .22; animation-delay: -7s; }

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 11, 24, .66);
  backdrop-filter: blur(24px) saturate(150%);
  box-shadow: 0 24px 90px rgba(0,0,0,.3);
}
.brand, .desktop-nav, .hero-actions, .results, .device-toolbar, .agent-head, .artifact-grid, .timeline div {
  display: flex;
  align-items: center;
}
.brand { gap: 10px; font-weight: 900; letter-spacing: -.03em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 15px;
  color: #06101f;
  background: linear-gradient(135deg, #fff, var(--blue) 45%, var(--violet));
  box-shadow: 0 12px 36px rgba(99, 215, 255, .26);
}
.desktop-nav { gap: 22px; color: var(--muted); font-size: 14px; font-weight: 700; }
.desktop-nav a:hover { color: var(--ink); }
.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
}

.hero {
  min-height: 780px;
  padding: 84px 0 58px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(99,215,255,.3);
  background: rgba(99,215,255,.09);
  color: #c7f1ff;
  font-size: 13px;
  font-weight: 900;
}
h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: .93;
  letter-spacing: -.078em;
}
h2 {
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: .98;
  letter-spacing: -.06em;
}
h3 { letter-spacing: -.035em; }
.hero-lead {
  max-width: 760px;
  font-size: clamp(18px, 2vw, 22px);
}
.hero-actions { gap: 14px; flex-wrap: wrap; margin: 34px 0; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary {
  color: #06101f;
  background: linear-gradient(135deg, #fff, #baf0ff 42%, #b89fff);
  box-shadow: 0 24px 70px rgba(99,215,255,.25);
}
.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.08); }
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
}
.metric-row div {
  min-height: 118px;
  padding: 18px 16px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.065);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.metric-row strong { display: block; min-height: 54px; font-size: 22px; line-height: 1.1; letter-spacing: -.04em; }
.metric-row span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.35; }

.hero-visual { justify-self: center; perspective: 1200px; }
.glass-device {
  position: relative;
  width: min(455px, 88vw);
  padding: 20px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 46px;
  background: linear-gradient(155deg, rgba(255,255,255,.18), rgba(255,255,255,.055));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.32), 0 50px 120px rgba(0,0,0,.45);
  backdrop-filter: blur(28px) saturate(155%);
  transform: rotateY(-8deg) rotateX(5deg);
  animation: deviceFloat 5s ease-in-out infinite alternate;
}
.device-toolbar { gap: 7px; padding: 8px 8px 20px; color: var(--muted); font-size: 12px; }
.device-toolbar span { width: 9px; height: 9px; border-radius: 99px; background: rgba(255,255,255,.3); }
.device-toolbar b { margin-left: auto; font-weight: 800; }
.device-toolbar em {
  padding: 5px 8px;
  border-radius: 999px;
  color: #dce7ff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
}
.chat-card, .agent-panel, .outcome-panel {
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(5,7,18,.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.chat-card { padding: 18px; border-radius: 24px; }
.chat-card small, .agent-head small { color: var(--muted); }
.chat-card p { margin: 8px 0 0; color: #e9eeff; }
.agent-panel {
  margin-top: 14px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(99,215,255,.18), rgba(157,124,255,.16));
}
.agent-head { gap: 12px; }
.agent-head strong, .agent-head small { display: block; }
.pulse { width: 14px; height: 14px; border-radius: 99px; background: var(--mint); box-shadow: 0 0 28px var(--mint); animation: pulse 1.8s ease infinite; }
.run-list { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.run-list li { color: #dfe7ff; padding-left: 28px; position: relative; }
.run-list li::before { content: "•"; position: absolute; left: 7px; color: var(--blue); }
.run-list .done::before { content: "✓"; color: var(--mint); }
.outcome-panel {
  position: relative;
  margin-top: 16px;
  padding: 14px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 0%, rgba(117,248,195,.20), transparent 36%),
    radial-gradient(circle at 92% 16%, rgba(99,215,255,.18), transparent 34%),
    rgba(255,255,255,.06);
}
.outcome-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.13), transparent 38%, rgba(255,255,255,.07));
}
.outcome-title {
  position: relative;
  margin: 2px 4px 12px;
  color: #f3f8ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  opacity: .9;
}
.artifact-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.artifact-grid span {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-areas: "icon title" "icon note";
  align-items: center;
  min-height: 68px;
  padding: 12px;
  border-radius: 20px;
  color: #f4f8ff;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.055));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 16px 34px rgba(0,0,0,.16);
}
.artifact-grid i {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 12px;
  color: #071220;
  background: linear-gradient(135deg, #ffffff, #baf0ff 48%, #a990ff);
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(99,215,255,.22);
}
.artifact-grid b { grid-area: title; font-size: 14px; letter-spacing: -.02em; }
.artifact-grid small { grid-area: note; color: #aebbd4; font-size: 11px; margin-top: 2px; }

.execution-demo {
  min-height: 570px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(99,215,255,.18), transparent 32%),
    radial-gradient(circle at 88% 72%, rgba(117,248,195,.13), transparent 34%),
    linear-gradient(155deg, rgba(255,255,255,.16), rgba(255,255,255,.055));
}
.execution-demo::after {
  content: "";
  position: absolute;
  inset: 70px 18px 18px;
  border-radius: 34px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
}
.chat-scene, .process-scene {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 70px;
  z-index: 2;
}
.chat-date {
  width: fit-content;
  margin: 0 auto 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #c9d5ef;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  font-weight: 800;
}
.message { display: flex; align-items: flex-end; gap: 10px; }
.avatar {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  height: 34px;
  border-radius: 14px;
  color: #071220;
  background: linear-gradient(135deg, #ffffff, #baf0ff 48%, #a990ff);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(99,215,255,.2);
}
.avatar.ai { color: #07160f; background: linear-gradient(135deg, #ffffff, #c9ffe5 48%, #75f8c3); }
.avatar.dev { color: #0b1020; background: linear-gradient(135deg, #fff, #d8e2ff 48%, #9d7cff); }
.avatar.owner { color: #071220; background: linear-gradient(135deg, #fff, #ffd6f1 48%, #ff73d4); }
.bubble {
  max-width: 355px;
  padding: 16px;
  border-radius: 22px 22px 22px 8px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7,12,27,.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 18px 38px rgba(0,0,0,.22);
}
.bubble small { display: block; color: #93a3c3; font-weight: 800; margin-bottom: 7px; }
.bubble p { margin: 0; color: #edf4ff; line-height: 1.45; }
.bubble a { color: var(--blue); font-weight: 900; }
.ai-bubble {
  border-radius: 22px 22px 8px 22px;
  background: linear-gradient(145deg, rgba(99,215,255,.17), rgba(117,248,195,.1));
}
.dev-message, .owner-message {
  position: relative;
  margin-top: 18px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.dev-message { animation: devMessageIn 42s ease-in-out infinite; }
.owner-message { animation: ownerMessageIn 42s ease-in-out infinite; }
.dev-bubble { background: linear-gradient(145deg, rgba(157,124,255,.17), rgba(99,215,255,.1)); }
.owner-bubble { background: linear-gradient(145deg, rgba(255,115,212,.16), rgba(117,248,195,.1)); }
.chat-finish .chat-date { animation: finalScroll 42s ease-in-out infinite; }
.chat-finish .ai-message { transform: translateY(0); animation: finalScroll 42s ease-in-out infinite; }
.chat-start { animation: chatStart 42s ease-in-out infinite; }
.process-scene {
  opacity: 0;
  transform: translateY(26px) scale(.96);
  animation: processReveal 42s ease-in-out infinite;
}
.chat-finish {
  min-height: 500px;
  padding-top: 12px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0, #000 18px, #000 calc(100% - 10px), transparent 100%);
  opacity: 0;
  transform: translateY(26px) scale(.96);
  animation: chatFinish 42s ease-in-out infinite;
}
.process-head {
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(145deg, rgba(99,215,255,.18), rgba(157,124,255,.14));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.execution-steps {
  position: relative;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.execution-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 18px;
  color: #dce7ff;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(5,7,18,.42);
  opacity: .38;
  transform: translateX(-10px);
}
.execution-steps li span {
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
}
.execution-steps li span::after {
  content: "✓";
  color: #07160f;
  font-size: 14px;
  font-weight: 900;
  opacity: 0;
  transform: scale(.5);
}
.execution-steps li b { font-size: 13px; letter-spacing: -.01em; }
.execution-steps li:nth-child(1) { animation: stepOne 42s ease-in-out infinite; }
.execution-steps li:nth-child(2) { animation: stepTwo 42s ease-in-out infinite; }
.execution-steps li:nth-child(3) { animation: stepThree 42s ease-in-out infinite; }
.execution-steps li:nth-child(4) { animation: stepFour 42s ease-in-out infinite; }
.execution-steps li:nth-child(5) { animation: stepFive 42s ease-in-out infinite; }
.execution-steps li:nth-child(1) span { animation: checkBgOne 42s ease-in-out infinite; }
.execution-steps li:nth-child(2) span { animation: checkBgTwo 42s ease-in-out infinite; }
.execution-steps li:nth-child(3) span { animation: checkBgThree 42s ease-in-out infinite; }
.execution-steps li:nth-child(4) span { animation: checkBgFour 42s ease-in-out infinite; }
.execution-steps li:nth-child(5) span { animation: checkBgFive 42s ease-in-out infinite; }
.execution-steps li:nth-child(1) span::after { animation: checkOne 42s ease-in-out infinite; }
.execution-steps li:nth-child(2) span::after { animation: checkTwo 42s ease-in-out infinite; }
.execution-steps li:nth-child(3) span::after { animation: checkThree 42s ease-in-out infinite; }
.execution-steps li:nth-child(4) span::after { animation: checkFour 42s ease-in-out infinite; }
.execution-steps li:nth-child(5) span::after { animation: checkFive 42s ease-in-out infinite; }
.summary-list { display: grid; gap: 8px; margin-top: 13px; }
.summary-list span {
  position: relative;
  padding-left: 22px;
  color: #dce8ff;
  font-size: 12px;
  line-height: 1.35;
}
.summary-list span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--mint);
  font-weight: 900;
}

.final-outcome {
  position: absolute;
  left: 0;
  right: 0;
  top: 305px;
  margin-top: 0;
  padding: 12px;
  border-radius: 24px;
  opacity: 0;
  overflow: hidden;
  transform: translate3d(0, 10px, 0) scale(.985);
  transform-origin: top center;
  backface-visibility: hidden;
  will-change: opacity, transform;
  pointer-events: none;
  animation: outcomeIn 42s ease-in-out infinite;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 18px 42px rgba(0,0,0,.2);
}
.final-outcome .outcome-title {
  margin-bottom: 10px;
  font-size: 11px;
}
.final-outcome .outcome-title, .final-outcome .artifact-grid {
  opacity: 0;
  animation: outcomeContentIn 42s ease-in-out infinite;
}
.final-outcome .artifact-grid {
  gap: 8px;
}
.final-outcome .artifact-grid span {
  min-height: 54px;
  padding: 9px;
  border-radius: 17px;
  grid-template-columns: 28px 1fr;
}
.final-outcome .artifact-grid i {
  width: 23px;
  height: 23px;
  border-radius: 10px;
  font-size: 12px;
}
.final-outcome .artifact-grid b { font-size: 12px; }
.final-outcome .artifact-grid small { font-size: 10px; }
@keyframes chatStart {
  0%, 7% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  12%, 100% { opacity: 0; transform: translateY(-18px) scale(.96); filter: blur(7px); }
}
@keyframes processReveal {
  0%, 8% { opacity: 0; transform: translateY(22px) scale(.97); filter: blur(7px); }
  12%, 34% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  41%, 100% { opacity: 0; transform: translateY(-18px) scale(.97); filter: blur(7px); }
}
@keyframes chatFinish {
  0%, 34% { opacity: 0; transform: translateY(22px) scale(.97); filter: blur(7px); }
  42%, 98.8% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  100% { opacity: 0; transform: translateY(-8px) scale(.98); filter: blur(5px); }
}
@keyframes outcomeContentIn {
  0%, 51% { opacity: 1; }
  55%, 62% { opacity: 1; }
  67%, 100% { opacity: 1; }
}
@keyframes outcomeIn {
  0%, 51% { opacity: 0; transform: translate3d(0, 10px, 0) scale(.985); }
  55%, 62% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  67%, 100% { opacity: 0; transform: translate3d(0, -8px, 0) scale(.985); }
}
@keyframes devMessageIn {
  0%, 75% { opacity: 0; transform: translateY(12px); }
  80%, 98.8% { opacity: 1; transform: translateY(-96px); }
  100% { opacity: 0; transform: translateY(-108px); }
}
@keyframes ownerMessageIn {
  0%, 81% { opacity: 0; transform: translateY(12px); }
  86%, 98.8% { opacity: 1; transform: translateY(-96px); }
  100% { opacity: 0; transform: translateY(-108px); }
}
@keyframes finalScroll {
  0%, 68% { transform: translateY(0); opacity: 1; }
  75%, 98.8% { transform: translateY(-96px); opacity: 1; }
  100% { transform: translateY(-108px); opacity: 0; }
}
@keyframes stepOne { 0%,12%,100%{opacity:.38;transform:translateX(-10px)} 14%,34%{opacity:1;transform:translateX(0);border-color:rgba(117,248,195,.24);background:rgba(117,248,195,.08)} 36%,99%{opacity:.55;transform:translateX(0)} }
@keyframes stepTwo { 0%,16%,100%{opacity:.38;transform:translateX(-10px)} 18%,34%{opacity:1;transform:translateX(0);border-color:rgba(117,248,195,.24);background:rgba(117,248,195,.08)} 36%,99%{opacity:.55;transform:translateX(0)} }
@keyframes stepThree { 0%,20%,100%{opacity:.38;transform:translateX(-10px)} 22%,34%{opacity:1;transform:translateX(0);border-color:rgba(117,248,195,.24);background:rgba(117,248,195,.08)} 36%,99%{opacity:.55;transform:translateX(0)} }
@keyframes stepFour { 0%,24%,100%{opacity:.38;transform:translateX(-10px)} 26%,34%{opacity:1;transform:translateX(0);border-color:rgba(117,248,195,.24);background:rgba(117,248,195,.08)} 36%,99%{opacity:.55;transform:translateX(0)} }
@keyframes stepFive { 0%,28%,100%{opacity:.38;transform:translateX(-10px)} 30%,34%{opacity:1;transform:translateX(0);border-color:rgba(117,248,195,.24);background:rgba(117,248,195,.08)} 36%,99%{opacity:.55;transform:translateX(0)} }
@keyframes checkOne { 0%,12%,100%{opacity:0;transform:scale(.5)} 14%,99%{opacity:1;transform:scale(1)} }
@keyframes checkTwo { 0%,16%,100%{opacity:0;transform:scale(.5)} 18%,99%{opacity:1;transform:scale(1)} }
@keyframes checkThree { 0%,20%,100%{opacity:0;transform:scale(.5)} 22%,99%{opacity:1;transform:scale(1)} }
@keyframes checkFour { 0%,24%,100%{opacity:0;transform:scale(.5)} 26%,99%{opacity:1;transform:scale(1)} }
@keyframes checkFive { 0%,28%,100%{opacity:0;transform:scale(.5)} 30%,99%{opacity:1;transform:scale(1)} }
@keyframes checkBgOne { 0%,12%,100%{background:rgba(255,255,255,.08);box-shadow:none} 14%,99%{background:var(--mint);box-shadow:0 0 22px rgba(117,248,195,.32);border-color:rgba(117,248,195,.6)} }
@keyframes checkBgTwo { 0%,16%,100%{background:rgba(255,255,255,.08);box-shadow:none} 18%,99%{background:var(--mint);box-shadow:0 0 22px rgba(117,248,195,.32);border-color:rgba(117,248,195,.6)} }
@keyframes checkBgThree { 0%,20%,100%{background:rgba(255,255,255,.08);box-shadow:none} 22%,99%{background:var(--mint);box-shadow:0 0 22px rgba(117,248,195,.32);border-color:rgba(117,248,195,.6)} }
@keyframes checkBgFour { 0%,24%,100%{background:rgba(255,255,255,.08);box-shadow:none} 26%,99%{background:var(--mint);box-shadow:0 0 22px rgba(117,248,195,.32);border-color:rgba(117,248,195,.6)} }
@keyframes checkBgFive { 0%,28%,100%{background:rgba(255,255,255,.08);box-shadow:none} 30%,99%{background:var(--mint);box-shadow:0 0 22px rgba(117,248,195,.32);border-color:rgba(117,248,195,.6)} }
@media (prefers-reduced-motion: reduce) {
  .chat-start, .process-scene, .chat-finish, .execution-steps li, .execution-steps li span, .execution-steps li span::after { animation: none; }
  .chat-start { opacity: 0; }
  .process-scene { opacity: 1; transform: none; }
}

.results {
  display: block;
  margin: 0 0 82px;
  padding: 24px 18px 20px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.06);
  text-align: center;
}
.results-heading {
  max-width: 720px;
  margin: 0 auto 18px;
}
.results-heading strong {
  display: block;
  color: #f4f8ff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.results-heading p {
  max-width: 620px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.results-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.results-tags span { padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.075); color: #d9e2ff; font-weight: 800; font-size: 14px; }
.section-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 46px; align-items: center; }
.glass-section { margin-top: var(--section-gap); margin-bottom: var(--section-gap); }
.problem, .benefits, .cases, .workflow, .roi { padding: 74px 0; }
.ai-purpose, .workmate, .project-brain, .project-spaces, .proof, .comparison, .security, .pilot { padding: 34px; }
.section-heading p { max-width: 660px; font-size: 18px; }
.before-after { display: grid; gap: 14px; }
.before-after article, .benefit-card, .ai-purpose, .workmate, .workmate-grid article, .project-brain, .project-memory-grid article, .project-spaces, .project-spaces-grid article, .project-spaces-note, .case-card, .proof, .timeline div, .security-list article, .roi-grid div, .comparison, .pilot {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.13);
}
.before-after article { padding: 24px; border-radius: 28px; }
.before-after b { display: block; margin-bottom: 8px; font-size: 18px; }
.before-after .highlight { background: linear-gradient(135deg, rgba(99,215,255,.16), rgba(157,124,255,.13)); }
.before-after p { margin-bottom: 0; }
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-card { min-height: 250px; padding: 26px; border-radius: var(--radius-xl); }
.benefit-card span { display: inline-flex; margin-bottom: 48px; color: var(--mint); font-weight: 900; }
.benefit-card h3 { margin-bottom: 12px; font-size: 25px; }
.benefit-card p { margin-bottom: 0; }
.ai-purpose {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 10% 0%, rgba(117,248,195,.14), transparent 34%),
    linear-gradient(135deg, rgba(99,215,255,.12), rgba(157,124,255,.11));
}
.ai-purpose h2 { max-width: 760px; margin-bottom: 16px; }
.ai-purpose p { max-width: 820px; margin-bottom: 0; font-size: 18px; }
.purpose-metrics { display: grid; gap: 12px; }
.purpose-metrics span {
  display: block;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
}
.purpose-metrics b { display: block; font-size: 24px; letter-spacing: -.04em; }
.purpose-metrics small { display: block; margin-top: 7px; color: var(--muted); line-height: 1.35; }
.workmate {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
  column-gap: 28px;
  row-gap: 30px;
  padding: 34px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 85% 0%, rgba(99,215,255,.18), transparent 34%),
    radial-gradient(circle at 5% 100%, rgba(117,248,195,.14), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
}
.workmate-copy h2 { max-width: 820px; margin-bottom: 16px; }
.workmate-copy p { max-width: 850px; margin-bottom: 0; font-size: 18px; }
.workmate-panel {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(5,7,18,.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 24px 60px rgba(0,0,0,.22);
}
.workmate-panel::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto;
  height: 160px;
  background: radial-gradient(circle, rgba(99,215,255,.28), transparent 62%);
  filter: blur(8px);
}
.workmate-chat { position: relative; display: grid; gap: 10px; }
.workmate-chat span {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  color: #dce7ff;
  background: rgba(255,255,255,.09);
  font-size: 12px;
  font-weight: 900;
}
.workmate-chat article {
  padding: 14px;
  border-radius: 20px 20px 20px 8px;
  color: #eef5ff;
  background: linear-gradient(145deg, rgba(99,215,255,.17), rgba(157,124,255,.11));
  border: 1px solid rgba(255,255,255,.14);
  line-height: 1.45;
}
.workmate-chat .reply {
  margin-left: 28px;
  border-radius: 20px 20px 8px 20px;
  background: linear-gradient(145deg, rgba(117,248,195,.14), rgba(99,215,255,.1));
}
.workmate-actions { position: relative; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.workmate-actions span {
  padding: 9px 11px;
  border-radius: 999px;
  color: #d9e5ff;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  font-weight: 850;
}
.workmate-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 10px;
}
.workmate-grid article { padding: 20px; border-radius: 28px; background: rgba(255,255,255,.055); }
.workmate-grid i {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 15px;
  color: #071220;
  background: linear-gradient(135deg, #fff, #baf0ff 50%, #a990ff);
  font-style: normal;
  font-weight: 950;
}
.workmate-grid h3 { margin-bottom: 10px; font-size: 20px; }
.workmate-grid p { margin-bottom: 0; color: var(--muted); line-height: 1.5; }
.project-brain {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 26px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 85% 12%, rgba(157,124,255,.2), transparent 35%),
    radial-gradient(circle at 12% 88%, rgba(99,215,255,.13), transparent 34%),
    linear-gradient(140deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
}
.project-brain-copy h2 { max-width: 860px; margin-bottom: 16px; }
.project-brain-copy p { max-width: 900px; margin-bottom: 0; font-size: 18px; }
.project-brain-flow {
  position: relative;
  min-height: 300px;
  display: grid;
  gap: 12px;
  padding: 18px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(5,7,18,.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 24px 60px rgba(0,0,0,.24);
}
.project-brain-flow::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(99,215,255,.18), transparent 58%);
  filter: blur(6px);
}
.project-brain-flow div {
  position: relative;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.065);
}
.project-brain-flow span, .project-brain-flow b { display: block; }
.project-brain-flow span { margin-bottom: 6px; color: #aebbd4; font-size: 12px; font-weight: 850; }
.project-brain-flow b { color: #eef5ff; font-size: 14px; letter-spacing: -.02em; }
.project-brain-flow .brain-center {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 98px;
  text-align: center;
  background: linear-gradient(145deg, rgba(99,215,255,.2), rgba(157,124,255,.16));
  border-color: rgba(99,215,255,.28);
}
.brain-center i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 20px;
  color: #071220;
  background: radial-gradient(circle at 30% 22%, #fff, #c9f4ff 44%, #a990ff 100%);
  font-style: normal;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(99,215,255,.26), inset 0 1px 0 rgba(255,255,255,.72);
  animation: brainFloat 4.8s ease-in-out infinite;
}
.brain-icon svg { width: 34px; height: 34px; overflow: visible; }
.brain-line, .brain-spark {
  fill: none;
  stroke: #071220;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brain-spark {
  opacity: .72;
  stroke-dasharray: 28;
  animation: brainPulse 4.8s ease-in-out infinite;
}
.brain-center strong { max-width: 180px; line-height: 1.15; letter-spacing: -.035em; }
@keyframes brainFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes brainPulse { 0%,100% { opacity: .55; stroke-dashoffset: 0; } 50% { opacity: 1; stroke-dashoffset: -10; } }
.project-memory-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.project-memory-grid article { padding: 20px; border-radius: 28px; background: rgba(255,255,255,.055); }
.project-memory-grid i {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 15px;
  color: #071220;
  background: linear-gradient(135deg, #fff, #d9e2ff 48%, #75f8c3);
  font-style: normal;
  font-weight: 950;
}
.project-memory-grid h3 { margin-bottom: 10px; font-size: 20px; }
.project-memory-grid p { margin-bottom: 0; color: var(--muted); line-height: 1.5; }
.project-spaces {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 26px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 90% 18%, rgba(99,215,255,.2), transparent 34%),
    radial-gradient(circle at 10% 95%, rgba(255,115,212,.12), transparent 34%),
    linear-gradient(140deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
}
.project-spaces-copy h2 { max-width: 880px; margin-bottom: 16px; }
.project-spaces-copy p { max-width: 920px; margin-bottom: 0; font-size: 18px; }
.project-switcher {
  position: relative;
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 310px;
  padding: 18px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(5,7,18,.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 24px 60px rgba(0,0,0,.24);
}
.project-switcher::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto;
  height: 180px;
  background: radial-gradient(circle, rgba(99,215,255,.24), transparent 64%);
  filter: blur(8px);
}
.switcher-top { position: relative; display: flex; align-items: center; gap: 7px; color: #aebbd4; font-size: 12px; font-weight: 850; }
.switcher-top span { width: 9px; height: 9px; border-radius: 99px; background: rgba(255,255,255,.2); }
.switcher-top span:first-child { background: var(--pink); }
.switcher-top span:nth-child(2) { background: var(--blue); }
.switcher-top span:nth-child(3) { background: var(--mint); }
.project-switcher article {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.065);
}
.project-switcher article.active {
  border-color: rgba(99,215,255,.35);
  background: linear-gradient(145deg, rgba(99,215,255,.18), rgba(157,124,255,.14));
  box-shadow: 0 18px 40px rgba(99,215,255,.1);
}
.project-switcher i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: #071220;
  background: linear-gradient(135deg, #fff, #baf0ff 52%, #75f8c3);
  font-style: normal;
  font-weight: 950;
}
.project-switcher b, .project-switcher small { display: block; }
.project-switcher b { color: #eef5ff; letter-spacing: -.025em; }
.project-switcher small { margin-top: 5px; color: #aebbd4; line-height: 1.35; }
.project-spaces-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.project-spaces-grid article { padding: 20px; border-radius: 28px; background: rgba(255,255,255,.055); }
.project-spaces-grid span { display: inline-flex; margin-bottom: 24px; color: var(--blue); font-weight: 950; }
.project-spaces-grid h3 { margin-bottom: 10px; font-size: 20px; }
.project-spaces-grid p { margin-bottom: 0; color: var(--muted); line-height: 1.5; }
.project-spaces-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(99,215,255,.14), rgba(117,248,195,.1));
}
.project-spaces-note b { flex: 0 0 auto; font-size: 20px; letter-spacing: -.035em; }
.project-spaces-note span { color: var(--muted); line-height: 1.5; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.case-card { min-height: 300px; padding: 26px; border-radius: var(--radius-xl); }
.case-index { display: inline-flex; margin-bottom: 58px; color: var(--blue); font-weight: 900; }
.case-card h3 { margin-bottom: 12px; font-size: 24px; }
.case-card p { margin-bottom: 0; }
.proof {
  padding: 34px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 8% 0%, rgba(117,248,195,.13), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(99,215,255,.13), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.04));
}
.proof > div:first-child p { max-width: 860px; margin-bottom: 0; font-size: 18px; }
.proof-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 26px; }
.proof-grid article { padding: 18px; border-radius: 24px; background: rgba(255,255,255,.06); border: 1px solid var(--line); }
.proof-grid b { display: block; min-height: 48px; margin-bottom: 14px; font-size: 18px; letter-spacing: -.035em; }
.proof-grid p { margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.proof-time {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(99,215,255,.13), rgba(117,248,195,.08));
  border: 1px solid rgba(255,255,255,.1);
}
.proof-time span, .proof-time strong { display: block; font-size: 12px; line-height: 1.15; }
.proof-time span { color: #96a4c0; text-decoration: line-through; }
.proof-time i { color: var(--mint); font-style: normal; font-weight: 950; }
.proof-time strong { color: #eafff7; font-weight: 950; }
.workflow { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.timeline { display: grid; gap: 12px; }
.timeline div { gap: 16px; padding: 18px; border-radius: 24px; }
.timeline b { display: grid; place-items: center; flex: 0 0 42px; height: 42px; border-radius: 16px; color: var(--blue); background: rgba(99,215,255,.13); }
.timeline span { color: var(--muted); line-height: 1.5; }
.comparison { padding: 34px; border-radius: 42px; }
.compact h2 { margin-bottom: 0; }
.compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.compare-grid article { padding: 20px; border-radius: 24px; background: rgba(255,255,255,.06); border: 1px solid var(--line); }
.compare-grid .selected { background: linear-gradient(135deg, rgba(99,215,255,.18), rgba(117,248,195,.1)); border-color: rgba(99,215,255,.34); }
.compare-grid b, .compare-grid span { display: block; }
.compare-grid span { margin-top: 10px; color: var(--muted); line-height: 1.45; }
.security {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  padding: 34px;
  border-radius: 46px;
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.13);
  background:
    radial-gradient(circle at 92% 8%, rgba(117,248,195,.18), transparent 34%),
    radial-gradient(circle at 12% 92%, rgba(99,215,255,.12), transparent 34%),
    linear-gradient(140deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
}
.security-copy h2 { max-width: 820px; margin-bottom: 16px; }
.security-copy p { max-width: 880px; margin-bottom: 0; font-size: 18px; }
.security-vault {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(5,7,18,.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 24px 60px rgba(0,0,0,.24);
}
.vault-orbit {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  border: 1px solid rgba(117,248,195,.22);
  background:
    radial-gradient(circle, rgba(117,248,195,.18), transparent 56%),
    conic-gradient(from 120deg, transparent, rgba(99,215,255,.45), transparent, rgba(117,248,195,.35), transparent);
  filter: drop-shadow(0 0 32px rgba(99,215,255,.14));
  animation: vaultSpin 9s linear infinite;
}
.vault-core {
  position: relative;
  width: 178px;
  min-height: 154px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  padding: 22px;
  border-radius: 34px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(145deg, rgba(99,215,255,.18), rgba(117,248,195,.12));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 20px 60px rgba(0,0,0,.28);
}
.vault-core span {
  padding: 8px 13px;
  border-radius: 999px;
  color: #07160f;
  background: linear-gradient(135deg, #fff, #c9ffe5 52%, #75f8c3);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: .08em;
}
.vault-core b { font-size: 20px; letter-spacing: -.035em; }
.vault-core small { max-width: 130px; color: #b9c8e3; line-height: 1.35; }
.security-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.security-list article { padding: 22px; border-radius: 26px; }
.security-list span { display: inline-flex; margin-bottom: 28px; color: var(--mint); font-weight: 950; }
.security-list h3 { margin-bottom: 8px; font-size: 21px; }
.security-list p { margin-bottom: 0; }
@keyframes vaultSpin { to { transform: rotate(360deg); } }
.roi {
  border-bottom: 1px solid var(--line);
}
.roi h2 { max-width: 850px; }
.roi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.roi-grid div { padding: 24px; border-radius: 28px; }
.roi-grid b { display: block; margin-bottom: 10px; font-size: 20px; }
.roi-grid p { margin-bottom: 0; }
.pilot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 36px;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(99,215,255,.19), rgba(157,124,255,.18));
}
.pilot p { max-width: 780px; margin-bottom: 0; font-size: 18px; }
.pilot .button { flex: 0 0 auto; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s ease, transform .72s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .11s; }
.delay-2 { transition-delay: .2s; }

@keyframes orbFloat { to { transform: translate3d(48px, -28px, 0) scale(1.08); } }
@keyframes deviceFloat { to { transform: rotateY(-3deg) rotateX(2deg) translateY(-12px); } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.35); opacity: .55; } }

@media (max-width: 940px) {
  .desktop-nav { display: none; }
  .hero, .section-grid, .benefits, .ai-purpose, .workmate, .workmate-grid, .project-brain, .project-memory-grid, .project-spaces, .project-spaces-grid, .case-grid, .proof-grid, .compare-grid, .security, .security-list, .roi-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 58px; }
  .glass-device { transform: none; }
  .pilot { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 560px) {
  .page-shell { width: min(100% - 24px, 1200px); padding-top: 12px; }
  .site-header { top: 10px; border-radius: 24px; }
  .header-cta { display: none; }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .metric-row { display: grid; grid-template-columns: 1fr; }
  .hero-visual { width: 100%; margin-left: 0; display: flex; justify-content: center; padding: 0; }
  .glass-device {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    padding: 12px 12px 16px;
    border-radius: 32px;
    transform: none;
    animation: none;
  }
  .execution-demo { min-height: 640px; }
  .execution-demo:not(.is-animation-ready) .chat-start,
  .execution-demo:not(.is-animation-ready) .process-scene,
  .execution-demo:not(.is-animation-ready) .chat-finish,
  .execution-demo:not(.is-animation-ready) .chat-finish .chat-date,
  .execution-demo:not(.is-animation-ready) .chat-finish .ai-message,
  .execution-demo:not(.is-animation-ready) .dev-message,
  .execution-demo:not(.is-animation-ready) .owner-message,
  .execution-demo:not(.is-animation-ready) .execution-steps li,
  .execution-demo:not(.is-animation-ready) .execution-steps li span,
  .execution-demo:not(.is-animation-ready) .execution-steps li span::after,
  .execution-demo:not(.is-animation-ready) .final-outcome,
  .execution-demo:not(.is-animation-ready) .final-outcome .outcome-title,
  .execution-demo:not(.is-animation-ready) .final-outcome .artifact-grid,
  .execution-demo:not(.is-animation-ready) .pulse {
    animation-play-state: paused;
  }
  .chat-scene, .process-scene { left: 14px; right: 14px; top: 58px; }
  .chat-finish { min-height: 600px; padding-top: 16px; }
  .dev-message, .owner-message { margin-top: 18px; }
  .device-toolbar { padding-bottom: 14px; font-size: 10px; gap: 5px; }
  .device-toolbar b { max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .device-toolbar em { padding: 4px 6px; font-size: 10px; }
  .bubble { max-width: 100%; padding: 13px; }
  .summary-list { gap: 6px; }
  .summary-list span { font-size: 11px; }
  .final-outcome { top: 322px; padding-left: 10px; padding-right: 10px; }
  .final-outcome .artifact-grid { grid-template-columns: 1fr 1fr; gap: 7px; }
  .final-outcome .artifact-grid span { min-height: 48px; padding: 8px; }
  .final-outcome .artifact-grid b { font-size: 11px; }
  .final-outcome .artifact-grid small { font-size: 9px; }
  .execution-steps { gap: 8px; }
  .execution-steps li { min-height: 44px; padding: 10px 11px; border-radius: 16px; }
  .execution-steps li b { font-size: 12px; }
  .artifact-grid { grid-template-columns: 1fr; }
  .outcome-panel { padding: 12px; border-radius: 24px; }
  .problem, .benefits, .cases, .workflow, .roi { padding: 54px 0; }
  .glass-section { margin-top: var(--section-gap-mobile); margin-bottom: var(--section-gap-mobile); }
  .comparison, .ai-purpose, .workmate, .project-brain, .project-spaces, .security, .proof, .pilot { padding: 24px; }
  .proof > div:first-child p { font-size: 16px; }
  .proof-grid article { padding: 18px; border-radius: 24px; }
  .proof-grid b { min-height: auto; }
  .proof-time { grid-template-columns: auto auto 1fr; }
  .security { border-radius: 32px; gap: 18px; }
  .security-copy p { font-size: 16px; }
  .security-vault { min-height: 220px; border-radius: 28px; }
  .security-list article { padding: 18px; border-radius: 24px; }
  .security-list span { margin-bottom: 18px; }
  .workmate { border-radius: 32px; row-gap: 24px; column-gap: 0; }
  .workmate-copy p { font-size: 16px; }
  .workmate-panel { padding: 15px; border-radius: 26px; }
  .workmate-chat .reply { margin-left: 16px; }
  .workmate-grid { gap: 14px; margin-top: 4px; }
  .workmate-grid article { padding: 18px; border-radius: 24px; }
  .workmate-grid i { margin-bottom: 16px; }
  .project-brain { border-radius: 32px; gap: 18px; }
  .project-brain-copy p { font-size: 16px; }
  .project-brain-flow { min-height: auto; padding: 15px; border-radius: 26px; }
  .project-memory-grid { gap: 14px; }
  .project-memory-grid article { padding: 18px; border-radius: 24px; }
  .project-memory-grid i { margin-bottom: 16px; }
  .project-spaces { border-radius: 32px; gap: 18px; }
  .project-spaces-copy p { font-size: 16px; }
  .project-switcher { min-height: auto; padding: 15px; border-radius: 26px; }
  .project-spaces-grid article { padding: 18px; border-radius: 24px; }
  .project-spaces-grid span { margin-bottom: 18px; }
  .project-spaces-note { align-items: flex-start; flex-direction: column; padding: 18px; border-radius: 24px; }
  .case-card { min-height: auto; }
  .case-index { margin-bottom: 34px; }
}
