:root {
  --surface-canvas: #050506;
  --surface-raised: #0b0c0f;
  --surface-panel: #0f1115;
  --surface-panel-active: #14171c;
  --stroke-subtle: rgba(255, 255, 255, 0.06);
  --stroke-default: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-tertiary: #6b6b75;
  --accent-brand: #2997ff;
  --accent-brand-hover: #0071e3;
  --accent-brand-soft: #64d2ff;
  --corner-small: 8px;
  --corner-medium: 14px;
  --corner-large: 22px;
  --corner-xl: 32px;
  --layout-max-width: 1180px;
}

html,
body {
  overflow-x: hidden;
  color: var(--text-primary);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  background: var(--surface-canvas);
}

.landing-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to right, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size:
    72px 72px,
    72px 72px,
    18px 18px,
    18px 18px;
  background-position: center center;
  -webkit-mask-image: radial-gradient(
    ellipse 95% 85% at 50% 45%,
    #000 25%,
    transparent 90%
    );
  mask-image: radial-gradient(
    ellipse 95% 85% at 50% 45%,
    #000 25%,
    transparent 90%
    );
  pointer-events: none;
}

.landing-grid::after {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(100, 210, 255, 0.35) 1px,
    transparent 1.5px
    );
  background-size: 64px 64px;
  background-position: center center;
  -webkit-mask-image: radial-gradient(
    ellipse 60% 50% at 50% 30%,
    #000 0%,
    transparent 80%
    );
  mask-image: radial-gradient(
    ellipse 60% 50% at 50% 30%,
    #000 0%,
    transparent 80%
    );
  opacity: 0.34;
  content: "";
}

.landing-glow {
  position: fixed;
  z-index: 0;
  filter: blur(60px);
  border-radius: 50%;
  pointer-events: none;
}

.landing-glow--top {
  top: -260px;
  left: 50%;
  width: 900px;
  height: 520px;
  background: radial-gradient(
    ellipse,
    rgba(41, 151, 255, 0.22) 0%,
    rgba(41, 151, 255, 0) 70%
    );
  transform: translateX(-50%);
}

.landing-glow--lower-left {
  bottom: -200px;
  left: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(41, 151, 255, 0.14) 0%,
    rgba(41, 151, 255, 0) 65%
    );
}

.landing-pointer-light {
  position: fixed;
  width: 480px;
  height: 480px;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(41, 151, 255, 0.22) 0%,
    rgba(41, 151, 255, 0) 60%
    );
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
}

img,
video {
  max-width: 100%;
}

.layout-shell {
  width: 100%;
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.motion-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.motion-reveal--1 {
  transition-delay: 0.08s;
}

.motion-reveal--2 {
  transition-delay: 0.16s;
}

.motion-reveal--3 {
  transition-delay: 0.24s;
}

.motion-reveal--4 {
  transition-delay: 0.32s;
}

.motion-reveal--5 {
  transition-delay: 0.4s;
}

.ui-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  transition:
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.2s ease,
    box-shadow 0.25s ease;
}

.ui-action--accent {
  color: #fff;
  background: var(--accent-brand);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 8px 24px -8px rgba(41, 151, 255, 0.6);
}

.ui-action--accent::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    120px circle at var(--motion-pointer-x, 50%) var(--motion-pointer-y, 50%),
    rgba(255, 255, 255, 0.35),
    transparent 70%
    );
  opacity: 0;
  content: "";
  transition: opacity 0.25s ease;
}

.ui-action--accent:hover::before {
  opacity: 1;
}

.ui-action--accent:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 14px 36px -10px rgba(41, 151, 255, 0.8);
}

.ui-action--dark {
  color: #fff;
  background: #050506;
  border: 1px solid var(--stroke-default);
}

.ui-action--dark:hover {
  background: #15151a;
}

.ui-action--large {
  padding: 14px 26px;
  font-size: 15px;
}

.ui-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke-subtle);
  border-radius: 999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11, 11, 15, 0.72);
  border-bottom: 1px solid var(--stroke-subtle);
  -webkit-backdrop-filter: blur(12px);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.site-wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.site-wordmark__glyph {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--accent-brand) 0%, #4f37cf 100%);
  box-shadow: 0 4px 14px -4px rgba(41, 151, 255, 0.55);
  transition: transform 0.25s ease;
}

.site-wordmark:hover .site-wordmark__glyph {
  transform: rotate(-8deg) scale(1.06);
}

.site-wordmark__glyph svg {
  width: 14px;
  height: 14px;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-navigation a {
  position: relative;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.15s ease;
}

.site-navigation a::after {
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 0;
  background: var(--accent-brand-soft);
  content: "";
  transition: width 0.25s ease;
}

.site-navigation a:hover {
  color: var(--text-primary);
}

.site-navigation a:hover::after {
  width: 100%;
}

@media (max-width: 760px) {
  .site-navigation {
    display: none;
  }
}

@media (max-width: 520px) {
  .site-header__actions {
    display: none;
  }
}

.landing-intro {
  padding: 88px 0 60px;
  position: relative;
  text-align: center;
}

.landing-intro .ui-label {
  margin-bottom: 22px;
}

.landing-intro h1 {
  max-width: 820px;
  margin: 0 auto 22px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.landing-intro p {
  max-width: 480px;
  margin: 0 auto 28px;
  color: var(--text-secondary);
  font-size: 15px;
}

@media (max-width: 520px) {
  .landing-intro h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .landing-intro p {
    max-width: 100%;
  }
}

.media-panel {
  margin: 56px auto 0;
  width: 100%;
  max-width: 820px;
  overflow: hidden;
  position: relative;
  background: #0d0d11;
  border: 1px solid var(--stroke-subtle);
  border-radius: 18px;
  box-shadow:
    0 40px 100px -40px rgba(41, 151, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.media-panel::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  content: "";
  pointer-events: none;
}

.media-panel :is(video, img) {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0a0a0e;
}

.landing-film video {
  height: auto;
  pointer-events: none;
}

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

section {
  padding: 80px 0;
  position: relative;
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-intro .ui-label {
  margin-bottom: 18px;
}

.section-intro h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.summary-panel {
  padding: 64px 40px;
  position: relative;
  overflow: hidden;
  background: var(--surface-raised);
  border: 1px solid var(--stroke-subtle);
  border-radius: var(--corner-xl);
}

.summary-panel::after,
.summary-panel::before {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  content: "";
  pointer-events: none;
}

.summary-panel::before {
  right: -180px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border-color: rgba(255, 255, 255, 0.03);
}

.metric-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 38px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--stroke-subtle);
  border-radius: var(--corner-large);
}

.metric-cell {
  text-align: center;
  border-right: 1px solid var(--stroke-subtle);
}

.metric-cell:last-child {
  border-right: none;
}

.metric-cell__value {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
}

.metric-cell__label {
  margin-top: 8px;
  color: var(--text-tertiary);
  font-size: 13px;
}

@media (max-width: 640px) {
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .metric-cell {
    padding: 22px 0;
    border-right: none;
    border-bottom: 1px solid var(--stroke-subtle);
  }

  .metric-cell:last-child {
    border-bottom: none;
  }
}

.capability-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.capability-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--corner-large);
  perspective: 1200px;
}

.capability-media .capability-media__front,
.capability-media .capability-media__rear {
  position: absolute;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-media .capability-media__rear {
  top: 8%;
  right: 0;
  width: 50%;
  height: 60%;
  opacity: 0.55;
  filter: grayscale(20%);
  transform: rotate(6deg);
}

.capability-media .capability-media__front {
  top: 12%;
  left: 4%;
  width: 70%;
  height: 75%;
  transform: rotate(-4deg);
}

.capability-media:hover .capability-media__front {
  transform: rotate(-2deg) translateY(-6px);
}

.capability-media:hover .capability-media__rear {
  opacity: 0.75;
  transform: rotate(8deg) translateY(-4px);
}

.capability-layout h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.capability-copy {
  margin-bottom: 26px;
  color: var(--text-secondary);
}

.capability-list {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
  list-style: none;
}

.capability-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  transition: transform 0.25s ease;
}

.capability-list li:hover {
  transform: translateX(4px);
}

.ui-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke-subtle);
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.capability-list li:hover .ui-icon {
  background: rgba(41, 151, 255, 0.12);
  border-color: rgba(41, 151, 255, 0.3);
}

.ui-icon svg {
  width: 16px;
  height: 16px;
  color: var(--accent-brand-soft);
}

@media (max-width: 820px) {
  .capability-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  perspective: 1500px;
}

.audience-card {
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  background: var(--surface-panel);
  border: 1px solid var(--stroke-subtle);
  border-radius: var(--corner-large);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.15s ease-out;
  transform-style: preserve-3d;
}

.audience-card::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    220px circle at var(--motion-pointer-x, 50%) var(--motion-pointer-y, 50%),
    rgba(41, 151, 255, 0.14),
    transparent 60%
    );
  opacity: 0;
  content: "";
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.audience-card:hover::before {
  opacity: 1;
}

.audience-card:hover {
  border-color: rgba(41, 151, 255, 0.25);
  background: var(--surface-panel-active);
}

.audience-card__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke-subtle);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.audience-card:hover .audience-card__icon {
  background: rgba(41, 151, 255, 0.15);
  border-color: rgba(41, 151, 255, 0.4);
  transform: translateZ(20px) scale(1.05);
}

.audience-card__icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent-brand-soft);
}

.audience-card h4 {
  margin-bottom: 12px;
  position: relative;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.audience-card p {
  position: relative;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

.prompt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.prompt-copy .ui-label {
  margin-bottom: 22px;
}

.prompt-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.prompt-copy p {
  margin-bottom: 28px;
  max-width: 380px;
  color: var(--text-secondary);
}

@media (max-width: 820px) {
  .prompt-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--surface-panel);
  border: 1px solid var(--stroke-subtle);
  border-radius: var(--corner-large);
  transition:
    border-color 0.5s ease,
    background 0.5s ease,
    transform 0.4s ease,
    box-shadow 0.5s ease;
}

.testimonial-card.is-highlighted {
  border-color: rgba(41, 151, 255, 0.45);
  background: linear-gradient(
    180deg,
    rgba(41, 151, 255, 0.06),
    var(--surface-panel-active)
    );
  box-shadow: 0 30px 80px -30px rgba(41, 151, 255, 0.4);
  transform: translateY(-4px);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--accent-brand-soft);
}

.testimonial-rating svg {
  width: 14px;
  height: 14px;
}

.testimonial-card p {
  margin-bottom: 22px;
  flex-grow: 1;
  font-size: 14.5px;
  line-height: 1.6;
  color: #d4d4dc;
}

.testimonial-card .testimonial-author {
  font-size: 14px;
  font-weight: 600;
}

.testimonial-card .testimonial-role {
  margin-top: 2px;
  font-size: 13px;
  color: var(--text-tertiary);
}

@media (max-width: 760px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.layout-actions {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.iteration-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.iteration-media {
  aspect-ratio: 3/4;
  padding: 40px 24px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #2997ff 0%, #4a31cc 100%);
  border-radius: 24px;
}

.iteration-media::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 255, 255, 0.18),
    transparent 50%
    );
  content: "";
  pointer-events: none;
}

.iteration-media .iteration-media__image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  background-image: url("../media/images/cad-output-gallery.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.iteration-media:hover .iteration-media__image {
  transform: translateY(-8px) scale(1.02);
}

.iteration-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.iteration-copy > p {
  max-width: 420px;
  margin-bottom: 36px;
  color: var(--text-secondary);
}

.iteration-metrics {
  display: grid;
  gap: 22px;
}

.iteration-metric {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: baseline;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--stroke-subtle);
}

.iteration-metric:last-child {
  border-bottom: none;
}

.iteration-metric__value {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.iteration-metric__label {
  color: var(--text-secondary);
  font-size: 14px;
}

@media (max-width: 820px) {
  .iteration-panel {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.maker-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  padding-top: 0;
}

.maker-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.maker-copy p {
  margin-bottom: 28px;
  max-width: 360px;
  color: var(--text-secondary);
  font-size: 14.5px;
}

.maker-notes {
  display: grid;
  gap: 20px;
}

.maker-note {
  padding: 28px;
  background: var(--surface-panel);
  border: 1px solid var(--stroke-subtle);
  border-radius: var(--corner-large);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}

.maker-note:hover {
  border-color: rgba(41, 151, 255, 0.3);
  transform: translateX(6px);
}

.maker-note .ui-icon {
  margin-bottom: 20px;
}

.maker-note h4 {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 600;
}

.maker-note p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

@media (max-width: 820px) {
  .maker-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.pipeline-intro {
  padding-bottom: 30px;
  text-align: center;
}

.pipeline-intro h2 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.pipeline-divider {
  width: 60px;
  height: 1px;
  margin: 0 auto 36px;
  background: var(--stroke-default);
}

.pipeline-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pipeline-layout h3 {
  margin-bottom: 18px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.pipeline-layout p {
  margin-bottom: 28px;
  max-width: 380px;
  color: var(--text-secondary);
}

.prompt-example {
  padding: 6px 0 6px 18px;
  margin-bottom: 28px;
  font-weight: 600;
  font-size: 14.5px;
  border-left: 3px solid var(--accent-brand);
  transition:
    border-color 0.3s ease,
    padding-left 0.3s ease;
}

.prompt-example:hover {
  padding-left: 22px;
  border-left-color: var(--accent-brand-soft);
}

.prompt-output {
  aspect-ratio: 1/1;
  border-radius: 22px;
  background-image: url("../media/images/bracket-assembly.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.prompt-output:hover {
  transform: scale(1.02) rotate(-1deg);
}

@media (max-width: 820px) {
  .pipeline-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.plans-intro {
  margin-bottom: 36px;
  text-align: center;
}

.plans-intro h2 {
  margin-bottom: 28px;
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.025em;
  font-weight: 700;
}

.billing-switch {
  display: inline-flex;
  padding: 4px;
  position: relative;
  margin-bottom: 36px;
  background: var(--surface-panel);
  border: 1px solid var(--stroke-subtle);
  border-radius: 999px;
}

.billing-switch .billing-switch__slider {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  z-index: 1;
  background: var(--accent-brand);
  border-radius: 999px;
  box-shadow: 0 4px 14px -4px rgba(41, 151, 255, 0.6);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.billing-switch__option {
  padding: 10px 22px;
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 999px;
  transition: color 0.25s ease;
}

.billing-switch__option.is-active {
  color: #fff;
}

.billing-switch__option .billing-switch__save {
  padding: 2px 8px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.billing-switch__option.is-active .billing-switch__save {
  opacity: 1;
}

.plans-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plan-tile {
  padding: 30px;
  position: relative;
  background: var(--surface-panel);
  border: 1px solid var(--stroke-subtle);
  border-radius: var(--corner-large);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.plan-tile:hover {
  border-color: var(--stroke-default);
  transform: translateY(-4px);
}

.plan-tile.plan-tile--featured {
  border-color: rgba(41, 151, 255, 0.4);
  box-shadow: 0 30px 60px -30px rgba(41, 151, 255, 0.3);
}

.plan-tile.plan-tile--featured:hover {
  border-color: rgba(41, 151, 255, 0.6);
  box-shadow: 0 40px 80px -30px rgba(41, 151, 255, 0.5);
}

.plan-tile__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  padding: 4px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  background: var(--accent-brand);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 6px 18px -4px rgba(41, 151, 255, 0.6);
}

.plan-tile__name {
  margin-bottom: 18px;
  color: var(--text-secondary);
  font-size: 13px;
}

.plan-tile__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}

.plan-tile__price .plan-tile__amount {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: opacity 0.25s ease;
}

.plan-tile__price .plan-tile__amount.is-price-changing {
  opacity: 0;
}

.plan-tile__price .plan-tile__unit {
  color: var(--text-tertiary);
  font-size: 13px;
}

.plan-tile__copy {
  margin-bottom: 22px;
  min-height: 60px;
  color: var(--text-tertiary);
  font-size: 13px;
  line-height: 1.55;
}

.plan-tile .ui-action {
  width: 100%;
  margin-bottom: 22px;
}

.plan-tile__features {
  display: grid;
  gap: 12px;
  list-style: none;
}

.plan-tile__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.plan-tile:hover .plan-tile__features li {
  color: #d4d4dc;
}

.ui-check-dot {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(41, 151, 255, 0.15);
}

.ui-check-dot svg {
  width: 10px;
  height: 10px;
  color: var(--accent-brand-soft);
}

@media (max-width: 920px) {
  .plans-board {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.closing-invitation {
  padding: 64px 40px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, #2997ff 0%, #0071e3 100%);
  border-radius: var(--corner-xl);
}

.closing-invitation::before,
.closing-invitation::after {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
  pointer-events: none;
  transition: transform 1s ease;
}

.closing-invitation::before {
  width: 420px;
  height: 420px;
  left: -120px;
  top: 40%;
}

.closing-invitation::after {
  width: 320px;
  height: 320px;
  right: -80px;
  top: -100px;
}

.closing-invitation:hover::before {
  transform: translateX(20px) translateY(-10px);
}

.closing-invitation:hover::after {
  transform: translateX(-20px) translateY(10px);
}

.closing-invitation .ui-label {
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.15);
}

.closing-invitation h2 {
  max-width: 640px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.closing-invitation .ui-action {
  position: relative;
  z-index: 1;
}

.closing-invitation .closing-invitation__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 22px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 0 0 var(--corner-xl) var(--corner-xl);
}

footer {
  padding: 80px 0 36px;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--stroke-subtle);
}

.site-footer-brand p {
  max-width: 280px;
  margin-top: 18px;
  color: var(--text-tertiary);
  font-size: 13.5px;
}

.site-footer-links h5 {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
}

.site-footer-links ul {
  display: grid;
  gap: 12px;
  list-style: none;
}

.site-footer-links a {
  color: var(--text-secondary);
  font-size: 13.5px;
  transition:
    color 0.15s ease,
    padding-left 0.25s ease;
}

.site-footer-links a:hover {
  padding-left: 4px;
  color: var(--text-primary);
}

.site-footer-meta {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-tertiary);
  font-size: 13px;
}

.site-footer-meta a {
  color: var(--text-tertiary);
  text-decoration: underline;
}

.site-footer-meta a:hover {
  color: var(--text-secondary);
}

.site-footer-legal {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-item {
  position: relative;
  padding: 34px 30px;
  overflow: hidden;
  background: var(--surface-panel);
  border: 1px solid var(--stroke-subtle);
  border-radius: var(--corner-large);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s ease;
}

.process-item:hover {
  border-color: var(--stroke-default);
  transform: translateY(-4px);
}

.process-item__number {
  position: absolute;
  top: -26px;
  right: 6px;
  font-size: 128px;
  font-weight: 800;
  line-height: 1;
  color: rgba(100, 210, 255, 0.07);
  pointer-events: none;
  user-select: none;
}

.process-item__tag {
  display: inline-flex;
  padding: 5px 12px;
  margin-bottom: 18px;
  color: var(--accent-brand-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(41, 151, 255, 0.12);
  border: 1px solid rgba(41, 151, 255, 0.3);
}

.process-item h4 {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.process-item p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .process-list {
    grid-template-columns: 1fr;
  }
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.comparison-panel {
  padding: 36px 32px;
  background: var(--surface-panel);
  border: 1px solid var(--stroke-subtle);
  border-radius: var(--corner-large);
}

.comparison-panel h4 {
  margin-bottom: 22px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.comparison-panel.comparison-panel--positive {
  border-color: rgba(41, 151, 255, 0.38);
  background: linear-gradient(
    180deg,
    rgba(41, 151, 255, 0.1) 0%,
    rgba(41, 151, 255, 0.02) 100%
    );
  box-shadow: 0 30px 80px -45px rgba(41, 151, 255, 0.55);
}

.comparison-list {
  display: grid;
  gap: 15px;
  list-style: none;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.comparison-panel.comparison-panel--positive .comparison-list li {
  color: var(--text-primary);
}

.comparison-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
}

.comparison-icon svg {
  width: 11px;
  height: 11px;
}

.comparison-icon--no {
  color: var(--text-tertiary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--stroke-subtle);
}

.comparison-icon--yes {
  color: var(--accent-brand-soft);
  background: rgba(41, 151, 255, 0.18);
  border: 1px solid rgba(41, 151, 255, 0.45);
}

.comparison-panel .ui-action {
  margin-top: 26px;
}

@media (max-width: 860px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

.trial-assurance {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 26px;
  color: var(--text-secondary);
  font-size: 14px;
  text-align: center;
  border: 1px dashed rgba(41, 151, 255, 0.4);
  border-radius: 16px;
  background: rgba(41, 151, 255, 0.05);
}

.trial-assurance strong {
  color: var(--text-primary);
  font-weight: 600;
}

.trial-assurance__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--accent-brand-soft);
  border-radius: 10px;
  background: rgba(41, 151, 255, 0.15);
  border: 1px solid rgba(41, 151, 255, 0.4);
}

.trial-assurance__icon svg {
  width: 16px;
  height: 16px;
}

.questions-stack {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.question-row {
  overflow: hidden;
  background: var(--surface-panel);
  border: 1px solid var(--stroke-subtle);
  border-radius: 16px;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.question-row.is-expanded {
  border-color: rgba(41, 151, 255, 0.35);
  background: var(--surface-panel-active);
}

.question-row__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
}

.question-row__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--text-secondary);
  border-radius: 8px;
  border: 1px solid var(--stroke-default);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.question-row__icon svg {
  width: 12px;
  height: 12px;
}

.question-row.is-expanded .question-row__icon {
  color: #fff;
  background: var(--accent-brand);
  border-color: var(--accent-brand);
  transform: rotate(45deg);
}

.question-row__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.question-row__answer p {
  padding: 0 22px 22px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

.trial-dock {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 10px 10px 20px;
  max-width: calc(100vw - 32px);
  background: rgba(20, 20, 26, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid var(--stroke-default);
  border-radius: 16px;
  box-shadow:
    0 24px 60px -20px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(41, 151, 255, 0.1);
  opacity: 0;
  transform: translate(-50%, 140%);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
}

.trial-dock.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.trial-dock .trial-dock__copy {
  font-size: 14px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.trial-dock .trial-dock__copy strong {
  color: var(--text-primary);
  font-weight: 600;
}

.trial-dock .ui-action {
  padding: 10px 18px;
  white-space: nowrap;
}

.trial-dock__close {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--text-tertiary);
  border-radius: 8px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.trial-dock__close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

body {
  background:
    radial-gradient(
    circle at 50% -10%,
    rgba(41, 151, 255, 0.08),
    transparent 32rem
    ),
    var(--surface-canvas);
}

.landing-glow--top {
  background: radial-gradient(
    ellipse,
    rgba(41, 151, 255, 0.1) 0%,
    transparent 70%
    );
}

.landing-glow--lower-left {
  background: radial-gradient(
    circle,
    rgba(41, 151, 255, 0.06) 0%,
    transparent 65%
    );
}

.site-header {
  background: rgba(5, 5, 6, 0.72);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
}

.site-header__row {
  min-height: 58px;
  padding-block: 10px;
}

.site-wordmark {
  font-weight: 650;
  letter-spacing: -0.025em;
}

.site-wordmark__glyph {
  width: 28px;
  height: 28px;
  color: #f5f5f7;
  background: linear-gradient(145deg, #2c3038, #111318);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.1),
    0 8px 22px rgba(0, 0, 0, 0.32);
}

.ui-action {
  font-weight: 560;
  border-radius: 9px;
}

.ui-action--accent {
  background: #2997ff;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.22),
    0 10px 28px -10px rgba(41, 151, 255, 0.72);
}

.ui-action--accent:hover {
  background: #1689f7;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.22),
    0 16px 36px -12px rgba(41, 151, 255, 0.78);
}

.ui-label {
  padding: 5px 10px;
  color: #b7bbc2;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 7px;
}

section {
  padding-block: 92px;
}

.landing-intro {
  padding: 86px 0 54px;
}

.landing-intro h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6.4vw, 76px);
  font-weight: 680;
  line-height: 0.99;
  letter-spacing: -0.052em;
}

.landing-intro p {
  max-width: 620px;
  margin-bottom: 0;
  color: #9da1aa;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.55;
}

.landing-intro-actions {
  display: grid;
  place-items: center;
  gap: 11px;
  margin-top: 28px;
}

.landing-intro-actions > span {
  color: #6f737c;
  font-size: 12px;
}

.media-panel {
  max-width: 1120px;
  margin-top: 52px;
  border-radius: 18px;
  background: #08090b;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 60px 140px -54px rgba(0, 0, 0, 0.92),
    0 0 70px -35px rgba(41, 151, 255, 0.45);
}

.landing-proof {
  padding-top: 38px;
}

.summary-panel {
  border-radius: 22px;
  background: rgba(12, 14, 17, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.section-intro--compact {
  margin-bottom: 34px;
}

.section-intro p {
  max-width: 560px;
  margin: 14px auto 0;
  color: var(--text-secondary);
}

.metric-cell__value {
  font-size: clamp(24px, 3vw, 34px);
}

.process-item,
.audience-card,
.testimonial-card,
.maker-note,
.plan-tile,
.comparison-panel,
.question-row {
  background: linear-gradient(
    145deg,
    rgba(19, 22, 27, 0.94),
    rgba(10, 12, 15, 0.96)
    );
  border-color: rgba(255, 255, 255, 0.09);
  border-radius: 16px;
}

.process-item__tag {
  color: #7ac5ff;
  background: rgba(41, 151, 255, 0.1);
  border-color: rgba(41, 151, 255, 0.25);
}

.capability-media {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #080a0d;
  background-size: 28px 28px;
}

.capability-media .capability-media__rear {
  inset: 12% 8% auto auto;
  width: 56%;
  height: 68%;
  border: 1px solid rgba(100, 210, 255, 0.24);
  background:
    linear-gradient(
    135deg,
    transparent 48%,
    rgba(100, 210, 255, 0.18) 49%,
    rgba(100, 210, 255, 0.18) 51%,
    transparent 52%
    ),
    rgba(41, 151, 255, 0.03);
}

.capability-media .capability-media__front {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #07080a;
}

.capability-media__front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ui-icon,
.audience-card__icon {
  color: #64d2ff;
  font-size: 16px;
}

.model-gallery {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: #07080a;
  box-shadow: 0 40px 100px -56px rgba(41, 151, 255, 0.55);
}

.model-gallery > img {
  display: block;
  width: 100%;
}

.model-gallery figcaption {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d0f12;
}

.model-gallery figcaption span {
  padding: 10px 14px;
  color: #777c86;
  font-size: 10px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.model-output {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: #090b0e;
}

.model-output__spec {
  display: grid;
  gap: 28px;
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.model-output__spec span {
  color: #717680;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.model-output__spec strong {
  align-self: end;
  color: #eef0f3;
  font-size: 17px;
  font-weight: 560;
}

.fabrication-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 54px;
  overflow: hidden;
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(
    circle at 86% 12%,
    rgba(41, 151, 255, 0.13),
    transparent 34%
    ),
    linear-gradient(145deg, rgba(17, 20, 25, 0.98), rgba(8, 10, 13, 0.98));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.035),
    0 50px 120px -76px rgba(41, 151, 255, 0.7);
}

.fabrication-panel::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 58%, #000);
  mask-image: linear-gradient(90deg, transparent, #000 58%, #000);
  content: "";
  pointer-events: none;
}

.fabrication-copy,
.fabrication-preview {
  position: relative;
  z-index: 1;
}

.fabrication-copy .ui-label {
  margin-bottom: 22px;
}

.fabrication-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 680;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.fabrication-copy > p {
  max-width: 470px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

.fabrication-list {
  display: grid;
  gap: 0;
  margin: 28px 0 30px;
  list-style: none;
}

.fabrication-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  color: #858a94;
  font-size: 13px;
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.fabrication-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.fabrication-list strong {
  display: block;
  margin-bottom: 2px;
  color: #eff1f4;
  font-size: 14px;
  font-weight: 580;
}

.fabrication-list__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #64d2ff;
  border: 1px solid rgba(100, 210, 255, 0.22);
  border-radius: 10px;
  background: rgba(41, 151, 255, 0.08);
}

.fabrication-list__icon svg {
  width: 18px;
  height: 18px;
}

.fabrication-preview {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: #080a0d;
  box-shadow:
    0 30px 80px -42px rgba(0, 0, 0, 0.95),
    0 22px 70px -48px rgba(41, 151, 255, 0.7);
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;
}

.fabrication-preview:hover {
  border-color: rgba(100, 210, 255, 0.26);
  transform: translateY(-4px);
}

.fabrication-preview__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  padding: 0 16px;
  color: #90959f;
  font-size: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #15181d, #0f1115);
}

.fabrication-preview__file,
.fabrication-preview__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.fabrication-preview__file svg {
  width: 15px;
  height: 15px;
  color: #64d2ff;
}

.fabrication-preview__status {
  color: #b5bac3;
}

.fabrication-preview__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #30d158;
  box-shadow: 0 0 12px rgba(48, 209, 88, 0.5);
}

.fabrication-preview__canvas {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(100, 210, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 210, 255, 0.035) 1px, transparent 1px),
    #050608;
  background-size: 28px 28px;
}

.fabrication-preview__canvas::after {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.24);
  content: "";
  pointer-events: none;
}

.fabrication-preview__canvas img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.fabrication-preview__details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.fabrication-preview__details > span {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 13px 12px;
  background: #0d0f12;
}

.fabrication-preview__details small {
  color: #696f79;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fabrication-preview__details strong {
  overflow: hidden;
  color: #d7dae0;
  font-size: 11px;
  font-weight: 560;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.iteration-media {
  background:
    linear-gradient(180deg, rgba(41, 151, 255, 0.17), rgba(41, 151, 255, 0.03)),
    #0a0c0f;
  border: 1px solid rgba(41, 151, 255, 0.22);
}

.iteration-media .iteration-media__image {
  background-image: url("../media/images/cad-output-gallery.png");
  background-position: 67% 55%;
}

.prompt-output {
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: #07080a;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.prompt-output > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.prompt-output figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px;
  color: #7c818b;
  font-size: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.prompt-output figcaption i {
  width: 24px;
  height: 1px;
  background: #2997ff;
}

.closing-invitation {
  padding-bottom: 58px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(145deg, #0a4e8c, #0b79d0);
  background-size:
    36px 36px,
    36px 36px,
    auto;
}

.closing-invitation p {
  position: relative;
  z-index: 1;
  margin: -20px auto 26px;
  color: rgba(255, 255, 255, 0.74);
}

.trial-dock {
  background: rgba(13, 15, 18, 0.9);
  border-radius: 13px;
}

@media (max-width: 960px) {
  .fabrication-panel {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 44px;
  }

  .fabrication-copy {
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  section {
    padding-block: 70px;
  }

  .fabrication-panel {
    padding: 34px;
    border-radius: 18px;
  }

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

  .landing-intro {
    padding-top: 68px;
  }

  .model-gallery figcaption {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .layout-shell {
    padding-inline: 18px;
  }

  .landing-intro h1 {
    font-size: 43px;
  }

  .landing-intro p {
    font-size: 15px;
  }

  .media-panel {
    margin-top: 38px;
    border-radius: 13px;
  }

  .summary-panel {
    padding: 38px 22px;
  }

  .fabrication-panel {
    gap: 32px;
    padding: 28px 20px 20px;
    border-radius: 15px;
  }

  .fabrication-copy h2 {
    font-size: 34px;
  }

  .fabrication-copy > p {
    font-size: 14px;
  }

  .fabrication-list {
    margin-block: 24px 26px;
  }

  .fabrication-preview {
    border-radius: 12px;
  }

  .fabrication-preview__toolbar {
    min-height: 44px;
    padding-inline: 12px;
  }

  .fabrication-preview__status {
    font-size: 10px;
  }

  .fabrication-preview__details > span {
    padding: 11px 10px;
  }

  .model-output {
    grid-template-columns: 1fr;
  }

  .model-output__spec {
    min-height: 120px;
  }

  .model-gallery {
    border-radius: 12px;
  }

  .model-gallery figcaption {
    display: none;
  }

  .trial-dock {
    width: calc(100% - 24px);
    justify-content: space-between;
    padding-left: 12px;
  }

  .trial-dock__copy {
    display: none;
  }
}
